From 63900d009441d8e81714ea56337d5b736806fca1 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 25 Jun 2011 19:39:31 +0530 Subject: [PATCH 001/442] GIS data editor for environments without JavaScript support. GIS data preserved while editing. --- gis_data_editor.php | 271 +++++++++++++++++++ libraries/common.lib.php | 66 +++-- libraries/config.default.php | 1 + libraries/display_tbl.lib.php | 6 +- libraries/gis/pma_gis_geometrycollection.php | 27 ++ libraries/gis/pma_gis_linestring.php | 27 ++ libraries/gis/pma_gis_multilinestring.php | 37 +++ libraries/gis/pma_gis_multipoint.php | 27 ++ libraries/gis/pma_gis_multipolygon.php | 47 ++++ libraries/gis/pma_gis_point.php | 14 + libraries/gis/pma_gis_polygon.php | 37 +++ tbl_change.php | 19 +- tbl_replace.php | 16 ++ themes/original/css/theme_right.css.php | 30 +- themes/pmahomme/css/theme_right.css.php | 30 +- 15 files changed, 622 insertions(+), 33 deletions(-) create mode 100644 gis_data_editor.php diff --git a/gis_data_editor.php b/gis_data_editor.php new file mode 100644 index 0000000000..dd096bbb61 --- /dev/null +++ b/gis_data_editor.php @@ -0,0 +1,271 @@ +generateWkt($gis_data, 0); + +$format = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER <= 8) ? 'svg' : 'png'; +$visualizationSettings = array('width' => 400, 'height' => 400,); +$data = array($wkt); +if (! $no_visual) { + $visualization = PMA_GIS_visualization_results($data, $visualizationSettings, $format); +} + +if(isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) { + $extra_data = array( + 'wkt' => $wkt, + 'srid' => $srid, + 'visualization' => $visualization, + ); + PMA_ajaxResponse(null, true, $extra_data); +} +?> + + + + +
+
+

+'); + echo PMA_generate_common_hidden_inputs($url_params); +?> +
+ +
+
+ + " /> + + +
+
+'); + } + 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(''); + echo(''); + } else { + $type = $geom_type; + } + + if ($type == 'POINT') { + echo('
'); echo __("Point"); +?> + + + +'); + + for ($i = 0; $i < $no_of_points; $i++) { + echo('
'); echo __("Point"); echo($i + 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 . ':'); + } + } + + $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 < 3) { + $no_of_points = 3; + } + if (isset($gis_data[$a][$type][$i]['add_point'])) { + $no_of_points++; + } + echo(''); + + for ($j = 0; $j < $no_of_points; $j++) { + echo('
'); echo __("Point"); echo($j + 1 . ':'); +?> + + + + "> +
+'); + + 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'] : 3; + if ($no_of_points < 3) { + $no_of_points = 3; + } + if (isset($gis_data[$a][$type][$k][$i]['add_point'])) { + $no_of_points++; + } + echo(''); + + for ($j = 0; $j < $no_of_points; $j++) { + echo('
'); echo __("Point"); echo($j + 1 . ':'); +?> + " value="" /> + + " value="" /> + " value=""> +
" value=""> +

" value=""> +

" /> + +
+
+
+

+

+ +
+
+
+ + \ No newline at end of file diff --git a/libraries/common.lib.php b/libraries/common.lib.php index a9b87f99e7..633af50d24 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -1397,7 +1397,7 @@ function PMA_localizeNumber($value) * @param integer $digits_left number of digits left of the comma * @param integer $digits_right number of digits right of the comma * @param boolean $only_down do not reformat numbers below 1 - * @param boolean $noTrailingZero removes trailing zeros right of the comma (default: true) + * @param boolean $noTrailingZero removes trailing zeros right of the comma (default: true) * * @return string the formatted value and its unit * @@ -1408,13 +1408,13 @@ function PMA_localizeNumber($value) function PMA_formatNumber($value, $digits_left = 3, $digits_right = 0, $only_down = false, $noTrailingZero = true) { if($value==0) return '0'; - + $originalValue = $value; //number_format is not multibyte safe, str_replace is safe if ($digits_left === 0) { $value = number_format($value, $digits_right); if($originalValue!=0 && floatval($value) == 0) $value = ' <'.(1/PMA_pow(10,$digits_right)); - + return PMA_localizeNumber($value); } @@ -1448,7 +1448,7 @@ function PMA_formatNumber($value, $digits_left = 3, $digits_right = 0, $only_dow } $dh = PMA_pow(10, $digits_right); - + // This gives us the right SI prefix already, but $digits_left parameter not incorporated $d = floor(log10($value) / 3); // Lowering the SI prefix by 1 gives us an additional 3 zeros @@ -1457,18 +1457,18 @@ function PMA_formatNumber($value, $digits_left = 3, $digits_right = 0, $only_dow if($digits_left > $cur_digits) { $d-= floor(($digits_left - $cur_digits)/3); } - + if($d<0 && $only_down) $d=0; - + $value = round($value / (PMA_pow(1000, $d, 'pow') / $dh)) /$dh; $unit = $units[$d]; - + // If we dont want any zeros after the comma just add the thousand seperator if($noTrailingZero) $value = PMA_localizeNumber(preg_replace("/(?<=\d)(?=(\d{3})+(?!\d))/",",",$value)); else $value = PMA_localizeNumber(number_format($value, $digits_right)); //number_format is not multibyte safe, str_replace is safe - + if($originalValue!=0 && floatval($value) == 0) return ' <'.(1/PMA_pow(10,$digits_right)).' '.$unit; return $sign . $value . ' ' . $unit; @@ -2731,6 +2731,31 @@ function PMA_replace_binary_contents($content) { return $result; } +/** + * Converts GIS data to Well Known Text format + * + * @param $data GIS data + * @param $includeSRID Add SRID to the WKT + * @return GIS data in Well Know Text format + */ +function PMA_asWKT($data, $includeSRID = false) { + // Convert to WKT format + $hex = bin2hex($data); + $wktsql = "SELECT ASTEXT(x'" . $hex . "')"; + if ($includeSRID) { + $wktsql .= ", SRID(x'" . $hex . "')"; + } + $wktresult = PMA_DBI_try_query($wktsql, null, PMA_DBI_QUERY_STORE); + $wktarr = PMA_DBI_fetch_row($wktresult, 0); + $wktval = $wktarr[0]; + if ($includeSRID) { + $srid = $wktarr[1]; + $wktval = "'" . $wktval . "'," . $srid; + } + @PMA_DBI_free_result($wktresult); + return $wktval; +} + /** * If the string starts with a \r\n pair (0x0d0a) add an extra \n * @@ -3039,20 +3064,23 @@ function PMA_getSupportedDatatypes($html = false, $selected = '') */ function PMA_unsupportedDatatypes() { - // These GIS data types are not yet supported. - $no_support_types = array('geometry', - 'point', - 'linestring', - 'polygon', - 'multipoint', - 'multilinestring', - 'multipolygon', - 'geometrycollection' - ); - + $no_support_types = array(); return $no_support_types; } +function PMA_getGISDatatypes() { + $gis_data_types = array('geometry', + 'point', + 'linestring', + 'polygon', + 'multipoint', + 'multilinestring', + 'multipolygon', + 'geometrycollection' + ); + + return $gis_data_types; +} /** * Creates a dropdown box with MySQL functions for a particular column. * diff --git a/libraries/config.default.php b/libraries/config.default.php index 1a478b7874..7525994fd3 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -3049,6 +3049,7 @@ if ($cfg['ShowFunctionFields']) { 'FUNC_CHAR' => '', 'FUNC_DATE' => '', 'FUNC_NUMBER' => '', + 'FUNC_SPATIAL' => 'GeomFromText', 'first_timestamp' => 'NOW', 'pk_char36' => 'UUID', ); diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index d41e2452c5..cc517d358d 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -1514,11 +1514,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { // Display in Well Known Text(WKT) format. } elseif ('WKT' == $_SESSION['tmp_user_values']['geometry_display']) { // Convert to WKT format - $wktsql = "SELECT ASTEXT (GeomFromWKB(x'" . PMA_substr(bin2hex($row[$i]), 8) . "'))"; - $wktresult = PMA_DBI_try_query($wktsql, null, PMA_DBI_QUERY_STORE); - $wktarr = PMA_DBI_fetch_row($wktresult, 0); - $wktval = $wktarr[0]; - @PMA_DBI_free_result($wktresult); + $wktval = PMA_asWKT($row[$i]); if (PMA_strlen($wktval) > $GLOBALS['cfg']['LimitChars'] && $_SESSION['tmp_user_values']['display_text'] == 'P' diff --git a/libraries/gis/pma_gis_geometrycollection.php b/libraries/gis/pma_gis_geometrycollection.php index 43a7cf4d14..2fcb62441d 100644 --- a/libraries/gis/pma_gis_geometrycollection.php +++ b/libraries/gis/pma_gis_geometrycollection.php @@ -221,5 +221,32 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry } return $sub_parts; } + + /** + * Generate the WKT with the set of parameters passed by the GIS editor. + * + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * + * @return WKT with the set of parameters passed by the GIS editor + */ + public function generateWkt($gis_data, $index) + { + $geom_count = (isset($gis_data['GEOMETRYCOLLECTION']['geom_count'])) + ? $gis_data['GEOMETRYCOLLECTION']['geom_count'] : 1; + $wkt = 'GEOMETRYCOLLECTION('; + for ($i = 0; $i < $geom_count; $i++) { + if (isset($gis_data[$i]['gis_type'])) { + $type = $gis_data[$i]['gis_type']; + $gis_obj = PMA_GIS_Factory::factory($type); + $wkt .= $gis_obj->generateWkt($gis_data, $i) . ','; + } + } + if (isset($gis_data[0]['gis_type'])) { + $wkt = substr($wkt, 0, strlen($wkt) - 1); + } + $wkt .= ')'; + return $wkt; + } } ?> diff --git a/libraries/gis/pma_gis_linestring.php b/libraries/gis/pma_gis_linestring.php index 05483be736..fca3d017d0 100644 --- a/libraries/gis/pma_gis_linestring.php +++ b/libraries/gis/pma_gis_linestring.php @@ -194,5 +194,32 @@ class PMA_GIS_Linestring extends PMA_GIS_Geometry . json_encode($style_options) . '));'; return $result; } + + /** + * Generate the WKT with the set of parameters passed by the GIS editor. + * + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * + * @return WKT with the set of parameters passed by the GIS editor + */ + public function generateWkt($gis_data, $index) + { + $no_of_points = isset($gis_data[$index]['LINESTRING']['no_of_points']) + ? $gis_data[$index]['LINESTRING']['no_of_points'] : 2; + if ($no_of_points < 2) { + $no_of_points = 2; + } + $wkt = 'LINESTRING('; + for ($i = 0; $i < $no_of_points; $i++) { + $wkt .= (isset($gis_data[$index]['LINESTRING'][$i]['x']) + ? $gis_data[$index]['LINESTRING'][$i]['x'] : '') + . ' ' . (isset($gis_data[$index]['LINESTRING'][$i]['y']) + ? $gis_data[$index]['LINESTRING'][$i]['y'] : '') .','; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= ')'; + return $wkt; + } } ?> diff --git a/libraries/gis/pma_gis_multilinestring.php b/libraries/gis/pma_gis_multilinestring.php index 9291202b69..050ec2a169 100644 --- a/libraries/gis/pma_gis_multilinestring.php +++ b/libraries/gis/pma_gis_multilinestring.php @@ -223,5 +223,42 @@ class PMA_GIS_Multilinestring extends PMA_GIS_Geometry $row .= ')), null, ' . json_encode($style_options) . '));'; return $row; } + + /** + * Generate the WKT with the set of parameters passed by the GIS editor. + * + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * + * @return WKT with the set of parameters passed by the GIS editor + */ + public function generateWkt($gis_data, $index) + { + $no_of_lines = isset($gis_data[$index]['MULTILINESTRING']['no_of_lines']) + ? $gis_data[$index]['MULTILINESTRING']['no_of_lines'] : 1; + if ($no_of_lines < 1) { + $no_of_lines = 1; + } + $wkt = 'MULTILINESTRING('; + for ($i = 0; $i < $no_of_lines; $i++) { + $no_of_points = isset($gis_data[$index]['MULTILINESTRING'][$i]['no_of_points']) + ? $gis_data[$index]['MULTILINESTRING'][$i]['no_of_points'] : 2; + if ($no_of_points < 2) { + $no_of_points = 2; + } + $wkt .= '('; + for ($j = 0; $j < $no_of_points; $j++) { + $wkt .= (isset($gis_data[$index]['MULTILINESTRING'][$i][$j]['x']) + ? $gis_data[$index]['MULTILINESTRING'][$i][$j]['x'] : '') + . ' ' . (isset($gis_data[$index]['MULTILINESTRING'][$i][$j]['y']) + ? $gis_data[$index]['MULTILINESTRING'][$i][$j]['y'] : '') .','; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= '),'; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= ')'; + return $wkt; + } } ?> diff --git a/libraries/gis/pma_gis_multipoint.php b/libraries/gis/pma_gis_multipoint.php index 8b66022dfb..e749760a4c 100644 --- a/libraries/gis/pma_gis_multipoint.php +++ b/libraries/gis/pma_gis_multipoint.php @@ -186,5 +186,32 @@ class PMA_GIS_Multipoint extends PMA_GIS_Geometry . json_encode($style_options) . '));'; return $result; } + + /** + * Generate the WKT with the set of parameters passed by the GIS editor. + * + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * + * @return WKT with the set of parameters passed by the GIS editor + */ + public function generateWkt($gis_data, $index) + { + $no_of_points = isset($gis_data[$index]['MULTIPOINT']['no_of_points']) + ? $gis_data[$index]['MULTIPOINT']['no_of_points'] : 1; + if ($no_of_points < 1) { + $no_of_points = 1; + } + $wkt = 'MULTIPOINT('; + for ($i = 0; $i < $no_of_points; $i++) { + $wkt .= (isset($gis_data[$index]['MULTIPOINT'][$i]['x']) + ? $gis_data[$index]['MULTIPOINT'][$i]['x'] : '') + . ' ' . (isset($gis_data[$index]['MULTIPOINT'][$i]['y']) + ? $gis_data[$index]['MULTIPOINT'][$i]['y'] : '') .','; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= ')'; + return $wkt; + } } ?> diff --git a/libraries/gis/pma_gis_multipolygon.php b/libraries/gis/pma_gis_multipolygon.php index c0adcd10d7..5fa3148a96 100644 --- a/libraries/gis/pma_gis_multipolygon.php +++ b/libraries/gis/pma_gis_multipolygon.php @@ -311,5 +311,52 @@ class PMA_GIS_Multipolygon extends PMA_GIS_Geometry return $row; } + + /** + * Generate the WKT with the set of parameters passed by the GIS editor. + * + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * + * @return WKT with the set of parameters passed by the GIS editor + */ + public function generateWkt($gis_data, $index) + { + $no_of_polygons = isset($gis_data[$index]['MULTIPOLYGON']['no_of_polygons']) + ? $gis_data[$index]['MULTIPOLYGON']['no_of_polygons'] : 1; + if ($no_of_polygons < 1) { + $no_of_polygons = 1; + } + $wkt = 'MULTIPOLYGON('; + for ($k = 0; $k < $no_of_polygons; $k++) { + $no_of_lines = isset($gis_data[$index]['MULTIPOLYGON'][$k]['no_of_lines']) + ? $gis_data[$index]['MULTIPOLYGON'][$k]['no_of_lines'] : 1; + if ($no_of_lines < 1) { + $no_of_lines = 1; + } + $wkt .= '('; + for ($i = 0; $i < $no_of_lines; $i++) { + $no_of_points = isset($gis_data[$index]['MULTIPOLYGON'][$k][$i]['no_of_points']) + ? $gis_data[$index]['MULTIPOLYGON'][$k][$i]['no_of_points'] : 3; + if ($no_of_points < 3) { + $no_of_points = 3; + } + $wkt .= '('; + for ($j = 0; $j < $no_of_points; $j++) { + $wkt .= (isset($gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['x']) + ? $gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['x'] : '') + . ' ' . (isset($gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['y']) + ? $gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['y'] : '') .','; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= '),'; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= '),'; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= ')'; + return $wkt; + } } ?> diff --git a/libraries/gis/pma_gis_point.php b/libraries/gis/pma_gis_point.php index 365eae4191..a63c5689f6 100644 --- a/libraries/gis/pma_gis_point.php +++ b/libraries/gis/pma_gis_point.php @@ -172,5 +172,19 @@ class PMA_GIS_Point extends PMA_GIS_Geometry . ' null, ' . json_encode($style_options) . '));'; return $result; } + + /** + * Generate the WKT with the set of parameters passed by the GIS editor. + * + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * + * @return WKT with the set of parameters passed by the GIS editor + */ + public function generateWkt($gis_data, $index) + { + return 'POINT(' . (isset($gis_data[$index]['POINT']['x']) ? $gis_data[$index]['POINT']['x'] : '') + . ' ' . (isset($gis_data[$index]['POINT']['y']) ? $gis_data[$index]['POINT']['y'] : '') . ')'; + } } ?> diff --git a/libraries/gis/pma_gis_polygon.php b/libraries/gis/pma_gis_polygon.php index 5da0d2545c..0497a7593d 100644 --- a/libraries/gis/pma_gis_polygon.php +++ b/libraries/gis/pma_gis_polygon.php @@ -286,5 +286,42 @@ class PMA_GIS_Polygon extends PMA_GIS_Geometry return $row; } + + /** + * Generate the WKT with the set of parameters passed by the GIS editor. + * + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * + * @return WKT with the set of parameters passed by the GIS editor + */ + public function generateWkt($gis_data, $index) + { + $no_of_lines = isset($gis_data[$index]['POLYGON']['no_of_lines']) + ? $gis_data[$index]['POLYGON']['no_of_lines'] : 1; + if ($no_of_lines < 1) { + $no_of_lines = 1; + } + $wkt = 'POLYGON('; + for ($i = 0; $i < $no_of_lines; $i++) { + $no_of_points = isset($gis_data[$index]['POLYGON'][$i]['no_of_points']) + ? $gis_data[$index]['POLYGON'][$i]['no_of_points'] : 3; + if ($no_of_points < 3) { + $no_of_points = 3; + } + $wkt .= '('; + for ($j = 0; $j < $no_of_points; $j++) { + $wkt .= (isset($gis_data[$index]['POLYGON'][$i][$j]['x']) + ? $gis_data[$index]['POLYGON'][$i][$j]['x'] : '') + . ' ' . (isset($gis_data[$index]['POLYGON'][$i][$j]['y']) + ? $gis_data[$index]['POLYGON'][$i][$j]['y'] : '') .','; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= '),'; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= ')'; + return $wkt; + } } ?> diff --git a/tbl_change.php b/tbl_change.php index 94c7da078d..a3e485a2c9 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -469,6 +469,9 @@ foreach ($rows as $row_id => $vrow) { $vrow) { $data = $vrow[$field['Field']]; } elseif ($field['True_Type'] == 'bit') { $special_chars = PMA_printable_bit_value($vrow[$field['Field']], $extracted_fieldspec['spec_in_brackets']); + } elseif (in_array($field['True_Type'], $gis_data_types)) { + // Convert gis data to Well Know Text format + $vrow[$field['Field']] = PMA_asWKT($vrow[$field['Field']], true); + $special_chars = htmlspecialchars($vrow[$field['Field']]); } else { // special binary "characters" if ($field['is_binary'] || ($field['is_blob'] && ! $cfg['ProtectBinary'])) { @@ -892,7 +899,6 @@ foreach ($rows as $row_id => $vrow) { } } // end if (web-server upload directory) } // end elseif (binary or blob) - elseif (in_array($field['pma_type'], $no_support_types)) { // ignore this column to avoid changing it } @@ -953,6 +959,17 @@ foreach ($rows as $row_id => $vrow) { } } } + if (in_array($field['pma_type'], $gis_data_types)) { + echo(''); + $_url_params = array('field' => $field['Field_title']); + if ($field['pma_type'] != 'geometry') { + $_url_params = $_url_params + array('gis_data[gis_type]' => strtoupper($field['pma_type'])); + } + $edit_url = 'gis_data_editor.php' . PMA_generate_common_url($_url_params); + $edit_str = PMA_getIcon('b_edit.png', __('Edit/Insert'), true); + echo(PMA_linkOrButton($edit_url, $edit_str, array(), false, false, '_blank')); + echo(''); + } ?> diff --git a/tbl_replace.php b/tbl_replace.php index e08dafb09d..6dd46bb283 100644 --- a/tbl_replace.php +++ b/tbl_replace.php @@ -171,6 +171,17 @@ $func_no_param = array( 'CURRENT_USER', ); +$gis_from_text_functions = array( + 'GeomFromText', + 'GeomCollFromText', + 'LineFromText', + 'MLineFromText', + 'PointFromText', + 'MPointFromText', + 'PolyFromText', + 'MPolyFromText', +); + foreach ($loop_array as $rownumber => $where_clause) { // skip fields to be ignored if (! $using_key && isset($_REQUEST['insert_ignore_' . $where_clause])) { @@ -260,6 +271,11 @@ foreach ($loop_array as $rownumber => $where_clause) { $cur_value = "'" . $uuid . "'"; } elseif (in_array($me_funcs[$key], $func_no_param)) { $cur_value = $me_funcs[$key] . '()'; + } elseif (in_array($me_funcs[$key], $gis_from_text_functions) && substr($val, 0, 3) == "'''") { + // Converting $val of the form '''POINT(12 15)'',145' to 'POINT(12 15)',145 + $val = str_replace("''", "'", $val); + $val = substr($val, 1, strlen($val) - 2); + $cur_value = $me_funcs[$key] . '(' . $val . ')'; } else { $cur_value = $me_funcs[$key] . '(' . $val . ')'; } diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index cd0a2fd55f..e4fd194ee9 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -965,7 +965,7 @@ img.sortableIcon { } h3#serverstatusqueries span { - font-size:60%; + font-size:60%; display:inline; } @@ -1048,9 +1048,9 @@ div#serverstatus table .tblFooters a:after { } div.liveChart { - clear:both; - min-width:500px; - height:400px; + clear:both; + min-width:500px; + height:400px; padding-bottom:80px; } @@ -1962,6 +1962,28 @@ fieldset .disabled-field td { display:none; } +#gis_data_editor { + display: none; + position: fixed; + _position: absolute; /* hack for IE */ + z-index: 101; + overflow-y: auto; + overflow-x: hidden; +} + +#gis_data_editor_no_js { + margin: auto auto; +} + +#gis_data_editor, #gis_data_editor_no_js { + background: #D0DCE0; + padding: 15px; +} + +#gis_data_textarea { + height: 6em; +} + .CodeMirror { line-height: 1em; font-family: monospace; diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index bba0bcb46d..96f49b69c0 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -1171,7 +1171,7 @@ img.sortableIcon { } h3#serverstatusqueries span { - font-size:60%; + font-size:60%; display:inline; } @@ -1238,9 +1238,9 @@ div#serverstatus table .tblFooters a { } div.liveChart { - clear:both; - min-width:500px; - height:400px; + clear:both; + min-width:500px; + height:400px; padding-bottom:80px; } /* end serverstatus */ @@ -2320,6 +2320,28 @@ fieldset .disabled-field td { display: none; } +#gis_data_editor { + display: none; + position: fixed; + _position: absolute; /* hack for IE */ + z-index: 101; + overflow-y: auto; + overflow-x: hidden; +} + +#gis_data_editor_no_js { + margin: auto auto; +} + +#gis_data_editor, #gis_data_editor_no_js { + background: #D0DCE0; + padding: 15px; +} + +#gis_data_textarea { + height: 6em; +} + .CodeMirror { line-height: 1em; font-family: monospace; From da6fe46a4d34c650e3d7f0b70d04ea22730f8e19 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 25 Jun 2011 21:24:07 +0530 Subject: [PATCH 002/442] GISFromWKB functions in data insert/edit window fixed. --- tbl_replace.php | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/tbl_replace.php b/tbl_replace.php index 6dd46bb283..fad6b07429 100644 --- a/tbl_replace.php +++ b/tbl_replace.php @@ -182,6 +182,17 @@ $gis_from_text_functions = array( 'MPolyFromText', ); +$gis_from_wkb_functions = array( + 'GeomFromWKB', + 'GeomCollFromWKB', + 'LineFromWKB', + 'MLineFromWKB', + 'PointFromWKB', + 'MPointFromWKB', + 'PolyFromWKB', + 'MPolyFromWKB', +); + foreach ($loop_array as $rownumber => $where_clause) { // skip fields to be ignored if (! $using_key && isset($_REQUEST['insert_ignore_' . $where_clause])) { @@ -271,10 +282,14 @@ foreach ($loop_array as $rownumber => $where_clause) { $cur_value = "'" . $uuid . "'"; } elseif (in_array($me_funcs[$key], $func_no_param)) { $cur_value = $me_funcs[$key] . '()'; - } elseif (in_array($me_funcs[$key], $gis_from_text_functions) && substr($val, 0, 3) == "'''") { - // Converting $val of the form '''POINT(12 15)'',145' to 'POINT(12 15)',145 - $val = str_replace("''", "'", $val); + } elseif ((in_array($me_funcs[$key], $gis_from_text_functions) + && substr($val, 0, 3) == "'''") + || in_array($me_funcs[$key], $gis_from_wkb_functions) + ) { + // Remove enclosing apostrophes $val = substr($val, 1, strlen($val) - 2); + // Remove escaping apostrophes + $val = str_replace("''", "'", $val); $cur_value = $me_funcs[$key] . '(' . $val . ')'; } else { $cur_value = $me_funcs[$key] . '(' . $val . ')'; From 5ac3f567c454764152631c26a9dafec7bf7eef0a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 25 Jun 2011 23:01:48 +0530 Subject: [PATCH 003/442] GIS data editing for POINT --- gis_data_editor.php | 13 ++++++++++--- libraries/gis/pma_gis_point.php | 25 +++++++++++++++++++++++++ tbl_change.php | 5 ++++- 3 files changed, 39 insertions(+), 4 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index dd096bbb61..37d46c5f7d 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -24,13 +24,20 @@ $gis_types = array( $no_visual = true; if (! isset($gis_data['gis_type'])) { - $gis_data['gis_type'] = $gis_types[0]; - $no_visual = true; + if (isset($_REQUEST['value'])) { + $gis_data['gis_type'] = substr($_REQUEST['value'], 1, strpos($_REQUEST['value'], "(") - 1); + } else { + $gis_data['gis_type'] = $gis_types[0]; + $no_visual = true; + } } - $geom_type = $gis_data['gis_type']; $gis_obj = PMA_GIS_Factory::factory($geom_type); +if (isset($_REQUEST['value'])) { + $gis_data = array_merge($gis_data, $gis_obj->generateParams($_REQUEST['value'])); +} + $srid = isset($gis_data['srid']) ? htmlspecialchars($gis_data['srid']) : ''; $wkt = $gis_obj->generateWkt($gis_data, 0); diff --git a/libraries/gis/pma_gis_point.php b/libraries/gis/pma_gis_point.php index a63c5689f6..50b70a1438 100644 --- a/libraries/gis/pma_gis_point.php +++ b/libraries/gis/pma_gis_point.php @@ -186,5 +186,30 @@ class PMA_GIS_Point extends PMA_GIS_Geometry return 'POINT(' . (isset($gis_data[$index]['POINT']['x']) ? $gis_data[$index]['POINT']['x'] : '') . ' ' . (isset($gis_data[$index]['POINT']['y']) ? $gis_data[$index]['POINT']['y'] : '') . ')'; } + + /** + * Generate parameters for the GIS data editor from the value of the gis column. + * + * @param string $value of the gis column + * @param index $index of the geometry + * + * @return parameters for the GIS data editor from the value of the gis column + */ + public function generateParams($value, $index = 0) + { + $params = array(); + $lastComma = strripos($value, ","); + $params['srid'] = trim(substr($value, $lastComma + 1)); + $wkt = trim(substr($value, 1, $lastComma - 2)); + + // Trim to remove leading 'POINT(' and trailing ')' + $point = substr($wkt, 6, (strlen($wkt) - 7)); + $points_arr = $this->extractPoints($point, null); + + $params[$index]['POINT']['x'] = $points_arr[0][0]; + $params[$index]['POINT']['y'] = $points_arr[0][1]; + + return $params; + } } ?> diff --git a/tbl_change.php b/tbl_change.php index a3e485a2c9..66ee5cf408 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -961,7 +961,10 @@ foreach ($rows as $row_id => $vrow) { } if (in_array($field['pma_type'], $gis_data_types)) { echo(''); - $_url_params = array('field' => $field['Field_title']); + $_url_params = array( + 'field' => $field['Field_title'], + 'value' => $vrow[$field['Field']], + ); if ($field['pma_type'] != 'geometry') { $_url_params = $_url_params + array('gis_data[gis_type]' => strtoupper($field['pma_type'])); } From ff3efd4b7d3ac7b00117d7ef78f239972e3f9d50 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 26 Jun 2011 17:57:12 +0530 Subject: [PATCH 004/442] Editing geometry data using GIS data editor. --- libraries/gis/pma_gis_geometrycollection.php | 32 +++++++++++ libraries/gis/pma_gis_linestring.php | 35 ++++++++++++ libraries/gis/pma_gis_multilinestring.php | 41 ++++++++++++++ libraries/gis/pma_gis_multipoint.php | 35 ++++++++++++ libraries/gis/pma_gis_multipolygon.php | 59 ++++++++++++++++++++ libraries/gis/pma_gis_point.php | 22 +++++--- libraries/gis/pma_gis_polygon.php | 40 +++++++++++++ 7 files changed, 256 insertions(+), 8 deletions(-) diff --git a/libraries/gis/pma_gis_geometrycollection.php b/libraries/gis/pma_gis_geometrycollection.php index 2fcb62441d..d8c17b3aaa 100644 --- a/libraries/gis/pma_gis_geometrycollection.php +++ b/libraries/gis/pma_gis_geometrycollection.php @@ -248,5 +248,37 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry $wkt .= ')'; return $wkt; } + + /** Generate parameters for the GIS data editor from the value of the GIS column. + * + * @param string $value of the GIS column + * @param index $index of the geometry + * + * @return parameters for the GIS data editor from the value of the GIS column + */ + public function generateParams($value) + { + $params = array(); + $last_comma = strripos($value, ","); + $params['srid'] = trim(substr($value, $last_comma + 1)); + $wkt = trim(substr($value, 1, $last_comma - 2)); + + // Trim to remove leading 'GEOMETRYCOLLECTION(' and trailing ')' + $goem_col = substr($wkt, 19, (strlen($wkt) - 20)); + // Split the geometry collection object to get its constituents. + $sub_parts = $this->_explodeGeomCol($goem_col); + $params['GEOMETRYCOLLECTION']['geom_count'] = count($sub_parts); + + $i = 0; + foreach ($sub_parts as $sub_part) { + $type_pos = stripos($sub_part, '('); + $type = substr($sub_part, 0, $type_pos); + + $gis_obj = PMA_GIS_Factory::factory($type); + $params = array_merge($params, $gis_obj->generateParams($sub_part, $i)); + $i++; + } + return $params; + } } ?> diff --git a/libraries/gis/pma_gis_linestring.php b/libraries/gis/pma_gis_linestring.php index fca3d017d0..8114451ae0 100644 --- a/libraries/gis/pma_gis_linestring.php +++ b/libraries/gis/pma_gis_linestring.php @@ -221,5 +221,40 @@ class PMA_GIS_Linestring extends PMA_GIS_Geometry $wkt .= ')'; return $wkt; } + + /** + * Generate parameters for the GIS data editor from the value of the GIS column. + * + * @param string $value of the GIS column + * @param index $index of the geometry + * + * @return parameters for the GIS data editor from the value of the GIS column + */ + public function generateParams($value, $index = -1) + { + if ($index == -1) { + $index = 0; + $params = array(); + $last_comma = strripos($value, ","); + $params['srid'] = trim(substr($value, $last_comma + 1)); + $wkt = trim(substr($value, 1, $last_comma - 2)); + } else { + $params[$index]['gis_type'] = 'LINESTRING'; + $wkt = $value; + } + + // Trim to remove leading 'LINESTRING(' and trailing ')' + $linestring = substr($wkt, 11, (strlen($wkt) - 12)); + $points_arr = $this->extractPoints($linestring, null); + + $no_of_points = count($points_arr); + $params[$index]['LINESTRING']['no_of_points'] = $no_of_points; + for ($i = 0; $i < $no_of_points; $i++) { + $params[$index]['LINESTRING'][$i]['x'] = $points_arr[$i][0]; + $params[$index]['LINESTRING'][$i]['y'] = $points_arr[$i][1]; + } + + return $params; + } } ?> diff --git a/libraries/gis/pma_gis_multilinestring.php b/libraries/gis/pma_gis_multilinestring.php index 050ec2a169..f80dbc17bd 100644 --- a/libraries/gis/pma_gis_multilinestring.php +++ b/libraries/gis/pma_gis_multilinestring.php @@ -260,5 +260,46 @@ class PMA_GIS_Multilinestring extends PMA_GIS_Geometry $wkt .= ')'; return $wkt; } + + /** + * Generate parameters for the GIS data editor from the value of the GIS column. + * + * @param string $value of the GIS column + * @param index $index of the geometry + * + * @return parameters for the GIS data editor from the value of the GIS column + */ + public function generateParams($value, $index = -1) + { + if ($index == -1) { + $index = 0; + $params = array(); + $last_comma = strripos($value, ","); + $params['srid'] = trim(substr($value, $last_comma + 1)); + $wkt = trim(substr($value, 1, $last_comma - 2)); + } else { + $params[$index]['gis_type'] = 'MULTILINESTRING'; + $wkt = $value; + } + + // Trim to remove leading 'MULTILINESTRING((' and trailing '))' + $multilinestirng = substr($wkt, 17, (strlen($wkt) - 19)); + // Seperate each linestring + $linestirngs = explode("),(", $multilinestirng); + $params[$index]['MULTILINESTRING']['no_of_lines'] = count($linestirngs); + + $j = 0; + foreach ($linestirngs as $linestring) { + $points_arr = $this->extractPoints($linestring, null); + $no_of_points = count($points_arr); + $params[$index]['MULTILINESTRING'][$j]['no_of_points'] = $no_of_points; + for ($i = 0; $i < $no_of_points; $i++) { + $params[$index]['MULTILINESTRING'][$j][$i]['x'] = $points_arr[$i][0]; + $params[$index]['MULTILINESTRING'][$j][$i]['y'] = $points_arr[$i][1]; + } + $j++; + } + return $params; + } } ?> diff --git a/libraries/gis/pma_gis_multipoint.php b/libraries/gis/pma_gis_multipoint.php index e749760a4c..c97813a66e 100644 --- a/libraries/gis/pma_gis_multipoint.php +++ b/libraries/gis/pma_gis_multipoint.php @@ -213,5 +213,40 @@ class PMA_GIS_Multipoint extends PMA_GIS_Geometry $wkt .= ')'; return $wkt; } + + /** + * Generate parameters for the GIS data editor from the value of the GIS column. + * + * @param string $value of the GIS column + * @param index $index of the geometry + * + * @return parameters for the GIS data editor from the value of the GIS column + */ + public function generateParams($value, $index = -1) + { + if ($index == -1) { + $index = 0; + $params = array(); + $last_comma = strripos($value, ","); + $params['srid'] = trim(substr($value, $last_comma + 1)); + $wkt = trim(substr($value, 1, $last_comma - 2)); + } else { + $params[$index]['gis_type'] = 'MULTIPOINT'; + $wkt = $value; + } + + // Trim to remove leading 'MULTIPOINT(' and trailing ')' + $points = substr($wkt, 11, (strlen($wkt) - 12)); + $points_arr = $this->extractPoints($points, null); + + $no_of_points = count($points_arr); + $params[$index]['MULTIPOINT']['no_of_points'] = $no_of_points; + for ($i = 0; $i < $no_of_points; $i++) { + $params[$index]['MULTIPOINT'][$i]['x'] = $points_arr[$i][0]; + $params[$index]['MULTIPOINT'][$i]['y'] = $points_arr[$i][1]; + } + + return $params; + } } ?> diff --git a/libraries/gis/pma_gis_multipolygon.php b/libraries/gis/pma_gis_multipolygon.php index 5fa3148a96..03be3bc3c6 100644 --- a/libraries/gis/pma_gis_multipolygon.php +++ b/libraries/gis/pma_gis_multipolygon.php @@ -358,5 +358,64 @@ class PMA_GIS_Multipolygon extends PMA_GIS_Geometry $wkt .= ')'; return $wkt; } + + /** Generate parameters for the GIS data editor from the value of the GIS column. + * + * @param string $value of the GIS column + * @param index $index of the geometry + * + * @return parameters for the GIS data editor from the value of the GIS column + */ + public function generateParams($value, $index = -1) + { + if ($index == -1) { + $index = 0; + $params = array(); + $last_comma = strripos($value, ","); + $params['srid'] = trim(substr($value, $last_comma + 1)); + $wkt = trim(substr($value, 1, $last_comma - 2)); + } else { + $params[$index]['gis_type'] = 'MULTIPOLYGON'; + $wkt = $value; + } + + // Trim to remove leading 'MULTIPOLYGON(((' and trailing ')))' + $multipolygon = substr($wkt, 15, (strlen($wkt) - 18)); + // Seperate each polygon + $polygons = explode(")),((", $multipolygon); + $params[$index]['MULTIPOLYGON']['no_of_polygons'] = count($polygons); + + $k = 0; + foreach ($polygons as $polygon) { + // If the polygon doesnt have an inner polygon + if (strpos($polygon, "),(") === false) { + $params[$index]['MULTIPOLYGON'][$k]['no_of_lines'] = 1; + $points_arr = $this->extractPoints($polygon, null); + $no_of_points = count($points_arr); + $params[$index]['MULTIPOLYGON'][$k][0]['no_of_points'] = $no_of_points; + for ($i = 0; $i < $no_of_points; $i++) { + $params[$index]['MULTIPOLYGON'][$k][0][$i]['x'] = $points_arr[$i][0]; + $params[$index]['MULTIPOLYGON'][$k][0][$i]['y'] = $points_arr[$i][1]; + } + } else { + // Seperate outer and inner polygons + $parts = explode("),(", $polygon); + $params[$index]['MULTIPOLYGON'][$k]['no_of_lines'] = count($parts); + $j = 0; + foreach ($parts as $ring) { + $points_arr = $this->extractPoints($ring, null); + $no_of_points = count($points_arr); + $params[$index]['MULTIPOLYGON'][$k][$j]['no_of_points'] = $no_of_points; + for ($i = 0; $i < $no_of_points; $i++) { + $params[$index]['MULTIPOLYGON'][$k][$j][$i]['x'] = $points_arr[$i][0]; + $params[$index]['MULTIPOLYGON'][$k][$j][$i]['y'] = $points_arr[$i][1]; + } + $j++; + } + } + $k++; + } + return $params; + } } ?> diff --git a/libraries/gis/pma_gis_point.php b/libraries/gis/pma_gis_point.php index 50b70a1438..d5db147aa2 100644 --- a/libraries/gis/pma_gis_point.php +++ b/libraries/gis/pma_gis_point.php @@ -188,19 +188,25 @@ class PMA_GIS_Point extends PMA_GIS_Geometry } /** - * Generate parameters for the GIS data editor from the value of the gis column. + * Generate parameters for the GIS data editor from the value of the GIS column. * - * @param string $value of the gis column + * @param string $value of the GIS column * @param index $index of the geometry * - * @return parameters for the GIS data editor from the value of the gis column + * @return parameters for the GIS data editor from the value of the GIS column */ - public function generateParams($value, $index = 0) + public function generateParams($value, $index = -1) { - $params = array(); - $lastComma = strripos($value, ","); - $params['srid'] = trim(substr($value, $lastComma + 1)); - $wkt = trim(substr($value, 1, $lastComma - 2)); + if ($index == -1) { + $index = 0; + $params = array(); + $last_comma = strripos($value, ","); + $params['srid'] = trim(substr($value, $last_comma + 1)); + $wkt = trim(substr($value, 1, $last_comma - 2)); + } else { + $params[$index]['gis_type'] = 'POINT'; + $wkt = $value; + } // Trim to remove leading 'POINT(' and trailing ')' $point = substr($wkt, 6, (strlen($wkt) - 7)); diff --git a/libraries/gis/pma_gis_polygon.php b/libraries/gis/pma_gis_polygon.php index 0497a7593d..3bef784e5c 100644 --- a/libraries/gis/pma_gis_polygon.php +++ b/libraries/gis/pma_gis_polygon.php @@ -323,5 +323,45 @@ class PMA_GIS_Polygon extends PMA_GIS_Geometry $wkt .= ')'; return $wkt; } + + /** Generate parameters for the GIS data editor from the value of the GIS column. + * + * @param string $value of the GIS column + * @param index $index of the geometry + * + * @return parameters for the GIS data editor from the value of the GIS column + */ + public function generateParams($value, $index = -1) + { + if ($index == -1) { + $index = 0; + $params = array(); + $last_comma = strripos($value, ","); + $params['srid'] = trim(substr($value, $last_comma + 1)); + $wkt = trim(substr($value, 1, $last_comma - 2)); + } else { + $params[$index]['gis_type'] = 'POLYGON'; + $wkt = $value; + } + + // Trim to remove leading 'POLYGON((' and trailing '))' + $polygon = substr($wkt, 9, (strlen($wkt) - 11)); + // Seperate each linestring + $linerings = explode("),(", $polygon); + $params[$index]['POLYGON']['no_of_lines'] = count($linerings); + + $j = 0; + foreach ($linerings as $linering) { + $points_arr = $this->extractPoints($linering, null); + $no_of_points = count($points_arr); + $params[$index]['POLYGON'][$j]['no_of_points'] = $no_of_points; + for ($i = 0; $i < $no_of_points; $i++) { + $params[$index]['POLYGON'][$j][$i]['x'] = $points_arr[$i][0]; + $params[$index]['POLYGON'][$j][$i]['y'] = $points_arr[$i][1]; + } + $j++; + } + return $params; + } } ?> From 67ef96d1f6d6bbf6b7d906a02c4c79898a11ee66 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 30 Jun 2011 09:58:09 +0530 Subject: [PATCH 005/442] Check whether the variable is set before accessing it. --- libraries/gis_visualization.lib.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libraries/gis_visualization.lib.php b/libraries/gis_visualization.lib.php index cc15dc984a..388d1830e9 100644 --- a/libraries/gis_visualization.lib.php +++ b/libraries/gis_visualization.lib.php @@ -75,7 +75,9 @@ function PMA_GIS_modify_query($sql_query, $visualizationSettings) // If select cluase is * } else { // If label column is chosen add it to the query - if ($visualizationSettings['labelColumn'] != '') { + if (isset($visualizationSettings['labelColumn']) + && $visualizationSettings['labelColumn'] != '' + ) { $modified_query .= '`' . $visualizationSettings['labelColumn'] .'`, '; } From c4faafdc792abb3b2bef62b70ab7f32fd85aa143 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 3 Jul 2011 22:12:02 +0530 Subject: [PATCH 006/442] Import GIS data from ESRI shape files --- libraries/bfShapeFiles/ShapeFile.lib.php | 649 ++++++++++++++++++++++ libraries/gis/pma_gis_multilinestring.php | 24 +- libraries/gis/pma_gis_multipoint.php | 19 +- libraries/gis/pma_gis_point.php | 12 + libraries/import.lib.php | 45 +- libraries/import/shp.php | 344 ++++++++++++ 6 files changed, 1075 insertions(+), 18 deletions(-) create mode 100644 libraries/bfShapeFiles/ShapeFile.lib.php create mode 100644 libraries/import/shp.php diff --git a/libraries/bfShapeFiles/ShapeFile.lib.php b/libraries/bfShapeFiles/ShapeFile.lib.php new file mode 100644 index 0000000000..0680708c05 --- /dev/null +++ b/libraries/bfShapeFiles/ShapeFile.lib.php @@ -0,0 +1,649 @@ += 0 ; $i--) { + $result .= $binValue{$i}; + } + + return $result; + } + + function packDouble($value, $mode = 'LE') { + $value = (double)$value; + $bin = pack("d", $value); + + //We test if the conversion of an integer (1) is done as LE or BE by default + switch (pack ('L', 1)) { + case pack ('V', 1): //Little Endian + $result = ($mode == 'LE') ? $bin : swap($bin); + break; + case pack ('N', 1): //Big Endian + $result = ($mode == 'BE') ? $bin : swap($bin); + break; + default: //Some other thing, we just return false + $result = FALSE; + } + + return $result; + } + + class ShapeFile { + var $FileName; + + var $SHPFile; + var $SHXFile; + var $DBFFile; + + var $DBFHeader; + + var $lastError = ""; + + var $boundingBox = array("xmin" => 0.0, "ymin" => 0.0, "xmax" => 0.0, "ymax" => 0.0); + var $fileLength = 0; + var $shapeType = 0; + + var $records; + + function ShapeFile($shapeType, $boundingBox = array("xmin" => 0.0, "ymin" => 0.0, "xmax" => 0.0, "ymax" => 0.0), $FileName = NULL) { + $this->shapeType = $shapeType; + $this->boundingBox = $boundingBox; + $this->FileName = $FileName; + $this->fileLength = 50; + } + + function loadFromFile($FileName) { + $this->FileName = $FileName; + + if (($this->_openSHPFile()) && ($this->_openDBFFile())) { + $this->_loadHeaders(); + $this->_loadRecords(); + $this->_closeSHPFile(); + $this->_closeDBFFile(); + } else { + return false; + } + } + + function saveToFile($FileName = NULL) { + if ($FileName != NULL) $this->FileName = $FileName; + + if (($this->_openSHPFile(TRUE)) && ($this->_openSHXFile(TRUE)) && ($this->_openDBFFile(TRUE))) { + $this->_saveHeaders(); + $this->_saveRecords(); + $this->_closeSHPFile(); + $this->_closeSHXFile(); + $this->_closeDBFFile(); + } else { + return false; + } + } + + function addRecord($record) { + if ((isset($this->DBFHeader)) && (is_array($this->DBFHeader))) { + $record->updateDBFInfo($this->DBFHeader); + } + + $this->fileLength += ($record->getContentLength() + 4); + $this->records[] = $record; + $this->records[count($this->records) - 1]->recordNumber = count($this->records); + + return (count($this->records) - 1); + } + + function deleteRecord($index) { + if (isset($this->records[$index])) { + $this->fileLength -= ($this->records[$index]->getContentLength() + 4); + for ($i = $index; $i < (count($this->records) - 1); $i++) { + $this->records[$i] = $this->records[$i + 1]; + } + unset($this->records[count($this->records) - 1]); + $this->_deleteRecordFromDBF($index); + } + } + + function getDBFHeader() { + return $this->DBFHeader; + } + + function setDBFHeader($header) { + $this->DBFHeader = $header; + + for ($i = 0; $i < count($this->records); $i++) { + $this->records[$i]->updateDBFInfo($header); + } + } + + function getIndexFromDBFData($field, $value) { + $result = -1; + for ($i = 0; $i < (count($this->records) - 1); $i++) { + if (isset($this->records[$i]->DBFData[$field]) && (strtoupper($this->records[$i]->DBFData[$field]) == strtoupper($value))) { + $result = $i; + } + } + + return $result; + } + + function _loadDBFHeader() { + $DBFFile = fopen(str_replace('.*', '.dbf', $this->FileName), 'r'); + + $result = array(); + $buff32 = array(); + $i = 1; + $inHeader = true; + + while ($inHeader) { + if (!feof($DBFFile)) { + $buff32 = fread($DBFFile, 32); + if ($i > 1) { + if (substr($buff32, 0, 1) == chr(13)) { + $inHeader = false; + } else { + $pos = strpos(substr($buff32, 0, 10), chr(0)); + $pos = ($pos == 0 ? 10 : $pos); + + $fieldName = substr($buff32, 0, $pos); + $fieldType = substr($buff32, 11, 1); + $fieldLen = ord(substr($buff32, 16, 1)); + $fieldDec = ord(substr($buff32, 17, 1)); + + array_push($result, array($fieldName, $fieldType, $fieldLen, $fieldDec)); + } + } + $i++; + } else { + $inHeader = false; + } + } + + fclose($DBFFile); + return($result); + } + + function _deleteRecordFromDBF($index) { + if (@dbase_delete_record($this->DBFFile, $index)) { + @dbase_pack($this->DBFFile); + } + } + + function _loadHeaders() { + fseek($this->SHPFile, 24, SEEK_SET); + $this->fileLength = loadData("N", fread($this->SHPFile, 4)); + + fseek($this->SHPFile, 32, SEEK_SET); + $this->shapeType = loadData("V", fread($this->SHPFile, 4)); + + $this->boundingBox = array(); + $this->boundingBox["xmin"] = loadData("d", fread($this->SHPFile, 8)); + $this->boundingBox["ymin"] = loadData("d", fread($this->SHPFile, 8)); + $this->boundingBox["xmax"] = loadData("d", fread($this->SHPFile, 8)); + $this->boundingBox["ymax"] = loadData("d", fread($this->SHPFile, 8)); + + $this->DBFHeader = $this->_loadDBFHeader(); + } + + function _saveHeaders() { + fwrite($this->SHPFile, pack("NNNNNN", 9994, 0, 0, 0, 0, 0)); + fwrite($this->SHPFile, pack("N", $this->fileLength)); + fwrite($this->SHPFile, pack("V", 1000)); + fwrite($this->SHPFile, pack("V", $this->shapeType)); + fwrite($this->SHPFile, packDouble($this->boundingBox['xmin'])); + fwrite($this->SHPFile, packDouble($this->boundingBox['ymin'])); + fwrite($this->SHPFile, packDouble($this->boundingBox['xmax'])); + fwrite($this->SHPFile, packDouble($this->boundingBox['ymax'])); + fwrite($this->SHPFile, pack("dddd", 0, 0, 0, 0)); + + fwrite($this->SHXFile, pack("NNNNNN", 9994, 0, 0, 0, 0, 0)); + fwrite($this->SHXFile, pack("N", 50 + 4*count($this->records))); + fwrite($this->SHXFile, pack("V", 1000)); + fwrite($this->SHXFile, pack("V", $this->shapeType)); + fwrite($this->SHXFile, packDouble($this->boundingBox['xmin'])); + fwrite($this->SHXFile, packDouble($this->boundingBox['ymin'])); + fwrite($this->SHXFile, packDouble($this->boundingBox['xmax'])); + fwrite($this->SHXFile, packDouble($this->boundingBox['ymax'])); + fwrite($this->SHXFile, pack("dddd", 0, 0, 0, 0)); + } + + function _loadRecords() { + fseek($this->SHPFile, 100); + while (!feof($this->SHPFile)) { + $bByte = ftell($this->SHPFile); + $record = new ShapeRecord(-1); + $record->loadFromFile($this->SHPFile, $this->DBFFile); + $eByte = ftell($this->SHPFile); + if (($eByte <= $bByte) || ($record->lastError != "")) { + return false; + } + + $this->records[] = $record; + } + } + + function _saveRecords() { + if (file_exists(str_replace('.*', '.dbf', $this->FileName))) { + @unlink(str_replace('.*', '.dbf', $this->FileName)); + } + if (!($this->DBFFile = @dbase_create(str_replace('.*', '.dbf', $this->FileName), $this->DBFHeader))) { + return $this->setError(sprintf("It wasn't possible to create the DBase file '%s'", str_replace('.*', '.dbf', $this->FileName))); + } + + $offset = 50; + if (is_array($this->records) && (count($this->records) > 0)) { + reset($this->records); + while (list($index, $record) = each($this->records)) { + //Save the record to the .shp file + $record->saveToFile($this->SHPFile, $this->DBFFile, $index + 1); + + //Save the record to the .shx file + fwrite($this->SHXFile, pack("N", $offset)); + fwrite($this->SHXFile, pack("N", $record->getContentLength())); + $offset += (4 + $record->getContentLength()); + } + } + @dbase_pack($this->DBFFile); + } + + function _openSHPFile($toWrite = false) { + $this->SHPFile = @fopen(str_replace('.*', '.shp', $this->FileName), ($toWrite ? "wb+" : "rb")); + if (!$this->SHPFile) { + return $this->setError(sprintf("It wasn't possible to open the Shape file '%s'", str_replace('.*', '.shp', $this->FileName))); + } + + return TRUE; + } + + function _closeSHPFile() { + if ($this->SHPFile) { + fclose($this->SHPFile); + $this->SHPFile = NULL; + } + } + + function _openSHXFile($toWrite = false) { + $this->SHXFile = @fopen(str_replace('.*', '.shx', $this->FileName), ($toWrite ? "wb+" : "rb")); + if (!$this->SHXFile) { + return $this->setError(sprintf("It wasn't possible to open the Index file '%s'", str_replace('.*', '.shx', $this->FileName))); + } + + return TRUE; + } + + function _closeSHXFile() { + if ($this->SHXFile) { + fclose($this->SHXFile); + $this->SHXFile = NULL; + } + } + + function _openDBFFile($toWrite = false) { + $checkFunction = $toWrite ? "is_writable" : "is_readable"; + if (($toWrite) && (!file_exists(str_replace('.*', '.dbf', $this->FileName)))) { + if (!@dbase_create(str_replace('.*', '.dbf', $this->FileName), $this->DBFHeader)) { + return $this->setError(sprintf("It wasn't possible to create the DBase file '%s'", str_replace('.*', '.dbf', $this->FileName))); + } + } + if ($checkFunction(str_replace('.*', '.dbf', $this->FileName))) { + $this->DBFFile = dbase_open(str_replace('.*', '.dbf', $this->FileName), ($toWrite ? 2 : 0)); + if (!$this->DBFFile) { + return $this->setError(sprintf("It wasn't possible to open the DBase file '%s'", str_replace('.*', '.dbf', $this->FileName))); + } + } else { + return $this->setError(sprintf("It wasn't possible to find the DBase file '%s'", str_replace('.*', '.dbf', $this->FileName))); + } + return TRUE; + } + + function _closeDBFFile() { + if ($this->DBFFile) { + dbase_close($this->DBFFile); + $this->DBFFile = NULL; + } + } + + function setError($error) { + $this->lastError = $error; + return false; + } + } + + class ShapeRecord { + var $SHPFile = NULL; + var $DBFFile = NULL; + + var $recordNumber = NULL; + var $shapeType = NULL; + + var $lastError = ""; + + var $SHPData = array(); + var $DBFData = array(); + + function ShapeRecord($shapeType) { + $this->shapeType = $shapeType; + } + + function loadFromFile(&$SHPFile, &$DBFFile) { + $this->SHPFile = $SHPFile; + $this->DBFFile = $DBFFile; + $this->_loadHeaders(); + + switch ($this->shapeType) { + case 0: + $this->_loadNullRecord(); + break; + case 1: + $this->_loadPointRecord(); + break; + case 3: + $this->_loadPolyLineRecord(); + break; + case 5: + $this->_loadPolygonRecord(); + break; + case 8: + $this->_loadMultiPointRecord(); + break; + default: + $this->setError(sprintf("The Shape Type '%s' is not supported.", $this->shapeType)); + break; + } + $this->_loadDBFData(); + } + + function saveToFile(&$SHPFile, &$DBFFile, $recordNumber) { + $this->SHPFile = $SHPFile; + $this->DBFFile = $DBFFile; + $this->recordNumber = $recordNumber; + $this->_saveHeaders(); + + switch ($this->shapeType) { + case 0: + $this->_saveNullRecord(); + break; + case 1: + $this->_savePointRecord(); + break; + case 3: + $this->_savePolyLineRecord(); + break; + case 5: + $this->_savePolygonRecord(); + break; + case 8: + $this->_saveMultiPointRecord(); + break; + default: + $this->setError(sprintf("The Shape Type '%s' is not supported.", $this->shapeType)); + break; + } + $this->_saveDBFData(); + } + + function updateDBFInfo($header) { + $tmp = $this->DBFData; + unset($this->DBFData); + $this->DBFData = array(); + reset($header); + while (list($key, $value) = each($header)) { + $this->DBFData[$value[0]] = (isset($tmp[$value[0]])) ? $tmp[$value[0]] : ""; + } + } + + function _loadHeaders() { + $this->recordNumber = loadData("N", fread($this->SHPFile, 4)); + $tmp = loadData("N", fread($this->SHPFile, 4)); //We read the length of the record + $this->shapeType = loadData("V", fread($this->SHPFile, 4)); + } + + function _saveHeaders() { + fwrite($this->SHPFile, pack("N", $this->recordNumber)); + fwrite($this->SHPFile, pack("N", $this->getContentLength())); + fwrite($this->SHPFile, pack("V", $this->shapeType)); + } + + function _loadPoint() { + $data = array(); + + $data["x"] = loadData("d", fread($this->SHPFile, 8)); + $data["y"] = loadData("d", fread($this->SHPFile, 8)); + + return $data; + } + + function _savePoint($data) { + fwrite($this->SHPFile, packDouble($data["x"])); + fwrite($this->SHPFile, packDouble($data["y"])); + } + + function _loadNullRecord() { + $this->SHPData = array(); + } + + function _saveNullRecord() { + //Don't save anything + } + + function _loadPointRecord() { + $this->SHPData = $this->_loadPoint(); + } + + function _savePointRecord() { + $this->_savePoint($this->SHPData); + } + + function _loadMultiPointRecord() { + $this->SHPData = array(); + $this->SHPData["xmin"] = loadData("d", fread($this->SHPFile, 8)); + $this->SHPData["ymin"] = loadData("d", fread($this->SHPFile, 8)); + $this->SHPData["xmax"] = loadData("d", fread($this->SHPFile, 8)); + $this->SHPData["ymax"] = loadData("d", fread($this->SHPFile, 8)); + + $this->SHPData["numpoints"] = loadData("V", fread($this->SHPFile, 4)); + + for ($i = 0; $i <= $this->SHPData["numpoints"]; $i++) { + $this->SHPData["points"][] = $this->_loadPoint(); + } + } + + function _saveMultiPointRecord() { + fwrite($this->SHPFile, pack("dddd", $this->SHPData["xmin"], $this->SHPData["ymin"], $this->SHPData["xmax"], $this->SHPData["ymax"])); + + fwrite($this->SHPFile, pack("V", $this->SHPData["numpoints"])); + + for ($i = 0; $i <= $this->SHPData["numpoints"]; $i++) { + $this->_savePoint($this->SHPData["points"][$i]); + } + } + + function _loadPolyLineRecord() { + $this->SHPData = array(); + $this->SHPData["xmin"] = loadData("d", fread($this->SHPFile, 8)); + $this->SHPData["ymin"] = loadData("d", fread($this->SHPFile, 8)); + $this->SHPData["xmax"] = loadData("d", fread($this->SHPFile, 8)); + $this->SHPData["ymax"] = loadData("d", fread($this->SHPFile, 8)); + + $this->SHPData["numparts"] = loadData("V", fread($this->SHPFile, 4)); + $this->SHPData["numpoints"] = loadData("V", fread($this->SHPFile, 4)); + + for ($i = 0; $i < $this->SHPData["numparts"]; $i++) { + $this->SHPData["parts"][$i] = loadData("V", fread($this->SHPFile, 4)); + } + + $firstIndex = ftell($this->SHPFile); + $readPoints = 0; + reset($this->SHPData["parts"]); + while (list($partIndex, $partData) = each($this->SHPData["parts"])) { + if (!isset($this->SHPData["parts"][$partIndex]["points"]) || !is_array($this->SHPData["parts"][$partIndex]["points"])) { + $this->SHPData["parts"][$partIndex] = array(); + $this->SHPData["parts"][$partIndex]["points"] = array(); + } + while (!in_array($readPoints, $this->SHPData["parts"]) && ($readPoints < ($this->SHPData["numpoints"])) && !feof($this->SHPFile)) { + $this->SHPData["parts"][$partIndex]["points"][] = $this->_loadPoint(); + $readPoints++; + } + } + + fseek($this->SHPFile, $firstIndex + ($readPoints*16)); + } + + function _savePolyLineRecord() { + fwrite($this->SHPFile, pack("dddd", $this->SHPData["xmin"], $this->SHPData["ymin"], $this->SHPData["xmax"], $this->SHPData["ymax"])); + + fwrite($this->SHPFile, pack("VV", $this->SHPData["numparts"], $this->SHPData["numpoints"])); + + for ($i = 0; $i < $this->SHPData["numparts"]; $i++) { + fwrite($this->SHPFile, pack("V", count($this->SHPData["parts"][$i]))); + } + + reset($this->SHPData["parts"]); + foreach ($this->SHPData["parts"] as $partData){ + reset($partData["points"]); + while (list($pointIndex, $pointData) = each($partData["points"])) { + $this->_savePoint($pointData); + } + } + } + + function _loadPolygonRecord() { + $this->_loadPolyLineRecord(); + } + + function _savePolygonRecord() { + $this->_savePolyLineRecord(); + } + + function addPoint($point, $partIndex = 0) { + switch ($this->shapeType) { + case 0: + //Don't add anything + break; + case 1: + //Substitutes the value of the current point + $this->SHPData = $point; + break; + case 3: + case 5: + //Adds a new point to the selected part + if (!isset($this->SHPData["xmin"]) || ($this->SHPData["xmin"] > $point["x"])) $this->SHPData["xmin"] = $point["x"]; + if (!isset($this->SHPData["ymin"]) || ($this->SHPData["ymin"] > $point["y"])) $this->SHPData["ymin"] = $point["y"]; + if (!isset($this->SHPData["xmax"]) || ($this->SHPData["xmax"] < $point["x"])) $this->SHPData["xmax"] = $point["x"]; + if (!isset($this->SHPData["ymax"]) || ($this->SHPData["ymax"] < $point["y"])) $this->SHPData["ymax"] = $point["y"]; + + $this->SHPData["parts"][$partIndex]["points"][] = $point; + + $this->SHPData["numparts"] = count($this->SHPData["parts"]); + $this->SHPData["numpoints"]++; + break; + case 8: + //Adds a new point + if (!isset($this->SHPData["xmin"]) || ($this->SHPData["xmin"] > $point["x"])) $this->SHPData["xmin"] = $point["x"]; + if (!isset($this->SHPData["ymin"]) || ($this->SHPData["ymin"] > $point["y"])) $this->SHPData["ymin"] = $point["y"]; + if (!isset($this->SHPData["xmax"]) || ($this->SHPData["xmax"] < $point["x"])) $this->SHPData["xmax"] = $point["x"]; + if (!isset($this->SHPData["ymax"]) || ($this->SHPData["ymax"] < $point["y"])) $this->SHPData["ymax"] = $point["y"]; + + $this->SHPData["points"][] = $point; + $this->SHPData["numpoints"]++; + break; + default: + $this->setError(sprintf("The Shape Type '%s' is not supported.", $this->shapeType)); + break; + } + } + + function deletePoint($pointIndex = 0, $partIndex = 0) { + switch ($this->shapeType) { + case 0: + //Don't delete anything + break; + case 1: + //Sets the value of the point to zero + $this->SHPData["x"] = 0.0; + $this->SHPData["y"] = 0.0; + break; + case 3: + case 5: + //Deletes the point from the selected part, if exists + if (isset($this->SHPData["parts"][$partIndex]) && isset($this->SHPData["parts"][$partIndex]["points"][$pointIndex])) { + for ($i = $pointIndex; $i < (count($this->SHPData["parts"][$partIndex]["points"]) - 1); $i++) { + $this->SHPData["parts"][$partIndex]["points"][$i] = $this->SHPData["parts"][$partIndex]["points"][$i + 1]; + } + unset($this->SHPData["parts"][$partIndex]["points"][count($this->SHPData["parts"][$partIndex]["points"]) - 1]); + + $this->SHPData["numparts"] = count($this->SHPData["parts"]); + $this->SHPData["numpoints"]--; + } + break; + case 8: + //Deletes the point, if exists + if (isset($this->SHPData["points"][$pointIndex])) { + for ($i = $pointIndex; $i < (count($this->SHPData["points"]) - 1); $i++) { + $this->SHPData["points"][$i] = $this->SHPData["points"][$i + 1]; + } + unset($this->SHPData["points"][count($this->SHPData["points"]) - 1]); + + $this->SHPData["numpoints"]--; + } + break; + default: + $this->setError(sprintf("The Shape Type '%s' is not supported.", $this->shapeType)); + break; + } + } + + function getContentLength() { + switch ($this->shapeType) { + case 0: + $result = 0; + break; + case 1: + $result = 10; + break; + case 3: + case 5: + $result = 22 + 2*count($this->SHPData["parts"]); + for ($i = 0; $i < count($this->SHPData["parts"]); $i++) { + $result += 8*count($this->SHPData["parts"][$i]["points"]); + } + break; + case 8: + $result = 20 + 8*count($this->SHPData["points"]); + break; + default: + $result = false; + $this->setError(sprintf("The Shape Type '%s' is not supported.", $this->shapeType)); + break; + } + return $result; + } + + function _loadDBFData() { + $this->DBFData = @dbase_get_record_with_names($this->DBFFile, $this->recordNumber); + unset($this->DBFData["deleted"]); + } + + function _saveDBFData() { + unset($this->DBFData["deleted"]); + if ($this->recordNumber <= dbase_numrecords($this->DBFFile)) { + if (!dbase_replace_record($this->DBFFile, array_values($this->DBFData), $this->recordNumber)) { + $this->setError("I wasn't possible to update the information in the DBF file."); + } + } else { + if (!dbase_add_record($this->DBFFile, array_values($this->DBFData))) { + $this->setError("I wasn't possible to add the information to the DBF file."); + } + } + } + + function setError($error) { + $this->lastError = $error; + return false; + } + } + +?> diff --git a/libraries/gis/pma_gis_multilinestring.php b/libraries/gis/pma_gis_multilinestring.php index f80dbc17bd..0ac845244a 100644 --- a/libraries/gis/pma_gis_multilinestring.php +++ b/libraries/gis/pma_gis_multilinestring.php @@ -251,7 +251,29 @@ class PMA_GIS_Multilinestring extends PMA_GIS_Geometry $wkt .= (isset($gis_data[$index]['MULTILINESTRING'][$i][$j]['x']) ? $gis_data[$index]['MULTILINESTRING'][$i][$j]['x'] : '') . ' ' . (isset($gis_data[$index]['MULTILINESTRING'][$i][$j]['y']) - ? $gis_data[$index]['MULTILINESTRING'][$i][$j]['y'] : '') .','; + ? $gis_data[$index]['MULTILINESTRING'][$i][$j]['y'] : '') . ','; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= '),'; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= ')'; + return $wkt; + } + + /** + * Generate the WKT for the data from ESRI shape files. + * + * @param array $row_data GIS data + * + * @return the WKT for the data from ESRI shape files + */ + public function getShape($row_data) { + $wkt = 'MULTILINESTRING('; + for ($i = 0; $i < $row_data['numparts']; $i++) { + $wkt .= '('; + foreach($row_data['parts'][$i]['points'] as $point) { + $wkt .= $point['x'] . ' ' . $point['y'] . ','; } $wkt = substr($wkt, 0, strlen($wkt) - 1); $wkt .= '),'; diff --git a/libraries/gis/pma_gis_multipoint.php b/libraries/gis/pma_gis_multipoint.php index c97813a66e..086c2c7cd3 100644 --- a/libraries/gis/pma_gis_multipoint.php +++ b/libraries/gis/pma_gis_multipoint.php @@ -207,7 +207,24 @@ class PMA_GIS_Multipoint extends PMA_GIS_Geometry $wkt .= (isset($gis_data[$index]['MULTIPOINT'][$i]['x']) ? $gis_data[$index]['MULTIPOINT'][$i]['x'] : '') . ' ' . (isset($gis_data[$index]['MULTIPOINT'][$i]['y']) - ? $gis_data[$index]['MULTIPOINT'][$i]['y'] : '') .','; + ? $gis_data[$index]['MULTIPOINT'][$i]['y'] : '') . ','; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= ')'; + return $wkt; + } + + /** + * Generate the WKT for the data from ESRI shape files. + * + * @param array $row_data GIS data + * + * @return the WKT for the data from ESRI shape files + */ + public function getShape($row_data) { + $wkt = 'MULTIPOINT('; + for ($i = 0; $i < $row_data['numpoints']; $i++) { + $wkt .= $row_data['points'][$i]['x'] . ' ' . $row_data['points'][$i]['y'] . ','; } $wkt = substr($wkt, 0, strlen($wkt) - 1); $wkt .= ')'; diff --git a/libraries/gis/pma_gis_point.php b/libraries/gis/pma_gis_point.php index d5db147aa2..2cade89e57 100644 --- a/libraries/gis/pma_gis_point.php +++ b/libraries/gis/pma_gis_point.php @@ -187,6 +187,18 @@ class PMA_GIS_Point extends PMA_GIS_Geometry . ' ' . (isset($gis_data[$index]['POINT']['y']) ? $gis_data[$index]['POINT']['y'] : '') . ')'; } + /** + * Generate the WKT for the data from ESRI shape files. + * + * @param array $row_data GIS data + * + * @return the WKT for the data from ESRI shape files + */ + public function getShape($row_data) { + $gis_data = array(array('POINT' => array('x' => $row_data['x'], 'y' => $row_data['y']))); + return $this->generateWkt($gis_data, 0); + } + /** * Generate parameters for the GIS data editor from the value of the GIS column. * diff --git a/libraries/import.lib.php b/libraries/import.lib.php index e2cbdd201f..ba2995bdf5 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -418,6 +418,7 @@ define("VARCHAR", 1); define("INT", 2); define("DECIMAL", 3); define("BIGINT", 4); +define("GEOMETRY", 5); /* Decimal size defs */ define("M", 0); @@ -430,8 +431,9 @@ define("COL_NAMES", 1); define("ROWS", 2); /* Analysis array defs */ -define("TYPES", 0); -define("SIZES", 1); +define("TYPES", 0); +define("SIZES", 1); +define("FORMATTEDSQL", 2); /** * Obtains the precision (total # of digits) from a size of type decimal @@ -911,7 +913,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql = } if ($analyses != NULL) { - $type_array = array(NONE => "NULL", VARCHAR => "varchar", INT => "int", DECIMAL => "decimal", BIGINT => "bigint"); + $type_array = array(NONE => "NULL", VARCHAR => "varchar", INT => "int", DECIMAL => "decimal", BIGINT => "bigint", GEOMETRY => 'geometry'); /* TODO: Do more checking here to make sure they really are matched */ if (count($tables) != count($analyses)) { @@ -930,7 +932,10 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql = $size = 10; } - $tempSQLStr .= PMA_backquote($tables[$i][COL_NAMES][$j]) . " " . $type_array[$analyses[$i][TYPES][$j]] . "(" . $size . ")"; + $tempSQLStr .= PMA_backquote($tables[$i][COL_NAMES][$j]) . " " . $type_array[$analyses[$i][TYPES][$j]]; + if ($analyses[$i][TYPES][$j] != GEOMETRY) { + $tempSQLStr .= "(" . $size . ")"; + } if ($j != (count($tables[$i][COL_NAMES]) - 1)) { $tempSQLStr .= ", "; @@ -974,21 +979,29 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql = for ($j = 0; $j < $num_rows; ++$j) { $tempSQLStr .= "("; - for ($k = 0; $k < $num_cols; ++$k) { - if ($analyses != NULL) { - $is_varchar = ($analyses[$i][TYPES][$col_count] === VARCHAR); + for ($k = 0; $k < $num_cols; ++$k) { + // If fully formatted SQL, no need to enclose with aphostrophes, add shalshes etc. + if ($analyses != null + && isset($analyses[$i][FORMATTEDSQL][$col_count]) + && $analyses[$i][FORMATTEDSQL][$col_count] == true + ) { + $tempSQLStr .= (string) $tables[$i][ROWS][$j][$k]; } else { - $is_varchar = !is_numeric($tables[$i][ROWS][$j][$k]); - } + if ($analyses != null) { + $is_varchar = ($analyses[$i][TYPES][$col_count] === VARCHAR); + } else { + $is_varchar = !is_numeric($tables[$i][ROWS][$j][$k]); + } - /* Don't put quotes around NULL fields */ - if (! strcmp($tables[$i][ROWS][$j][$k], 'NULL')) { - $is_varchar = false; - } + /* Don't put quotes around NULL fields */ + if (! strcmp($tables[$i][ROWS][$j][$k], 'NULL')) { + $is_varchar = false; + } - $tempSQLStr .= (($is_varchar) ? "'" : ""); - $tempSQLStr .= PMA_sqlAddSlashes((string)$tables[$i][ROWS][$j][$k]); - $tempSQLStr .= (($is_varchar) ? "'" : ""); + $tempSQLStr .= (($is_varchar) ? "'" : ""); + $tempSQLStr .= PMA_sqlAddSlashes((string)$tables[$i][ROWS][$j][$k]); + $tempSQLStr .= (($is_varchar) ? "'" : ""); + } if ($k != ($num_cols - 1)) { $tempSQLStr .= ", "; diff --git a/libraries/import/shp.php b/libraries/import/shp.php new file mode 100644 index 0000000000..77d9f09ecc --- /dev/null +++ b/libraries/import/shp.php @@ -0,0 +1,344 @@ + __('ESRI Shape File'), + 'extension' => 'shp', + 'options' => array(), + 'options_text' => __('Options'), + ); +} else { + + // Append the bfShapeFiles directory to the include path variable + set_include_path(get_include_path() . PATH_SEPARATOR . getcwd() . '/libraries/bfShapeFiles/'); + require_once './libraries/bfShapeFiles/ShapeFile.lib.php'; + + $GLOBALS['finished'] = false; + $buffer = ''; + $eof = false; + + // Returns specified number of bytes from the buffer. + // Buffer automatically fetch next chunk of data when the buffer falls short. + // Sets $eof when $GLOBALS['finished'] is set and the buffer is falls short. + function readFromBuffer($length){ + global $buffer, $eof; + + if (strlen($buffer) < $length) { + if ($GLOBALS['finished']) { + $eof = true; + } else { + $buffer .= PMA_importGetNextChunk(); + } + } + $result = substr($buffer, 0, $length); + $buffer = substr($buffer, $length); + return $result; + } + + /** + * This class extends from ShapeFile class to cater following phpMyAdmin specific requirements. + * 1) To loads data from .dbf file only when the dBase extension is availble. + * 2) To use PMA_importGetNextChunk() functionality to read data, rather than reading directly from a file. + * Using readFromBuffer() inplace of fread(). This makes it possible to use compressions. + */ + class PMA_ShapeFile extends ShapeFile { + + function _isDbaseLoaded() + { + return extension_loaded('dbase'); + } + + function loadFromFile($FileName) + { + $this->_loadHeaders(); + $this->_loadRecords(); + if ($this->_isDbaseLoaded()) { + $this->_closeDBFFile(); + } + } + + function _loadHeaders() + { + readFromBuffer(24); + $this->fileLength = loadData("N", readFromBuffer(4)); + + readFromBuffer(4); + $this->shapeType = loadData("V", readFromBuffer(4)); + + $this->boundingBox = array(); + $this->boundingBox["xmin"] = loadData("d", readFromBuffer(8)); + $this->boundingBox["ymin"] = loadData("d", readFromBuffer(8)); + $this->boundingBox["xmax"] = loadData("d", readFromBuffer(8)); + $this->boundingBox["ymax"] = loadData("d", readFromBuffer(8)); + + if ($this->_isDbaseLoaded() && $this->_openDBFFile()) { + $this->DBFHeader = $this->_loadDBFHeader(); + } + } + + function _loadRecords() + { + global $eof; + readFromBuffer(32); + while (true) { + $record = new PMA_ShapeRecord(-1); + $record->loadFromFile($this->SHPFile, $this->DBFFile); + if ($record->lastError != "") { + return false; + } + if ($eof) { + break; + } + + $this->records[] = $record; + } + } + } + + /** + * This class extends from ShapeRecord class to cater following phpMyAdmin specific requirements. + * 1) To loads data from .dbf file only when the dBase extension is availble. + * 2) To use PMA_importGetNextChunk() functionality to read data, rather than reading directly from a file. + * Using readFromBuffer() inplace of fread(). This makes it possible to use compressions. + */ + class PMA_ShapeRecord extends ShapeRecord { + + function loadFromFile(&$SHPFile, &$DBFFile) + { + $this->DBFFile = $DBFFile; + $this->_loadHeaders(); + + switch ($this->shapeType) { + case 0: + $this->_loadNullRecord(); + break; + case 1: + $this->_loadPointRecord(); + break; + case 3: + $this->_loadPolyLineRecord(); + break; + case 5: + $this->_loadPolygonRecord(); + break; + case 8: + $this->_loadMultiPointRecord(); + break; + default: + $this->setError(sprintf("The Shape Type '%s' is not supported.", $this->shapeType)); + break; + } + if (extension_loaded('dbase') && isset($this->DBFFile)) { + $this->_loadDBFData(); + } + } + + function _loadHeaders() + { + $this->recordNumber = loadData("N", readFromBuffer(4)); + $tmp = loadData("N", readFromBuffer(4)); //We read the length of the record + $this->shapeType = loadData("V", readFromBuffer(4)); + } + + function _loadPoint() + { + $data = array(); + + $data["x"] = loadData("d", readFromBuffer(8)); + $data["y"] = loadData("d", readFromBuffer(8)); + + return $data; + } + + function _loadMultiPointRecord() + { + $this->SHPData = array(); + $this->SHPData["xmin"] = loadData("d", readFromBuffer(8)); + $this->SHPData["ymin"] = loadData("d", readFromBuffer(8)); + $this->SHPData["xmax"] = loadData("d", readFromBuffer(8)); + $this->SHPData["ymax"] = loadData("d", readFromBuffer(8)); + + $this->SHPData["numpoints"] = loadData("V", readFromBuffer(4)); + + for ($i = 0; $i <= $this->SHPData["numpoints"]; $i++) { + $this->SHPData["points"][] = $this->_loadPoint(); + } + } + + function _loadPolyLineRecord() + { + $this->SHPData = array(); + $this->SHPData["xmin"] = loadData("d", readFromBuffer(8)); + $this->SHPData["ymin"] = loadData("d", readFromBuffer(8)); + $this->SHPData["xmax"] = loadData("d", readFromBuffer(8)); + $this->SHPData["ymax"] = loadData("d", readFromBuffer(8)); + + $this->SHPData["numparts"] = loadData("V", readFromBuffer(4)); + $this->SHPData["numpoints"] = loadData("V", readFromBuffer(4)); + + for ($i = 0; $i < $this->SHPData["numparts"]; $i++) { + $this->SHPData["parts"][$i] = loadData("V", readFromBuffer(4)); + } + + $readPoints = 0; + reset($this->SHPData["parts"]); + while (list($partIndex, $partData) = each($this->SHPData["parts"])) { + if (!isset($this->SHPData["parts"][$partIndex]["points"]) || !is_array($this->SHPData["parts"][$partIndex]["points"])) { + $this->SHPData["parts"][$partIndex] = array(); + $this->SHPData["parts"][$partIndex]["points"] = array(); + } + while (!in_array($readPoints, $this->SHPData["parts"]) && ($readPoints < ($this->SHPData["numpoints"]))) { + $this->SHPData["parts"][$partIndex]["points"][] = $this->_loadPoint(); + $readPoints++; + } + } + } + } + + $shp = new PMA_ShapeFile(1); + if (extension_loaded('dbase')) { + // If file is in UploadDir, use .dbf file in the same UploadDir to load extra data. + if (! empty($local_import_file) && ! empty($cfg['UploadDir']) && $compression == 'none') { + // Replace the .shp with .*, so the bsShapeFiles library correctly locates .dbf file. + $file_name = substr($import_file, 0, strlen($import_file) - 4) . '.*'; + $shp->FileName = $file_name; + } + } + $shp->loadFromFile(''); + + $esri_types = array( + 0 => 'Null Shape', + 1 => 'Point', + 3 => 'PolyLine', + 5 => 'Polygon', + 8 => 'MultiPoint', + 11 => 'PointZ', + 13 => 'PolyLineZ', + 15 => 'PolygonZ', + 18 => 'MultiPointZ', + 21 => 'PointM', + 23 => 'PolyLineM', + 25 => 'PolygonM', + 28 => 'MultiPointM', + 31 => 'MultiPatch', + ); + + require_once './libraries/gis/pma_gis_geometry.php'; + switch ($shp->shapeType) { + // Esri Null Shape + case 0: + $gis_obj = null; + break; + // Esri Point + case 1: + require_once './libraries/gis/pma_gis_point.php'; + $gis_obj = PMA_GIS_Point::singleton(); + break; + // Esri PolyLine + case 3: + require_once './libraries/gis/pma_gis_multilinestring.php'; + $gis_obj = PMA_GIS_Multilinestring::singleton(); + break; + // Esri Polygon + case 5: + require_once './libraries/gis/pma_gis_multipolygon.php'; + $gis_obj = PMA_GIS_Multipolygon::singleton(); + break; + // Esri MultiPoint + case 8: + require_once './libraries/gis/pma_gis_multipoint.php'; + $gis_obj = PMA_GIS_Multipoint::singleton(); + break; + default: + $error = true; + $err = PMA_Message::error(__('MySQL Spatial Extention does not support ESRI type "%s".')); + $param = isset($esri_types[$shp->shapeType]) ? $esri_types[$shp->shapeType] : __('Unkown Type'); + $err->addParam($param); + PMA_mysqlDie($err->getMessage(), '', '', $err_url); + } + + $num_rows = count($shp->records); + // If .dbf file is loaded, the number of extra data columns + $num_data_cols = isset($shp->DBFHeader) ? count($shp->DBFHeader) : 0; + + $rows = array(); + $col_names = array(); + if ($num_rows != 0) { + foreach($shp->records as $record){ + $tempRow = array(); + if ($gis_obj == null) { + $tempRow[] = null; + } else { + $tempRow[] = "GeomFromText('" . $gis_obj->getShape($record->SHPData) . "')"; + } + + if (isset($shp->DBFHeader)) { + foreach ($shp->DBFHeader as $c) { + $cell = trim($record->DBFData[$c[0]]); + + if (! strcmp($cell, '')) { + $cell = 'NULL'; + } + + $tempRow[] = $cell; + } + } + $rows[] = $tempRow; + } + } + + // Column names for spatial column and the rest of the columns, if they are available + $col_names[] = 'SPATIAL'; + for ($n = 0; $n < $num_data_cols; $n++) { + $col_names[] = $shp->DBFHeader[$n][0]; + } + + // Set table name based on the number of tables + if (strlen($db)) { + $result = PMA_DBI_fetch_result('SHOW TABLES'); + $table_name = 'TABLE '.(count($result) + 1); + } else { + $table_name = 'TBL_NAME'; + } + $tables = array(array($table_name, $col_names, $rows)); + + // Use data from shape file to chose best-fit MySQL types for each column + $analyses = array(); + $analyses[] = PMA_analyzeTable($tables[0]); + + $table_no = 0; $spatial_col = 0; + $analyses[$table_no][TYPES][$spatial_col] = GEOMETRY; + $analyses[$table_no][FORMATTEDSQL][$spatial_col] = true; + + // Set database name to the currently selected one, if applicable + if (strlen($db)) { + $db_name = $db; + $options = array('create_db' => false); + } else { + $db_name = 'SHP_DB'; + $options = null; + } + + // Created and execute necessary SQL statements from data + $null_param = null; + PMA_buildSQL($db_name, $tables, $analyses, $null_param, $options); + + unset($tables); + unset($analyses); + + $finished = true; + $error = false; + + // Commit any possible data in buffers + PMA_importRunQuery(); +} +?> From ae88c2e758de107313e8a8cfaa192c42984a9fb8 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 3 Jul 2011 22:14:14 +0530 Subject: [PATCH 007/442] Tabs replaced with spaces --- libraries/import.lib.php | 332 +++++++++++++++++++-------------------- 1 file changed, 166 insertions(+), 166 deletions(-) diff --git a/libraries/import.lib.php b/libraries/import.lib.php index ba2995bdf5..5cc5b01559 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -337,35 +337,35 @@ function PMA_importGetNextChunk($size = 32768) */ function PMA_getColumnAlphaName($num) { - $A = 65; // ASCII value for capital "A" - $col_name = ""; + $A = 65; // ASCII value for capital "A" + $col_name = ""; - if ($num > 26) { - $div = (int)($num / 26); - $remain = (int)($num % 26); + if ($num > 26) { + $div = (int)($num / 26); + $remain = (int)($num % 26); - // subtract 1 of divided value in case the modulus is 0, - // this is necessary because A-Z has no 'zero' - if ($remain == 0) { - $div--; - } + // subtract 1 of divided value in case the modulus is 0, + // this is necessary because A-Z has no 'zero' + if ($remain == 0) { + $div--; + } - // recursive function call - $col_name = PMA_getColumnAlphaName($div); - // use modulus as new column number - $num = $remain; - } + // recursive function call + $col_name = PMA_getColumnAlphaName($div); + // use modulus as new column number + $num = $remain; + } - if ($num == 0) { - // use 'Z' if column number is 0, - // this is necessary because A-Z has no 'zero' - $col_name .= chr(($A + 26) - 1); - } else { - // convert column number to ASCII character - $col_name .= chr(($A + $num) - 1); - } + if ($num == 0) { + // use 'Z' if column number is 0, + // this is necessary because A-Z has no 'zero' + $col_name .= chr(($A + 26) - 1); + } else { + // convert column number to ASCII character + $col_name .= chr(($A + $num) - 1); + } - return $col_name; + return $col_name; } /** @@ -388,19 +388,19 @@ function PMA_getColumnNumberFromName($name) { $num_chars = strlen($name); $column_number = 0; for ($i = 0; $i < $num_chars; ++$i) { - // read string from back to front - $char_pos = ($num_chars - 1) - $i; + // read string from back to front + $char_pos = ($num_chars - 1) - $i; - // convert capital character to ASCII value - // and subtract 64 to get corresponding decimal value - // ASCII value of "A" is 65, "B" is 66, etc. - // Decimal equivalent of "A" is 1, "B" is 2, etc. - $number = (ord($name[$char_pos]) - 64); + // convert capital character to ASCII value + // and subtract 64 to get corresponding decimal value + // ASCII value of "A" is 65, "B" is 66, etc. + // Decimal equivalent of "A" is 1, "B" is 2, etc. + $number = (ord($name[$char_pos]) - 64); - // base26 to base10 conversion : multiply each number - // with corresponding value of the position, in this case - // $i=0 : 1; $i=1 : 26; $i=2 : 676; ... - $column_number += $number * pow(26,$i); + // base26 to base10 conversion : multiply each number + // with corresponding value of the position, in this case + // $i=0 : 1; $i=1 : 26; $i=2 : 676; ... + $column_number += $number * pow(26,$i); } return $column_number; } else { @@ -458,7 +458,7 @@ function PMA_getM($last_cumulative_size) { * @return int Scale of the given decimal size notation */ function PMA_getD($last_cumulative_size) { - return (int)substr($last_cumulative_size, (strpos($last_cumulative_size, ",") + 1), (strlen($last_cumulative_size) - strpos($last_cumulative_size, ","))); + return (int)substr($last_cumulative_size, (strpos($last_cumulative_size, ",") + 1), (strlen($last_cumulative_size) - strpos($last_cumulative_size, ","))); } /** @@ -496,7 +496,7 @@ function PMA_getDecimalSize(&$cell) { * @return string Size of the given cell in the type-appropriate format */ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type, &$cell) { - $curr_size = strlen((string)$cell); + $curr_size = strlen((string)$cell); /** * If the cell is NULL, don't treat it as a varchar @@ -507,17 +507,17 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type /** * What to do if the current cell is of type VARCHAR */ - elseif ($curr_type == VARCHAR) { + elseif ($curr_type == VARCHAR) { /** * The last cumulative type was VARCHAR */ - if ($last_cumulative_type == VARCHAR) { - if ($curr_size >= $last_cumulative_size) { - return $curr_size; + if ($last_cumulative_type == VARCHAR) { + if ($curr_size >= $last_cumulative_size) { + return $curr_size; } else { - return $last_cumulative_size; + return $last_cumulative_size; } - } + } /** * The last cumulative type was DECIMAL */ @@ -529,7 +529,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type } else { return $oldM; } - } + } /** * The last cumulative type was BIGINT or INT */ @@ -539,7 +539,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type } else { return $last_cumulative_size; } - } + } /** * This is the first row to be analyzed */ @@ -556,7 +556,7 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type return -1; } - } + } /** * What to do if the current cell is of type DECIMAL */ @@ -564,66 +564,66 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type /** * The last cumulative type was VARCHAR */ - if ($last_cumulative_type == VARCHAR) { + if ($last_cumulative_type == VARCHAR) { /* Convert $last_cumulative_size from varchar to decimal format */ - $size = PMA_getDecimalSize($cell); + $size = PMA_getDecimalSize($cell); - if ($size[M] >= $last_cumulative_size) { - return $size[M]; + if ($size[M] >= $last_cumulative_size) { + return $size[M]; } else { - return $last_cumulative_size; + return $last_cumulative_size; } - } + } /** * The last cumulative type was DECIMAL */ elseif ($last_cumulative_type == DECIMAL) { - $size = PMA_getDecimalSize($cell); + $size = PMA_getDecimalSize($cell); - $oldM = PMA_getM($last_cumulative_size); - $oldD = PMA_getD($last_cumulative_size); + $oldM = PMA_getM($last_cumulative_size); + $oldD = PMA_getD($last_cumulative_size); - /* New val if M or D is greater than current largest */ - if ($size[M] > $oldM || $size[D] > $oldD) { - /* Take the largest of both types */ - return (string)((($size[M] > $oldM) ? $size[M] : $oldM) . "," . (($size[D] > $oldD) ? $size[D] : $oldD)); + /* New val if M or D is greater than current largest */ + if ($size[M] > $oldM || $size[D] > $oldD) { + /* Take the largest of both types */ + return (string)((($size[M] > $oldM) ? $size[M] : $oldM) . "," . (($size[D] > $oldD) ? $size[D] : $oldD)); } else { - return $last_cumulative_size; + return $last_cumulative_size; } - } + } /** * The last cumulative type was BIGINT or INT */ elseif ($last_cumulative_type == BIGINT || $last_cumulative_type == INT) { - /* Convert $last_cumulative_size from int to decimal format */ - $size = PMA_getDecimalSize($cell); + /* Convert $last_cumulative_size from int to decimal format */ + $size = PMA_getDecimalSize($cell); - if ($size[M] >= $last_cumulative_size) { - return $size[FULL]; + if ($size[M] >= $last_cumulative_size) { + return $size[FULL]; } else { - return ($last_cumulative_size.",".$size[D]); + return ($last_cumulative_size.",".$size[D]); } - } + } /** * This is the first row to be analyzed */ elseif (! isset($last_cumulative_type) || $last_cumulative_type == NONE) { /* First row of the column */ - $size = PMA_getDecimalSize($cell); + $size = PMA_getDecimalSize($cell); - return $size[FULL]; - } + return $size[FULL]; + } /** * An error has DEFINITELY occurred */ - else { + else { /** * TODO: Handle this MUCH more elegantly */ return -1; } - } + } /** * What to do if the current cell is of type BIGINT or INT */ @@ -631,41 +631,41 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type /** * The last cumulative type was VARCHAR */ - if ($last_cumulative_type == VARCHAR) { - if ($curr_size >= $last_cumulative_size) { - return $curr_size; + if ($last_cumulative_type == VARCHAR) { + if ($curr_size >= $last_cumulative_size) { + return $curr_size; } else { - return $last_cumulative_size; + return $last_cumulative_size; } - } + } /** * The last cumulative type was DECIMAL */ elseif ($last_cumulative_type == DECIMAL) { $oldM = PMA_getM($last_cumulative_size); - $oldD = PMA_getD($last_cumulative_size); - $oldInt = $oldM - $oldD; - $newInt = strlen((string)$cell); + $oldD = PMA_getD($last_cumulative_size); + $oldInt = $oldM - $oldD; + $newInt = strlen((string)$cell); - /* See which has the larger integer length */ - if ($oldInt >= $newInt) { - /* Use old decimal size */ - return $last_cumulative_size; + /* See which has the larger integer length */ + if ($oldInt >= $newInt) { + /* Use old decimal size */ + return $last_cumulative_size; } else { - /* Use $newInt + $oldD as new M */ - return (($newInt + $oldD) . "," . $oldD); + /* Use $newInt + $oldD as new M */ + return (($newInt + $oldD) . "," . $oldD); } - } + } /** * The last cumulative type was BIGINT or INT */ elseif ($last_cumulative_type == BIGINT || $last_cumulative_type == INT) { - if ($curr_size >= $last_cumulative_size) { - return $curr_size; + if ($curr_size >= $last_cumulative_size) { + return $curr_size; } else { - return $last_cumulative_size; + return $last_cumulative_size; } - } + } /** * This is the first row to be analyzed */ @@ -675,18 +675,18 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type /** * An error has DEFINITELY occurred */ - else { + else { /** * TODO: Handle this MUCH more elegantly */ return -1; } - } + } /** * An error has DEFINITELY occurred */ - else { + else { /** * TODO: Handle this MUCH more elegantly */ @@ -721,11 +721,11 @@ function PMA_detectType($last_cumulative_type, &$cell) { if ($cell == (string)(float)$cell && strpos($cell, ".") !== false && substr_count($cell, ".") == 1) { return DECIMAL; } else { - if (abs($cell) > 2147483647) { - return BIGINT; - } else { - return INT; - } + if (abs($cell) > 2147483647) { + return BIGINT; + } else { + return INT; + } } } else { return VARCHAR; @@ -746,62 +746,62 @@ function PMA_detectType($last_cumulative_type, &$cell) { * @return array array(array $types, array $sizes) */ function PMA_analyzeTable(&$table) { - /* Get number of rows in table */ - $numRows = count($table[ROWS]); - /* Get number of columns */ - $numCols = count($table[COL_NAMES]); - /* Current type for each column */ - $types = array(); - $sizes = array(); + /* Get number of rows in table */ + $numRows = count($table[ROWS]); + /* Get number of columns */ + $numCols = count($table[COL_NAMES]); + /* Current type for each column */ + $types = array(); + $sizes = array(); - /* Initialize $sizes to all 0's */ - for ($i = 0; $i < $numCols; ++$i) { - $sizes[$i] = 0; - } + /* Initialize $sizes to all 0's */ + for ($i = 0; $i < $numCols; ++$i) { + $sizes[$i] = 0; + } /* Initialize $types to NONE */ for ($i = 0; $i < $numCols; ++$i) { $types[$i] = NONE; } - /* Temp vars */ - $curr_type = NONE; - $curr_size = 0; + /* Temp vars */ + $curr_type = NONE; + $curr_size = 0; - /* If the passed array is not of the correct form, do not process it */ - if (is_array($table) && ! is_array($table[TBL_NAME]) && is_array($table[COL_NAMES]) && is_array($table[ROWS])) { - /* Analyze each column */ - for ($i = 0; $i < $numCols; ++$i) { - /* Analyze the column in each row */ - for ($j = 0; $j < $numRows; ++$j) { - /* Determine type of the current cell */ - $curr_type = PMA_detectType($types[$i], $table[ROWS][$j][$i]); - /* Determine size of the current cell */ - $sizes[$i] = PMA_detectSize($sizes[$i], $types[$i], $curr_type, $table[ROWS][$j][$i]); + /* If the passed array is not of the correct form, do not process it */ + if (is_array($table) && ! is_array($table[TBL_NAME]) && is_array($table[COL_NAMES]) && is_array($table[ROWS])) { + /* Analyze each column */ + for ($i = 0; $i < $numCols; ++$i) { + /* Analyze the column in each row */ + for ($j = 0; $j < $numRows; ++$j) { + /* Determine type of the current cell */ + $curr_type = PMA_detectType($types[$i], $table[ROWS][$j][$i]); + /* Determine size of the current cell */ + $sizes[$i] = PMA_detectSize($sizes[$i], $types[$i], $curr_type, $table[ROWS][$j][$i]); - /** - * If a type for this column has already been declared, - * only alter it if it was a number and a varchar was found - */ - if ($curr_type != NONE) { - if ($curr_type == VARCHAR) { - $types[$i] = VARCHAR; - } else if ($curr_type == DECIMAL) { - if ($types[$i] != VARCHAR) { - $types[$i] = DECIMAL; - } - } else if ($curr_type == BIGINT) { - if ($types[$i] != VARCHAR && $types[$i] != DECIMAL) { - $types[$i] = BIGINT; - } - } else if ($curr_type == INT) { - if ($types[$i] != VARCHAR && $types[$i] != DECIMAL && $types[$i] != BIGINT) { - $types[$i] = INT; - } - } - } - } - } + /** + * If a type for this column has already been declared, + * only alter it if it was a number and a varchar was found + */ + if ($curr_type != NONE) { + if ($curr_type == VARCHAR) { + $types[$i] = VARCHAR; + } else if ($curr_type == DECIMAL) { + if ($types[$i] != VARCHAR) { + $types[$i] = DECIMAL; + } + } else if ($curr_type == BIGINT) { + if ($types[$i] != VARCHAR && $types[$i] != DECIMAL) { + $types[$i] = BIGINT; + } + } else if ($curr_type == INT) { + if ($types[$i] != VARCHAR && $types[$i] != DECIMAL && $types[$i] != BIGINT) { + $types[$i] = INT; + } + } + } + } + } /* Check to ensure that all types are valid */ $len = count($types); @@ -812,16 +812,16 @@ function PMA_analyzeTable(&$table) { } } - return array($types, $sizes); - } - else - { + return array($types, $sizes); + } + else + { /** * TODO: Handle this better */ - return false; - } + return false; + } } /* Needed to quell the beast that is PMA_Message */ @@ -957,10 +957,10 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql = * * Only one insert query is formed for each table */ - $tempSQLStr = ""; - $col_count = 0; + $tempSQLStr = ""; + $col_count = 0; $num_tables = count($tables); - for ($i = 0; $i < $num_tables; ++$i) { + for ($i = 0; $i < $num_tables; ++$i) { $num_cols = count($tables[$i][COL_NAMES]); $num_rows = count($tables[$i][ROWS]); @@ -976,7 +976,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql = $tempSQLStr .= ") VALUES "; - for ($j = 0; $j < $num_rows; ++$j) { + for ($j = 0; $j < $num_rows; ++$j) { $tempSQLStr .= "("; for ($k = 0; $k < $num_cols; ++$k) { @@ -1003,19 +1003,19 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql = $tempSQLStr .= (($is_varchar) ? "'" : ""); } - if ($k != ($num_cols - 1)) { - $tempSQLStr .= ", "; + if ($k != ($num_cols - 1)) { + $tempSQLStr .= ", "; } - if ($col_count == ($num_cols - 1)) { - $col_count = 0; - } else { - $col_count++; + if ($col_count == ($num_cols - 1)) { + $col_count = 0; + } else { + $col_count++; } /* Delete the cell after we are done with it */ unset($tables[$i][ROWS][$j][$k]); - } + } $tempSQLStr .= ")"; @@ -1023,10 +1023,10 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql = $tempSQLStr .= ",\n "; } - $col_count = 0; + $col_count = 0; /* Delete the row after we are done with it */ unset($tables[$i][ROWS][$j]); - } + } $tempSQLStr .= ";"; @@ -1036,7 +1036,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql = * to store them in a (possibly large) buffer */ PMA_importRunQuery($tempSQLStr, $tempSQLStr); - } + } /* No longer needed */ unset($tempSQLStr); From cfeb031d1f8d7c31cb3fdf6b376ba7b7ea757a59 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 3 Jul 2011 22:36:34 +0530 Subject: [PATCH 008/442] A polygon needs to have atleast 4 points. --- gis_data_editor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index 37d46c5f7d..21cafc8cdd 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -178,8 +178,8 @@ if(isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) { if ($type == 'MULTILINESTRING' && $no_of_points < 2) { $no_of_points = 2; } - if ($type == 'POLYGON' && $no_of_points < 3) { - $no_of_points = 3; + if ($type == 'POLYGON' && $no_of_points < 4) { + $no_of_points = 4; } if (isset($gis_data[$a][$type][$i]['add_point'])) { $no_of_points++; From 93ab68dd131616369dccd0a6a62ff5f1a1a710d2 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 3 Jul 2011 22:41:52 +0530 Subject: [PATCH 009/442] A polygon needs to have atleast 4 points - more instances --- gis_data_editor.php | 4 ++-- libraries/gis/pma_gis_multipolygon.php | 4 ++-- libraries/gis/pma_gis_polygon.php | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index 21cafc8cdd..3fd077256d 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -228,8 +228,8 @@ if(isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) { } $no_of_points = isset($gis_data[$a][$type][$k][$i]['no_of_points']) ? $gis_data[$a][$type][$k][$i]['no_of_points'] : 3; - if ($no_of_points < 3) { - $no_of_points = 3; + if ($no_of_points < 4) { + $no_of_points = 4; } if (isset($gis_data[$a][$type][$k][$i]['add_point'])) { $no_of_points++; diff --git a/libraries/gis/pma_gis_multipolygon.php b/libraries/gis/pma_gis_multipolygon.php index 03be3bc3c6..d9aeec67f6 100644 --- a/libraries/gis/pma_gis_multipolygon.php +++ b/libraries/gis/pma_gis_multipolygon.php @@ -338,8 +338,8 @@ class PMA_GIS_Multipolygon extends PMA_GIS_Geometry for ($i = 0; $i < $no_of_lines; $i++) { $no_of_points = isset($gis_data[$index]['MULTIPOLYGON'][$k][$i]['no_of_points']) ? $gis_data[$index]['MULTIPOLYGON'][$k][$i]['no_of_points'] : 3; - if ($no_of_points < 3) { - $no_of_points = 3; + if ($no_of_points < 4) { + $no_of_points = 4; } $wkt .= '('; for ($j = 0; $j < $no_of_points; $j++) { diff --git a/libraries/gis/pma_gis_polygon.php b/libraries/gis/pma_gis_polygon.php index 3bef784e5c..0098ee62ee 100644 --- a/libraries/gis/pma_gis_polygon.php +++ b/libraries/gis/pma_gis_polygon.php @@ -306,8 +306,8 @@ class PMA_GIS_Polygon extends PMA_GIS_Geometry for ($i = 0; $i < $no_of_lines; $i++) { $no_of_points = isset($gis_data[$index]['POLYGON'][$i]['no_of_points']) ? $gis_data[$index]['POLYGON'][$i]['no_of_points'] : 3; - if ($no_of_points < 3) { - $no_of_points = 3; + if ($no_of_points < 4) { + $no_of_points = 4; } $wkt .= '('; for ($j = 0; $j < $no_of_points; $j++) { From 4d111205b1dfb1ef220b052f8ba96b8b1c47af0d Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 3 Jul 2011 22:46:48 +0530 Subject: [PATCH 010/442] A polygon needs to have atleast 4 points - more instances --- gis_data_editor.php | 2 +- libraries/gis/pma_gis_multipolygon.php | 2 +- libraries/gis/pma_gis_polygon.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index 3fd077256d..3bc74847a7 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -227,7 +227,7 @@ if(isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) { 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'] : 3; + $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; } diff --git a/libraries/gis/pma_gis_multipolygon.php b/libraries/gis/pma_gis_multipolygon.php index d9aeec67f6..96c144374c 100644 --- a/libraries/gis/pma_gis_multipolygon.php +++ b/libraries/gis/pma_gis_multipolygon.php @@ -337,7 +337,7 @@ class PMA_GIS_Multipolygon extends PMA_GIS_Geometry $wkt .= '('; for ($i = 0; $i < $no_of_lines; $i++) { $no_of_points = isset($gis_data[$index]['MULTIPOLYGON'][$k][$i]['no_of_points']) - ? $gis_data[$index]['MULTIPOLYGON'][$k][$i]['no_of_points'] : 3; + ? $gis_data[$index]['MULTIPOLYGON'][$k][$i]['no_of_points'] : 4; if ($no_of_points < 4) { $no_of_points = 4; } diff --git a/libraries/gis/pma_gis_polygon.php b/libraries/gis/pma_gis_polygon.php index 0098ee62ee..239e219b65 100644 --- a/libraries/gis/pma_gis_polygon.php +++ b/libraries/gis/pma_gis_polygon.php @@ -305,7 +305,7 @@ class PMA_GIS_Polygon extends PMA_GIS_Geometry $wkt = 'POLYGON('; for ($i = 0; $i < $no_of_lines; $i++) { $no_of_points = isset($gis_data[$index]['POLYGON'][$i]['no_of_points']) - ? $gis_data[$index]['POLYGON'][$i]['no_of_points'] : 3; + ? $gis_data[$index]['POLYGON'][$i]['no_of_points'] : 4; if ($no_of_points < 4) { $no_of_points = 4; } From 5a1018fc43c63c12c8ba8787e83ce4d48f91ff6e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 3 Jul 2011 23:56:47 +0530 Subject: [PATCH 011/442] Increase memory limit and time limit --- libraries/import/shp.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index 77d9f09ecc..73cc0c4f3d 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -18,6 +18,9 @@ if (isset($plugin_list)) { ); } else { + ini_set('memory_limit', '128M'); + set_time_limit(120); + // Append the bfShapeFiles directory to the include path variable set_include_path(get_include_path() . PATH_SEPARATOR . getcwd() . '/libraries/bfShapeFiles/'); require_once './libraries/bfShapeFiles/ShapeFile.lib.php'; From c6a8098239bac87d105525173e14cf1d1cbc0afa Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Mon, 4 Jul 2011 00:31:24 +0530 Subject: [PATCH 012/442] Typo --- libraries/import/shp.php | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index 73cc0c4f3d..e6f97e0635 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -30,8 +30,8 @@ if (isset($plugin_list)) { $eof = false; // Returns specified number of bytes from the buffer. - // Buffer automatically fetch next chunk of data when the buffer falls short. - // Sets $eof when $GLOBALS['finished'] is set and the buffer is falls short. + // Buffer automatically fetches next chunk of data when the buffer falls short. + // Sets $eof when $GLOBALS['finished'] is set and the buffer falls short. function readFromBuffer($length){ global $buffer, $eof; @@ -48,10 +48,10 @@ if (isset($plugin_list)) { } /** - * This class extends from ShapeFile class to cater following phpMyAdmin specific requirements. - * 1) To loads data from .dbf file only when the dBase extension is availble. + * This class extends ShapeFile class to cater following phpMyAdmin specific requirements. + * 1) To load data from .dbf file only when the dBase extension is available. * 2) To use PMA_importGetNextChunk() functionality to read data, rather than reading directly from a file. - * Using readFromBuffer() inplace of fread(). This makes it possible to use compressions. + * Using readFromBuffer() in place of fread(). This makes it possible to use compressions. */ class PMA_ShapeFile extends ShapeFile { @@ -108,10 +108,10 @@ if (isset($plugin_list)) { } /** - * This class extends from ShapeRecord class to cater following phpMyAdmin specific requirements. - * 1) To loads data from .dbf file only when the dBase extension is availble. + * This class extends ShapeRecord class to cater following phpMyAdmin specific requirements. + * 1) To load data from .dbf file only when the dBase extension is available. * 2) To use PMA_importGetNextChunk() functionality to read data, rather than reading directly from a file. - * Using readFromBuffer() inplace of fread(). This makes it possible to use compressions. + * Using readFromBuffer() in place of fread(). This makes it possible to use compressions. */ class PMA_ShapeRecord extends ShapeRecord { @@ -237,33 +237,33 @@ if (isset($plugin_list)) { require_once './libraries/gis/pma_gis_geometry.php'; switch ($shp->shapeType) { - // Esri Null Shape + // ESRI Null Shape case 0: $gis_obj = null; break; - // Esri Point + // ESRI Point case 1: require_once './libraries/gis/pma_gis_point.php'; $gis_obj = PMA_GIS_Point::singleton(); break; - // Esri PolyLine + // ESRI PolyLine case 3: require_once './libraries/gis/pma_gis_multilinestring.php'; $gis_obj = PMA_GIS_Multilinestring::singleton(); break; - // Esri Polygon + // ESRI Polygon case 5: require_once './libraries/gis/pma_gis_multipolygon.php'; $gis_obj = PMA_GIS_Multipolygon::singleton(); break; - // Esri MultiPoint + // ESRI MultiPoint case 8: require_once './libraries/gis/pma_gis_multipoint.php'; $gis_obj = PMA_GIS_Multipoint::singleton(); break; default: $error = true; - $err = PMA_Message::error(__('MySQL Spatial Extention does not support ESRI type "%s".')); + $err = PMA_Message::error(__('MySQL Spatial Extension does not support ESRI type "%s".')); $param = isset($esri_types[$shp->shapeType]) ? $esri_types[$shp->shapeType] : __('Unkown Type'); $err->addParam($param); PMA_mysqlDie($err->getMessage(), '', '', $err_url); From 28519cf25befaba56aa677d38af2847c2a7febcb Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 8 Jul 2011 18:31:19 +0530 Subject: [PATCH 013/442] ESRI shape files imported from a zip archive --- libraries/import/shp.php | 35 ++++++++++++++- libraries/zip_extension.lib.php | 78 ++++++++++++++++++++++++++++++--- 2 files changed, 107 insertions(+), 6 deletions(-) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index e6f97e0635..4bfdf4d3db 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -208,16 +208,49 @@ if (isset($plugin_list)) { } $shp = new PMA_ShapeFile(1); + // If the zip archive has more than one file, get the content to the buffer from .shp file. + if ($compression == 'application/zip' && PMA_getNoOfFilesInZip($import_file) > 1) { + $zip_content = PMA_getZipContents($import_file, '/^.*\.shp$/i'); + $GLOBALS['import_text'] = $zip_content['data']; + } + + // We need dbase extension to handle .dbf file if (extension_loaded('dbase')) { + // If we can extract the zip archive to 'TempDir' and use the files in it for import + if ($compression == 'application/zip' + && ! empty($cfg['TempDir']) + && is_writable($cfg['TempDir']) + ) { + $dbf_file_name = PMA_findFileFromZipArchive('/^.*\.dbf$/i', $import_file); + // If the corresponding .dbf file is in the zip archive + if ($dbf_file_name) { + // Extract the .dbf file and point to it. + $extracted = PMA_zipExtract($import_file, realpath($cfg['TempDir']), array($dbf_file_name)); + if ($extracted) { + $dbf_file_path = realpath($cfg['TempDir']) . '/' . $dbf_file_name; + $temp_dbf_file = true; + // Replace the .dbf with .*, as required by the bsShapeFiles library. + $file_name = substr($dbf_file_path, 0, strlen($dbf_file_path) - 4) . '.*'; + $shp->FileName = $file_name; + } + } + } // If file is in UploadDir, use .dbf file in the same UploadDir to load extra data. - if (! empty($local_import_file) && ! empty($cfg['UploadDir']) && $compression == 'none') { + elseif (! empty($local_import_file) && ! empty($cfg['UploadDir']) && $compression == 'none') { // Replace the .shp with .*, so the bsShapeFiles library correctly locates .dbf file. $file_name = substr($import_file, 0, strlen($import_file) - 4) . '.*'; $shp->FileName = $file_name; } } + + // Load data $shp->loadFromFile(''); + // Delete the .dbf file extracted to 'TempDir' + if ($temp_dbf_file) { + unlink($dbf_file_path); + } + $esri_types = array( 0 => 'Null Shape', 1 => 'Point', diff --git a/libraries/zip_extension.lib.php b/libraries/zip_extension.lib.php index 05279118e1..3153a962c3 100644 --- a/libraries/zip_extension.lib.php +++ b/libraries/zip_extension.lib.php @@ -10,11 +10,12 @@ * Gets zip file contents * * @param string $file + * @param string $specific_entry regular expression to match a file * @return array ($error_message, $file_data); $error_message * is empty if no error */ -function PMA_getZipContents($file) +function PMA_getZipContents($file, $specific_entry = null) { $error_message = ''; $file_data = ''; @@ -28,11 +29,15 @@ function PMA_getZipContents($file) $read = zip_entry_read($first_zip_entry); $ods_mime = 'application/vnd.oasis.opendocument.spreadsheet'; if (!strcmp($ods_mime, $read)) { + $specific_entry = '/^content\.xml$/'; + } + + if (isset($specific_entry)) { /* Return the correct contents, not just the first entry */ for ( ; ; ) { $entry = zip_read($zip_handle); if (is_resource($entry)) { - if (!strcmp('content.xml', zip_entry_name($entry))) { + if (preg_match($specific_entry, zip_entry_name($entry))) { zip_entry_open($zip_handle, $entry, 'r'); $file_data = zip_entry_read($entry, zip_entry_filesize($entry)); zip_entry_close($entry); @@ -41,15 +46,15 @@ function PMA_getZipContents($file) } else { /** * Either we have reached the end of the zip and still - * haven't found 'content.xml' or there was a parsing + * haven't found $specific_entry or there was a parsing * error that we must display */ if ($entry === false) { - $error_message = __('Error in ZIP archive:') . ' Could not find "content.xml"'; + $error_message = __('Error in ZIP archive:') . ' Could not find "' . $specific_entry . '"'; } else { $error_message = __('Error in ZIP archive:') . ' ' . PMA_getZipError($zip_handle); } - + break; } } @@ -68,6 +73,69 @@ function PMA_getZipContents($file) return (array('error' => $error_message, 'data' => $file_data)); } +/** + * Returns the file name of the first file that matches the given $file_regexp. + * + * @param string $file_regexp regular expression for the file name to match + * @param string $file zip archive + */ +function PMA_findFileFromZipArchive ($file_regexp, $file) +{ + $zip_handle = zip_open($file); + $found = false; + if (is_resource($zip_handle)) { + $entry = zip_read($zip_handle); + while (is_resource($entry)) { + if (preg_match($file_regexp, zip_entry_name($entry))) { + $file_name = zip_entry_name($entry); + zip_close($zip_handle); + return $file_name; + } + $entry = zip_read($zip_handle); + } + } + zip_close($zip_handle); + return false; +} + +/** + * Returns the number of files in the zip archive. + * + * @param string $file + */ +function PMA_getNoOfFilesInZip($file) +{ + $count = 0; + $zip_handle = zip_open($file); + $found = false; + if (is_resource($zip_handle)) { + $entry = zip_read($zip_handle); + while (is_resource($entry)) { + $count++; + $entry = zip_read($zip_handle); + } + } + zip_close($zip_handle); + return $count; +} + +/** + * Extracts a set of files from the given zip archive to a given destinations. + * + * @param string $zip_path + * @param string $destination + * @param array $entries + */ +function PMA_zipExtract($zip_path, $destination, $entries) { + $zip = new ZipArchive; + if ($zip->open($zip_path) === true) { + $zip->extractTo($destination, $entries); + $zip->close(); + return true; + } + return false; +} + /** * Gets zip error message * From a58bb10e1839d0740cb634112f36462d52d4ac6f Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 8 Jul 2011 18:32:35 +0530 Subject: [PATCH 014/442] Correctly import multipolygons from ESRI shape files --- libraries/gis/pma_gis_multipolygon.php | 110 ++++++++++++++++++++++++- libraries/gis/pma_gis_polygon.php | 94 +++++++++++++++++++++ libraries/import/shp.php | 11 ++- 3 files changed, 210 insertions(+), 5 deletions(-) diff --git a/libraries/gis/pma_gis_multipolygon.php b/libraries/gis/pma_gis_multipolygon.php index 96c144374c..31b9ce5729 100644 --- a/libraries/gis/pma_gis_multipolygon.php +++ b/libraries/gis/pma_gis_multipolygon.php @@ -359,7 +359,115 @@ class PMA_GIS_Multipolygon extends PMA_GIS_Geometry return $wkt; } - /** Generate parameters for the GIS data editor from the value of the GIS column. + /** + * Generate the WKT for the data from ESRI shape files. + * + * @param array $row_data GIS data + * + * @return the WKT for the data from ESRI shape files + */ + public function getShape($row_data) + { + // Determines whether each line ring is an inner ring or an outer ring. + // If it's an inner ring get a point on the surface which can be used to + // correctly classify inner rings to their respective outer rings. + require_once './libraries/gis/pma_gis_polygon.php'; + foreach ($row_data['parts'] as $i => $ring) { + $row_data['parts'][$i]['isOuter'] = PMA_GIS_Polygon::isOuterRing($ring['points']); + } + + $this->getPointsOnSurface($row_data['parts']); + + // Classify inner rings to their respective outer rings. + foreach ($row_data['parts'] as $j => $ring1) { + if (! $ring1['isOuter']) { + foreach ($row_data['parts'] as $k => $ring2) { + if ($ring2['isOuter']) { + // If the pointOnSurface of the inner ring is also inside the outer ring + if (PMA_GIS_Polygon::isPointInsidePolygon($ring1['pointOnSurface'], $ring2['points'])) { + if (! isset($ring2['inner'])) { + $row_data['parts'][$k]['inner'] = array(); + } + $row_data['parts'][$k]['inner'][] = $j; + } + } + } + } + } + + $wkt = 'MULTIPOLYGON('; + // for each polygon + foreach ($row_data['parts'] as $ring) { + if ($ring['isOuter']) { + $wkt .= '('; // start of polygon + + $wkt .= '('; // start of outer ring + foreach($ring['points'] as $point) { + $wkt .= $point['x'] . ' ' . $point['y'] . ','; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= ')'; // end of outer ring + + // inner rings if any + if (isset($ring['inner'])) { + foreach ($ring['inner'] as $j) { + $wkt .= ',('; // start of inner ring + foreach ($row_data['parts'][$j]['points'] as $innerPoint) { + $wkt .= $innerPoint['x'] . ' ' . $innerPoint['y'] . ','; + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + $wkt .= ')'; // end of inner ring + } + } + + $wkt .= '),'; // end of polygon + } + } + $wkt = substr($wkt, 0, strlen($wkt) - 1); + + $wkt .= ')'; // end of multipolygon + return $wkt; + } + + /** + * Attach to each ring a point on its surface. + * + * @param array $rings + */ + private function getPointsOnSurface(&$rings) + { + $sql = 'SELECT '; + $inner_rings = false; + + foreach ($rings as $i => $ring) { + if (! $ring['isOuter']) { + $inner_rings = true; + // gis_data[0]['MULTIPOLYGON'][0][0] will have $ring + $gis_data = array(array('MULTIPOLYGON' => array(array($ring['points'])))); + $gis_data[0]['MULTIPOLYGON'][0][0]['no_of_points'] = count($ring['points']); + $geom = $this->generateWkt($gis_data, 0); + $sql .= 'AsText(PointOnSurface(GeomFromText("' . $geom . '"))) as `P' . $i . '`, '; + } + } + if (! $inner_rings) { + return; + } + + $sql = substr($sql, 0, strlen($sql) - 2); + $result = PMA_DBI_fetch_result($sql); + + require_once './libraries/gis/pma_gis_point.php'; + $point = PMA_GIS_Point::singleton(); + foreach ($rings as $i => $ring) { + if (! $ring['isOuter']) { + $param = $point->generateParams($result[0]['P' . $i], 0); + $rings[$i]['pointOnSurface'] = $param[0]['POINT']; + } + } + } + + /** + * Generate parameters for the GIS data editor from the value of the GIS column. * * @param string $value of the GIS column * @param index $index of the geometry diff --git a/libraries/gis/pma_gis_polygon.php b/libraries/gis/pma_gis_polygon.php index 239e219b65..f1c051ec40 100644 --- a/libraries/gis/pma_gis_polygon.php +++ b/libraries/gis/pma_gis_polygon.php @@ -324,6 +324,100 @@ class PMA_GIS_Polygon extends PMA_GIS_Geometry return $wkt; } + /** + * Calculates the area of a closed simple polygon. + * + * @param array $ring array of points forming the ring + * + * @return the area of a closed simple polygon. + */ + public static function area($ring) { + + $no_of_points = count($ring); + + // If the last point is same as the first point ignore it + $last = count($ring) - 1; + if (($ring[0]['x'] == $ring[$last]['x']) && ($ring[0]['y'] == $ring[$last]['y'])) { + $no_of_points--; + } + + // _n-1 + // A = _1_ \ (X(i) * Y(i+1)) - (Y(i) * X(i+1)) + // 2 /__ + // i=0 + $area = 0; + for ($i = 0; $i < $no_of_points; $i++) { + $j = ($i + 1) % $no_of_points; + $area += $ring[$i]['x'] * $ring[$j]['y']; + $area -= $ring[$i]['y'] * $ring[$j]['x']; + } + $area /= 2.0; + + return $area; + } + + /** + * Determines whether a set of points represents an outer ring. + * If points are in clockwise orientation then, they form an outer ring. + * + * @param array $ring array of points forming the ring + * + * @return whether a set of points represents an outer ring. + */ + public static function isOuterRing($ring) + { + // If area is negative then it's in clockwise orientation, i.e. it's an outer ring + if (PMA_GIS_Polygon::area($ring) < 0) { + return true; + } + return false; + } + + /** + * Determines whether a given point is inside a given polygon. + * + * @param array $point x, y coordinates of the point + * @param array $ring array of points forming the ring + * + * @return whether a given point is inside a given polygon + */ + public static function isPointInsidePolygon($point, $polygon) + { + // If first point is repeated at the end remove it + $last = count($polygon) - 1; + if (($polygon[0]['x'] == $polygon[$last]['x']) && ($polygon[0]['y'] == $polygon[$last]['y'])) { + $polygon = array_slice($polygon, 0, $last); + } + + $no_of_points = count($polygon); + $counter = 0; + + // Use ray casting algorithm + $p1 = $polygon[0]; + for ($i = 1; $i <= $no_of_points; $i++) { + $p2 = $polygon[$i % $no_of_points]; + if ($point['y'] > min(array($p1['y'], $p2['y']))) { + if ($point['y'] <= max(array($p1['y'], $p2['y']))) { + if ($point['x'] <= max(array($p1['x'], $p2['x']))) { + if ($p1['y'] != $p2['y']) { + $xinters = ($point['y'] - $p1['y']) * ($p2['x'] - $p1['x']) / ($p2['y'] - $p1['y']) + $p1['x']; + if ($p1['x'] == $p2['x'] || $point['x'] <= $xinters) { + $counter++; + } + } + } + } + } + $p1 = $p2; + } + + if ($counter % 2 == 0) { + return false; + } else { + return true; + } + } + /** Generate parameters for the GIS data editor from the value of the GIS column. * * @param string $value of the GIS column diff --git a/libraries/import/shp.php b/libraries/import/shp.php index 4bfdf4d3db..abee9632f2 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -18,8 +18,11 @@ if (isset($plugin_list)) { ); } else { - ini_set('memory_limit', '128M'); - set_time_limit(120); + if ((int) ini_get('memory_limit') < 512) { + ini_set('memory_limit', '512M'); + } + set_time_limit(300); + // Append the bfShapeFiles directory to the include path variable set_include_path(get_include_path() . PATH_SEPARATOR . getcwd() . '/libraries/bfShapeFiles/'); @@ -208,7 +211,7 @@ if (isset($plugin_list)) { } $shp = new PMA_ShapeFile(1); - // If the zip archive has more than one file, get the content to the buffer from .shp file. + // If the zip archive has more than one file, get the correct content to the buffer from .shp file. if ($compression == 'application/zip' && PMA_getNoOfFilesInZip($import_file) > 1) { $zip_content = PMA_getZipContents($import_file, '/^.*\.shp$/i'); $GLOBALS['import_text'] = $zip_content['data']; @@ -227,7 +230,7 @@ if (isset($plugin_list)) { // Extract the .dbf file and point to it. $extracted = PMA_zipExtract($import_file, realpath($cfg['TempDir']), array($dbf_file_name)); if ($extracted) { - $dbf_file_path = realpath($cfg['TempDir']) . '/' . $dbf_file_name; + $dbf_file_path = realpath($cfg['TempDir']) . (PMA_IS_WINDOWS ? '\\' : '/') . $dbf_file_name; $temp_dbf_file = true; // Replace the .dbf with .*, as required by the bsShapeFiles library. $file_name = substr($dbf_file_path, 0, strlen($dbf_file_path) - 4) . '.*'; From c81db372d79bf96acc8a4a2cdb2fe7f0430b57e4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 9 Jul 2011 19:18:03 +0530 Subject: [PATCH 015/442] Manually implemented PointOnSurface() function as it is not yet implemented in MySQL --- libraries/gis/pma_gis_multipolygon.php | 44 +++----------------- libraries/gis/pma_gis_polygon.php | 57 ++++++++++++++++++++++++++ 2 files changed, 63 insertions(+), 38 deletions(-) diff --git a/libraries/gis/pma_gis_multipolygon.php b/libraries/gis/pma_gis_multipolygon.php index 31b9ce5729..4f57c1db59 100644 --- a/libraries/gis/pma_gis_multipolygon.php +++ b/libraries/gis/pma_gis_multipolygon.php @@ -376,7 +376,12 @@ class PMA_GIS_Multipolygon extends PMA_GIS_Geometry $row_data['parts'][$i]['isOuter'] = PMA_GIS_Polygon::isOuterRing($ring['points']); } - $this->getPointsOnSurface($row_data['parts']); + // Find points on surface for inner rings + foreach ($row_data['parts'] as $i => $ring) { + if (! $ring['isOuter']) { + $row_data['parts'][$i]['pointOnSurface'] = PMA_GIS_Polygon::getPointOnSurface($ring['points']); + } + } // Classify inner rings to their respective outer rings. foreach ($row_data['parts'] as $j => $ring1) { @@ -429,43 +434,6 @@ class PMA_GIS_Multipolygon extends PMA_GIS_Geometry return $wkt; } - /** - * Attach to each ring a point on its surface. - * - * @param array $rings - */ - private function getPointsOnSurface(&$rings) - { - $sql = 'SELECT '; - $inner_rings = false; - - foreach ($rings as $i => $ring) { - if (! $ring['isOuter']) { - $inner_rings = true; - // gis_data[0]['MULTIPOLYGON'][0][0] will have $ring - $gis_data = array(array('MULTIPOLYGON' => array(array($ring['points'])))); - $gis_data[0]['MULTIPOLYGON'][0][0]['no_of_points'] = count($ring['points']); - $geom = $this->generateWkt($gis_data, 0); - $sql .= 'AsText(PointOnSurface(GeomFromText("' . $geom . '"))) as `P' . $i . '`, '; - } - } - if (! $inner_rings) { - return; - } - - $sql = substr($sql, 0, strlen($sql) - 2); - $result = PMA_DBI_fetch_result($sql); - - require_once './libraries/gis/pma_gis_point.php'; - $point = PMA_GIS_Point::singleton(); - foreach ($rings as $i => $ring) { - if (! $ring['isOuter']) { - $param = $point->generateParams($result[0]['P' . $i], 0); - $rings[$i]['pointOnSurface'] = $param[0]['POINT']; - } - } - } - /** * Generate parameters for the GIS data editor from the value of the GIS column. * diff --git a/libraries/gis/pma_gis_polygon.php b/libraries/gis/pma_gis_polygon.php index f1c051ec40..19e2f53ad0 100644 --- a/libraries/gis/pma_gis_polygon.php +++ b/libraries/gis/pma_gis_polygon.php @@ -418,6 +418,63 @@ class PMA_GIS_Polygon extends PMA_GIS_Geometry } } + /** + * Returns a point that is guaranteed to be on the surface of the ring. + * (for simple closed rings) + * + * @param array $ring array of points forming the ring + */ + public static function getPointOnSurface($ring) + { + // Find two consecutive distinct points. + for ($i = 0; $i < count($ring) - 1; $i++) { + if (($ring[$i]['x'] != $ring[$i + 1]['x']) + || ($ring[$i]['y'] != $ring[$i + 1]['y']) + ) { + $x0 = $ring[$i]['x']; + $x1 = $ring[$i + 1]['x']; + $y0 = $ring[$i]['y']; + $y1 = $ring[$i + 1]['y']; + } + } + + if (! isset($x0)) { + return false; + } + + // Find the mid point + $x2 = ($x0 + $x1) / 2; + $y2 = ($y0 + $y1) / 2; + + // Always keep $epsilon < 1 to go with the reduction logic found later in this method + $epsilon = 0.1; + $denominator = sqrt(pow(($y1 - $y0), 2) + pow(($x0 - $x1), 2)); + $pointA = array(); $pointB = array(); + + while (true) { + // Get the points on either sides of the line with a distance of epsilon to the mid point + $pointA['x'] = $x2 + ($epsilon * ($y1 - $y0)) / $denominator; + $pointA['y'] = $y2 + ($pointA['x'] - $x2) * ($x0 - $x1) / ($y1 - $y0); + + $pointB['x'] = $x2 + ($epsilon * ($y1 - $y0)) / (0 - $denominator); + $pointB['y'] = $y2 + ($pointB['x'] - $x2) * ($x0 - $x1) / ($y1 - $y0); + + // One of the points should be inside the polygon, unless epcilon chosen is too large + if (PMA_GIS_Polygon::isPointInsidePolygon($pointA, $ring)) { + return $pointA; + } else if (PMA_GIS_Polygon::isPointInsidePolygon($pointB, $ring)) { + return $pointB; + } + + // If both are outside the polygon reduce the epsilon and recalculate the points + // (reduce exponentially for faster convergance) + else { + $epsilon = pow($epsilon, 2); + } + + } + } + /** Generate parameters for the GIS data editor from the value of the GIS column. * * @param string $value of the GIS column From 2795a9061ca0a2c4f344303b686c64dbbc7032cd Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 10 Jul 2011 22:13:50 +0530 Subject: [PATCH 016/442] Resolve problems due to merge commit --- tbl_replace.php | 34 +++++++++++++++++++++++++++------- 1 file changed, 27 insertions(+), 7 deletions(-) diff --git a/tbl_replace.php b/tbl_replace.php index b2f8d97f2f..04ac9314f0 100644 --- a/tbl_replace.php +++ b/tbl_replace.php @@ -153,7 +153,29 @@ $func_optional_param = array( 'UNIX_TIMESTAMP', ); -$gis_from_text_functions = array( 'GeomFromText', 'GeomCollFromText', 'LineFromText', 'MLineFromText', 'PointFromText', 'MPointFromText', 'PolyFromText', 'MPolyFromText',);$gis_from_wkb_functions = array( 'GeomFromWKB', 'GeomCollFromWKB', 'LineFromWKB', 'MLineFromWKB', 'PointFromWKB', 'MPointFromWKB', 'PolyFromWKB', 'MPolyFromWKB',);foreach ($loop_array as $rownumber => $where_clause) { +$gis_from_text_functions = array( + 'GeomFromText', + 'GeomCollFromText', + 'LineFromText', + 'MLineFromText', + 'PointFromText', + 'MPointFromText', + 'PolyFromText', + 'MPolyFromText', +); + +$gis_from_wkb_functions = array( + 'GeomFromWKB', + 'GeomCollFromWKB', + 'LineFromWKB', + 'MLineFromWKB', + 'PointFromWKB', + 'MPointFromWKB', + 'PolyFromWKB', + 'MPolyFromWKB', +); + +foreach ($loop_array as $rownumber => $where_clause) { // skip fields to be ignored if (! $using_key && isset($_REQUEST['insert_ignore_' . $where_clause])) { continue; @@ -238,11 +260,6 @@ $gis_from_text_functions = array( 'GeomFromText', 'GeomCollFromText', ' /* This way user will know what UUID new row has */ $uuid = PMA_DBI_fetch_value('SELECT UUID()'); $cur_value = "'" . $uuid . "'"; - } elseif (!in_array($me_funcs[$key], $func_no_param) - || ($val != "''" && in_array($me_funcs[$key], $func_optional_param))) { - $cur_value = $me_funcs[$key] . '(' . $val . ')'; - } else { - $cur_value = $me_funcs[$key] . '()'; } elseif ((in_array($me_funcs[$key], $gis_from_text_functions) && substr($val, 0, 3) == "'''") || in_array($me_funcs[$key], $gis_from_wkb_functions) @@ -252,8 +269,11 @@ $gis_from_text_functions = array( 'GeomFromText', 'GeomCollFromText', ' // Remove escaping apostrophes $val = str_replace("''", "'", $val); $cur_value = $me_funcs[$key] . '(' . $val . ')'; - } else { + } elseif (! in_array($me_funcs[$key], $func_no_param) + || ($val != "''" && in_array($me_funcs[$key], $func_optional_param))) { $cur_value = $me_funcs[$key] . '(' . $val . ')'; + } else { + $cur_value = $me_funcs[$key] . '()'; } // i n s e r t From 4e8cc7dc97871ba757517d0791488d57abee71a1 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 10 Jul 2011 23:29:05 +0530 Subject: [PATCH 017/442] Avoid accessing undefined variables --- tbl_change.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tbl_change.php b/tbl_change.php index 7ecca885dd..e3363aa884 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -964,9 +964,10 @@ foreach ($rows as $row_id => $vrow) { } if (in_array($field['pma_type'], $gis_data_types)) { echo(''); + $data_val = isset($vrow[$field['Field']]) ? $vrow[$field['Field']] : ''; $_url_params = array( 'field' => $field['Field_title'], - 'value' => $vrow[$field['Field']], + 'value' => $data_val, ); if ($field['pma_type'] != 'geometry') { $_url_params = $_url_params + array('gis_data[gis_type]' => strtoupper($field['pma_type'])); From 3ca86a3929e201898e692ab3608d0dcf1a8a4bf2 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Mon, 11 Jul 2011 21:29:48 +0530 Subject: [PATCH 018/442] Protection against malformed WKT and null --- libraries/gis/pma_gis_factory.php | 7 +++++-- libraries/gis/pma_gis_geometrycollection.php | 21 ++++++++++++++++++++ libraries/gis/pma_gis_visualization.php | 6 ++++++ 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/libraries/gis/pma_gis_factory.php b/libraries/gis/pma_gis_factory.php index 7dd1daee95..1ba966910c 100644 --- a/libraries/gis/pma_gis_factory.php +++ b/libraries/gis/pma_gis_factory.php @@ -20,6 +20,9 @@ class PMA_GIS_Factory include_once './libraries/gis/pma_gis_geometry.php'; $type_lower = strtolower($type); + if (! file_exists('./libraries/gis/pma_gis_' . $type_lower . '.php')) { + return false; + } if (include_once './libraries/gis/pma_gis_' . $type_lower . '.php') { switch($type) { case 'MULTIPOLYGON' : @@ -37,10 +40,10 @@ class PMA_GIS_Factory case 'GEOMETRYCOLLECTION' : return PMA_GIS_Geometrycollection::singleton(); default : - throw new Exception('Unknown GIS data type'); + return false; } } else { - throw new Exception('File not found'); + return false; } } } diff --git a/libraries/gis/pma_gis_geometrycollection.php b/libraries/gis/pma_gis_geometrycollection.php index d8c17b3aaa..dd4621dad0 100644 --- a/libraries/gis/pma_gis_geometrycollection.php +++ b/libraries/gis/pma_gis_geometrycollection.php @@ -53,6 +53,9 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry $type = substr($sub_part, 0, $type_pos); $gis_obj = PMA_GIS_Factory::factory($type); + if (! $gis_obj) { + continue; + } $scale_data = $gis_obj->scaleRow($sub_part); // Upadate minimum/maximum values for x and y cordinates. @@ -102,6 +105,9 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry $type = substr($sub_part, 0, $type_pos); $gis_obj = PMA_GIS_Factory::factory($type); + if (! $gis_obj) { + continue; + } $image = $gis_obj->prepareRowAsPng($sub_part, $label, $color, $scale_data, $image); } return $image; @@ -130,6 +136,9 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry $type = substr($sub_part, 0, $type_pos); $gis_obj = PMA_GIS_Factory::factory($type); + if (! $gis_obj) { + continue; + } $image = $gis_obj->prepareRowAsPdf($sub_part, $label, $color, $scale_data, $pdf); } return $pdf; @@ -159,6 +168,9 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry $type = substr($sub_part, 0, $type_pos); $gis_obj = PMA_GIS_Factory::factory($type); + if (! $gis_obj) { + continue; + } $row .= $gis_obj->prepareRowAsSvg($sub_part, $label, $color, $scale_data); } return $row; @@ -189,6 +201,9 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry $type = substr($sub_part, 0, $type_pos); $gis_obj = PMA_GIS_Factory::factory($type); + if (! $gis_obj) { + continue; + } $row .= $gis_obj->prepareRowAsOl($sub_part, $srid, $label, $color, $scale_data); } return $row; @@ -239,6 +254,9 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry if (isset($gis_data[$i]['gis_type'])) { $type = $gis_data[$i]['gis_type']; $gis_obj = PMA_GIS_Factory::factory($type); + if (! $gis_obj) { + continue; + } $wkt .= $gis_obj->generateWkt($gis_data, $i) . ','; } } @@ -275,6 +293,9 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry $type = substr($sub_part, 0, $type_pos); $gis_obj = PMA_GIS_Factory::factory($type); + if (! $gis_obj) { + continue; + } $params = array_merge($params, $gis_obj->generateParams($sub_part, $i)); $i++; } diff --git a/libraries/gis/pma_gis_visualization.php b/libraries/gis/pma_gis_visualization.php index 7c368570b2..31a20bbed7 100644 --- a/libraries/gis/pma_gis_visualization.php +++ b/libraries/gis/pma_gis_visualization.php @@ -313,6 +313,9 @@ class PMA_GIS_Visualization $type = substr($ref_data, 0, $type_pos); $gis_obj = PMA_GIS_Factory::factory($type); + if (! $gis_obj) { + continue; + } $scale_data = $gis_obj->scaleRow($row[$this->_settings['spatialColumn']]); // Upadate minimum/maximum values for x and y cordinates. @@ -392,6 +395,9 @@ class PMA_GIS_Visualization $type = substr($ref_data, 0, $type_pos); $gis_obj = PMA_GIS_Factory::factory($type); + if (! $gis_obj) { + continue; + } $label = ''; if (isset($this->_settings['labelColumn']) && isset($row[$this->_settings['labelColumn']]) From b9e5125870e8d6575f679d59d46e1fddec2f9e0c Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Mon, 11 Jul 2011 22:25:45 +0530 Subject: [PATCH 019/442] Correctly display null and empty values in geometry columns --- libraries/display_tbl.lib.php | 92 +++++++++++++++++++---------------- 1 file changed, 49 insertions(+), 43 deletions(-) diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index 77ce26c8ad..1eb3872117 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -1519,61 +1519,67 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) { // Remove 'inline_edit' from $class as we do not allow to inline-edit geometry data. $class = str_replace('inline_edit', '', $class); - // Display as [GEOMETRY - (size)] - if ('GEOM' == $_SESSION['tmp_user_values']['geometry_display']) { - $geometry_text = PMA_handle_non_printable_contents( - 'GEOMETRY', (isset($row[$i]) ? $row[$i] : ''), $transform_function, - $transform_options, $default_function, $meta - ); - $vertical_display['data'][$row_no][$i] = PMA_buildValueDisplay( - $class, $condition_field, $geometry_text - ); + if (! isset($row[$i]) || is_null($row[$i])) { + $vertical_display['data'][$row_no][$i] = PMA_buildNullDisplay($class, $condition_field); + } elseif ($row[$i] != '') { + // Display as [GEOMETRY - (size)] + if ('GEOM' == $_SESSION['tmp_user_values']['geometry_display']) { + $geometry_text = PMA_handle_non_printable_contents( + 'GEOMETRY', (isset($row[$i]) ? $row[$i] : ''), $transform_function, + $transform_options, $default_function, $meta + ); + $vertical_display['data'][$row_no][$i] = PMA_buildValueDisplay( + $class, $condition_field, $geometry_text + ); - // Display in Well Known Text(WKT) format. - } elseif ('WKT' == $_SESSION['tmp_user_values']['geometry_display']) { - // Convert to WKT format - $wktval = PMA_asWKT($row[$i]); + // Display in Well Known Text(WKT) format. + } elseif ('WKT' == $_SESSION['tmp_user_values']['geometry_display']) { + // Convert to WKT format + $wktval = PMA_asWKT($row[$i]); - if (PMA_strlen($wktval) > $GLOBALS['cfg']['LimitChars'] - && $_SESSION['tmp_user_values']['display_text'] == 'P' - ) { - $wktval = PMA_substr($wktval, 0, $GLOBALS['cfg']['LimitChars']) . '...'; - $is_field_truncated = true; - } - - $vertical_display['data'][$row_no][$i] = ' $GLOBALS['cfg']['LimitChars'] + if (PMA_strlen($wktval) > $GLOBALS['cfg']['LimitChars'] && $_SESSION['tmp_user_values']['display_text'] == 'P' ) { - $wkbval = PMA_substr($wkbval, 0, $GLOBALS['cfg']['LimitChars']) . '...'; + $wktval = PMA_substr($wktval, 0, $GLOBALS['cfg']['LimitChars']) . '...'; $is_field_truncated = true; } $vertical_display['data'][$row_no][$i] = ' $GLOBALS['cfg']['LimitChars'] + && $_SESSION['tmp_user_values']['display_text'] == 'P' + ) { + $wkbval = PMA_substr($wkbval, 0, $GLOBALS['cfg']['LimitChars']) . '...'; + $is_field_truncated = true; + } + + $vertical_display['data'][$row_no][$i] = ' Date: Tue, 12 Jul 2011 14:21:48 +0530 Subject: [PATCH 020/442] Trim the name before being displayed as the tooltip. --- js/tbl_gis_visualization.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/tbl_gis_visualization.js b/js/tbl_gis_visualization.js index 81a86c480a..0668e56899 100644 --- a/js/tbl_gis_visualization.js +++ b/js/tbl_gis_visualization.js @@ -224,7 +224,7 @@ $(document).ready(function() { */ $('.polygon, .multipolygon, .point, .multipoint, .linestring, .multilinestring, ' + '.geometrycollection').live('mousemove', function(event) { - contents = $(this).attr('name'); + contents = $.trim($(this).attr('name')); $("#tooltip").remove(); if (contents != '') { $('
' + contents + '
').css({ From 242534a78ad3d26334cd97dcf8346c7cd327179b Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 13 Jul 2011 00:17:09 +0530 Subject: [PATCH 021/442] Avoid divide by zero error --- libraries/gis/pma_gis_polygon.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/libraries/gis/pma_gis_polygon.php b/libraries/gis/pma_gis_polygon.php index 19e2f53ad0..1f077727a8 100644 --- a/libraries/gis/pma_gis_polygon.php +++ b/libraries/gis/pma_gis_polygon.php @@ -428,13 +428,12 @@ class PMA_GIS_Polygon extends PMA_GIS_Geometry { // Find two consecutive distinct points. for ($i = 0; $i < count($ring) - 1; $i++) { - if (($ring[$i]['x'] != $ring[$i + 1]['x']) - || ($ring[$i]['y'] != $ring[$i + 1]['y']) - ) { + if ($ring[$i]['y'] != $ring[$i + 1]['y']) { $x0 = $ring[$i]['x']; $x1 = $ring[$i + 1]['x']; $y0 = $ring[$i]['y']; $y1 = $ring[$i + 1]['y']; + break; } } @@ -462,7 +461,7 @@ class PMA_GIS_Polygon extends PMA_GIS_Geometry // One of the points should be inside the polygon, unless epcilon chosen is too large if (PMA_GIS_Polygon::isPointInsidePolygon($pointA, $ring)) { return $pointA; - } else if (PMA_GIS_Polygon::isPointInsidePolygon($pointB, $ring)) { + } elseif (PMA_GIS_Polygon::isPointInsidePolygon($pointB, $ring)) { return $pointB; } @@ -470,6 +469,9 @@ class PMA_GIS_Polygon extends PMA_GIS_Geometry // (reduce exponentially for faster convergance) else { $epsilon = pow($epsilon, 2); + if ($epsilon == 0) { + return false; + } } } From 2bf70868bbd9c69036470b4a9cbfe2fe29e1a8fc Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 13 Jul 2011 00:19:11 +0530 Subject: [PATCH 022/442] Avoid undefined variables --- libraries/import/shp.php | 1 + 1 file changed, 1 insertion(+) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index abee9632f2..bd9fc50d98 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -217,6 +217,7 @@ if (isset($plugin_list)) { $GLOBALS['import_text'] = $zip_content['data']; } + $temp_dbf_file = false; // We need dbase extension to handle .dbf file if (extension_loaded('dbase')) { // If we can extract the zip archive to 'TempDir' and use the files in it for import From a1e6b187c60999d1934ed5f7428c95f0a5d3820d Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 13 Jul 2011 23:51:25 +0530 Subject: [PATCH 023/442] Correctly display error message for zero data. --- libraries/import/shp.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index bd9fc50d98..900eb75902 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -336,6 +336,12 @@ if (isset($plugin_list)) { } } + if(count($rows) == 0) { + $error = true; + $err = PMA_Message::error(__('The imported file does not cantain any data')); + PMA_mysqlDie($err->getMessage(), '', '', $err_url); + } + // Column names for spatial column and the rest of the columns, if they are available $col_names[] = 'SPATIAL'; for ($n = 0; $n < $num_data_cols; $n++) { From e0e0dea09b25da67f60d787b0c2312dbbc5a7660 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 14 Jul 2011 00:09:25 +0530 Subject: [PATCH 024/442] 1) Better error handling. 2)Typo --- libraries/import/shp.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index 900eb75902..a92cfda4ed 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -300,9 +300,12 @@ if (isset($plugin_list)) { break; default: $error = true; - $err = PMA_Message::error(__('MySQL Spatial Extension does not support ESRI type "%s".')); - $param = isset($esri_types[$shp->shapeType]) ? $esri_types[$shp->shapeType] : __('Unkown Type'); - $err->addParam($param); + if (! isset($esri_types[$shp->shapeType])) { + $err = PMA_Message::error(__('You tried to import an invalid file or the imported file contains invalid data')); + } else { + $err = PMA_Message::error(__('MySQL Spatial Extension does not support ESRI type "%s".')); + $err->addParam($param); + } PMA_mysqlDie($err->getMessage(), '', '', $err_url); } @@ -338,7 +341,7 @@ if (isset($plugin_list)) { if(count($rows) == 0) { $error = true; - $err = PMA_Message::error(__('The imported file does not cantain any data')); + $err = PMA_Message::error(__('The imported file does not contain any data')); PMA_mysqlDie($err->getMessage(), '', '', $err_url); } From 66f73b4114bf8e60496fe052ec86b33c65c3137e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 14 Jul 2011 09:59:35 +0530 Subject: [PATCH 025/442] Better error handling. --- libraries/import/shp.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index a92cfda4ed..14195214ec 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -249,6 +249,12 @@ if (isset($plugin_list)) { // Load data $shp->loadFromFile(''); + if ($shp->lastError != "") { + $error = true; + $err = PMA_Message::error(__('There was an error importing the ESRI shape file: "%s".')); + $err->addParam($shp->lastError); + PMA_mysqlDie($err->getMessage(), '', '', $err_url); + } // Delete the .dbf file extracted to 'TempDir' if ($temp_dbf_file) { From b1634f80fd598d67130b7fccd29f7bc8dbc726b4 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 14 Jul 2011 19:39:39 +0530 Subject: [PATCH 026/442] GIS data editor extended for JS enabled browsers --- gis_data_editor.php | 67 +++++++----- js/messages.php | 1 + js/tbl_change.js | 131 ++++++++++++++++++++++++ tbl_change.php | 7 +- themes/original/css/theme_right.css.php | 7 ++ themes/pmahomme/css/theme_right.css.php | 9 +- 6 files changed, 194 insertions(+), 28 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index 3bc74847a7..cc53722989 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -1,8 +1,9 @@ $wkt, - 'srid' => $srid, + 'result' => $result, 'visualization' => $visualization, ); PMA_ajaxResponse(null, true, $extra_data); } + +if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { + ob_start(); +} else { ?> - - -
+ +

'); - echo PMA_generate_common_hidden_inputs($url_params); + echo(''); + echo(''); + echo PMA_generate_common_hidden_inputs(); ?>
- - " /> + " />
@@ -104,7 +116,7 @@ if(isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) { } else { $type = $gis_types[0]; } - echo(''); foreach (array_slice($gis_types, 0, 6) as $gis_type) { echo(''); } echo(''); - echo(''); + echo(''); } else { $type = $geom_type; } @@ -149,7 +161,7 @@ if(isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) { - "> + "> "> +?> ">
+?>
" value="" /> " value=""> +?> " class="add" value="">
" value=""> +?>
" class= "add" value="">

" value=""> +?>

" class= "add" value="">

" /> +?>

" />
@@ -260,15 +272,20 @@ if(isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) {

+ +
'); + + // Add close and cancel links + $('#gis_data_editor_no_js') + .prepend('' + PMA_messages['strClose'] + ''); + $(' ' + PMA_messages['strCancel'] + '') + .insertAfter($("input[name='gis_data[save]']")); + + // Remove the unnecessary text + $('div#gis_data_output p').remove(); + + // Remove 'add' buttons and add links + $('.add').each(function(e) { + $button = $(this); + text = $button.attr('value'); + name = $button.attr('name'); + $button.after('+ ' + text + '').remove(); + }); +} + /** * Ajax handlers for Change Table page * @@ -221,6 +260,98 @@ function verificationsAfterFieldChange(urlField, multi_edit, theType){ */ $(document).ready(function() { + $('.open_gis_editor').live('click', function(event) { + event.preventDefault(); + + // Center the popup + var $span = $(this); + var windowWidth = document.documentElement.clientWidth; + var windowHeight = document.documentElement.clientHeight; + var popupWidth = windowWidth * 0.9; + var popupHeight = windowHeight * 0.8; + var popupOffsetTop = windowHeight / 2 - popupHeight / 2; + var popupOffsetLeft = windowWidth / 2 - popupWidth / 2; + var $gis_editor = $("#gis_editor"); + $gis_editor.css({"position":"absolute", "top": popupOffsetTop, "left": popupOffsetLeft, "width": popupWidth, "height": popupHeight}); + + // Current value + var value = $span.parent('td').children("input[type='text']").val(); + // Field name + var field = $span.parents('tr').children('td:first').find("input[type='hidden']").val(); + // Names of input field and null checkbox + var input_name = $span.parents('tr').children('td:nth-child(5)').find('input:nth-child(3)').attr('name'); + var null_checkbox_name = $span.parents('tr').children('td:nth-child(4)').find('.checkbox_null').attr('name'); + + $.post('gis_data_editor.php', { + 'field' : field, + 'value' : value, + 'input_name' : input_name, + 'null_checkbox_name' : null_checkbox_name, + 'get_gis_editor' : true, + 'token' : window.parent.token + }, function(data) { + if(data.success == true) { + $gis_editor.html(data.gis_editor); + prepareJSVersion(); + $('').appendTo($gis_editor); + } else { + PMA_ajaxShowMessage(data.error); + } + }) + + // Make it appear + $("#popup_background").css({"opacity":"0.7"}); + $("#popup_background").fadeIn("fast"); + $gis_editor.fadeIn("fast"); + }) + + /** + * Prepare and insert the GIS data in Well Known Text format + * to the input field. + */ + $("input[name='gis_data[save]']").live('click', function(event) { + event.preventDefault(); + + var $form = $('form#gis_data_editor_form'); + var input_name = $form.find("input[name='input_name']").val(); + var null_checkbox_name = $form.find("input[name='null_checkbox_name']").val(); + + $.post('gis_data_editor.php', $form.serialize() + "&generate=true", function(data) { + if(data.success == true) { + $("input[name='" + null_checkbox_name + "']").attr('checked', false); + $("input[name='" + input_name + "']").val(data.result); + } else { + PMA_ajaxShowMessage(data.error); + } + }); + closeGISEditor(); + }); + + /** + * Update the form on change of the GIS type. + */ + $(".gis_type").live('change', function(event) { + var $gis_editor = $("#gis_editor"); + var $form = $('form#gis_data_editor_form'); + + $.post('gis_data_editor.php', $form.serialize() + "&get_gis_editor=true", function(data) { + if(data.success == true) { + $gis_editor.html(data.gis_editor); + prepareJSVersion(); + $('').appendTo($gis_editor); + } else { + PMA_ajaxShowMessage(data.error); + } + }); + }); + + /** + * Handles closing of the GIS data editor. + */ + $('.close_gis_editor, .cancel_gis_editor').live('click', function() { + closeGISEditor(); + }) + // these were hidden via the "hide" class $('.foreign_values_anchor').show(); diff --git a/tbl_change.php b/tbl_change.php index e3363aa884..afbf2dd6e9 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -963,19 +963,22 @@ foreach ($rows as $row_id => $vrow) { } } if (in_array($field['pma_type'], $gis_data_types)) { - echo(''); $data_val = isset($vrow[$field['Field']]) ? $vrow[$field['Field']] : ''; $_url_params = array( 'field' => $field['Field_title'], 'value' => $data_val, - ); + 'input_name' => 'fields' + $field_name_appendix, + 'null_checkbox_name' => 'fields_null' + $field_name_appendix, + ); if ($field['pma_type'] != 'geometry') { $_url_params = $_url_params + array('gis_data[gis_type]' => strtoupper($field['pma_type'])); } $edit_url = 'gis_data_editor.php' . PMA_generate_common_url($_url_params); $edit_str = PMA_getIcon('b_edit.png', __('Edit/Insert'), true); + echo(''); echo(PMA_linkOrButton($edit_url, $edit_str, array(), false, false, '_blank')); echo(''); + echo('
'); } ?> diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 9acbbcbe8f..d2e9b4dc37 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -1553,6 +1553,13 @@ input#input_import_file { margin: 5px 0px 5px 0px; } +/** + * GIS data editor styles + */ +a.close_gis_editor { + float: right; +} + /** * ENUM/SET editor styles */ diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 69a3b941e3..9e8bc09def 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -1897,6 +1897,13 @@ input#input_import_file { margin: 5px 0px 5px 0px; } +/** + * GIS data editor styles + */ +a.close_gis_editor { + float: right; +} + /** * ENUM/SET editor styles */ @@ -2595,7 +2602,7 @@ span.mysql-number { border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; - + background-image: url(./themes/svg_gradient.php?from=eeeeee&to=cccccc); background-size: 100% 100%; background: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#cccccc)); From fd0cb076c0c415c321edf8e811c9691d6f2ca06f Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 15 Jul 2011 00:03:48 +0530 Subject: [PATCH 027/442] Better styling for GIS data editor. --- js/tbl_change.js | 8 ++--- tbl_change.php | 2 +- themes/original/css/theme_right.css.php | 40 +++++++++++-------------- themes/pmahomme/css/theme_right.css.php | 40 +++++++++++-------------- 4 files changed, 41 insertions(+), 49 deletions(-) diff --git a/js/tbl_change.js b/js/tbl_change.js index d1c262fbe3..7ab6141169 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -216,7 +216,9 @@ function verificationsAfterFieldChange(urlField, multi_edit, theType){ * Closes the GIS data editor and perform necessary clean up work. */ function closeGISEditor(){ - $("#gis_editor").html('').attr('hidden', true); + $("#popup_background").fadeOut("fast"); + $("#gis_editor").fadeOut("fast"); + $("#gis_editor").html(''); } /** @@ -229,13 +231,11 @@ function prepareJSVersion() { // Change the text on the submit button $("input[name='gis_data[save]']") .attr('value', PMA_messages['strCopy']) - .remove() .insertAfter($('#gis_data_textarea')) .before('

'); // Add close and cancel links - $('#gis_data_editor_no_js') - .prepend('' + PMA_messages['strClose'] + ''); + $('#gis_data_editor').prepend('' + PMA_messages['strClose'] + ''); $(' ' + PMA_messages['strCancel'] + '') .insertAfter($("input[name='gis_data[save]']")); diff --git a/tbl_change.php b/tbl_change.php index afbf2dd6e9..4696a03fc4 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -978,7 +978,7 @@ foreach ($rows as $row_id => $vrow) { echo(''); echo(PMA_linkOrButton($edit_url, $edit_str, array(), false, false, '_blank')); echo(''); - echo('
'); + echo('
'); } ?> diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index a193c1ed02..dbad0c740a 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -1560,6 +1560,24 @@ a.close_gis_editor { float: right; } +#gis_editor { + display: none; + position: fixed; + _position: absolute; /* hack for IE */ + z-index: 101; + overflow-y: auto; + overflow-x: hidden; +} + +#gis_data_textarea { + height: 6em; +} + +#gis_data_editor { + background: #D0DCE0; + padding: 15px; +} + /** * ENUM/SET editor styles */ @@ -2026,28 +2044,6 @@ fieldset .disabled-field td { display:none; } -#gis_data_editor { - display: none; - position: fixed; - _position: absolute; /* hack for IE */ - z-index: 101; - overflow-y: auto; - overflow-x: hidden; -} - -#gis_data_editor_no_js { - margin: auto auto; -} - -#gis_data_editor, #gis_data_editor_no_js { - background: #D0DCE0; - padding: 15px; -} - -#gis_data_textarea { - height: 6em; -} - .CodeMirror { line-height: 1em; font-family: monospace; diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index ba457ead71..3114904f46 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -1904,6 +1904,24 @@ a.close_gis_editor { float: right; } +#gis_editor { + display: none; + position: fixed; + _position: absolute; /* hack for IE */ + z-index: 101; + overflow-y: auto; + overflow-x: hidden; +} + +#gis_data_textarea { + height: 6em; +} + +#gis_data_editor { + background: #D0DCE0; + padding: 15px; +} + /** * ENUM/SET editor styles */ @@ -2393,28 +2411,6 @@ fieldset .disabled-field td { display: none; } -#gis_data_editor { - display: none; - position: fixed; - _position: absolute; /* hack for IE */ - z-index: 101; - overflow-y: auto; - overflow-x: hidden; -} - -#gis_data_editor_no_js { - margin: auto auto; -} - -#gis_data_editor, #gis_data_editor_no_js { - background: #D0DCE0; - padding: 15px; -} - -#gis_data_textarea { - height: 6em; -} - .CodeMirror { line-height: 1em; font-family: monospace; From 0c9301f7dbc88ee49021f708d9004e0b57975fd8 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 15 Jul 2011 00:04:32 +0530 Subject: [PATCH 028/442] Corrected order of includes. --- gis_data_editor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index cc53722989..da5e5795f6 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -1,9 +1,9 @@
-
+

'); echo(''); From 6e7c3adbc15eb1f4b822a083b954cbc39a02bc13 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 15 Jul 2011 00:27:31 +0530 Subject: [PATCH 029/442] Trigger AJAX calls on data change and update the output --- js/tbl_change.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/js/tbl_change.js b/js/tbl_change.js index 7ab6141169..bd331ccc4d 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -327,6 +327,20 @@ $(document).ready(function() { closeGISEditor(); }); + /** + * Trigger asynchronous calls on data change and update the output. + */ + $('#gis_editor').find("input[type='text']").live('change', function() { + var $form = $('form#gis_data_editor_form'); + $.post('gis_data_editor.php', $form.serialize() + "&generate=true", function(data) { + if(data.success == true) { + $('#gis_data_textarea').val(data.result); + } else { + PMA_ajaxShowMessage(data.error); + } + }); + }); + /** * Update the form on change of the GIS type. */ From c18ef53b57ba72a6b35e479b3510d855cc636aa7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 15 Jul 2011 18:30:28 +0530 Subject: [PATCH 030/442] Do not use PMA_mysqlDie() to handle these errors. --- libraries/import/shp.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index 14195214ec..7ee62fdce3 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -251,9 +251,9 @@ if (isset($plugin_list)) { $shp->loadFromFile(''); if ($shp->lastError != "") { $error = true; - $err = PMA_Message::error(__('There was an error importing the ESRI shape file: "%s".')); - $err->addParam($shp->lastError); - PMA_mysqlDie($err->getMessage(), '', '', $err_url); + $message = PMA_Message::error(__('There was an error importing the ESRI shape file: "%s".')); + $message->addParam($shp->lastError); + return; } // Delete the .dbf file extracted to 'TempDir' @@ -307,12 +307,12 @@ if (isset($plugin_list)) { default: $error = true; if (! isset($esri_types[$shp->shapeType])) { - $err = PMA_Message::error(__('You tried to import an invalid file or the imported file contains invalid data')); + $message = PMA_Message::error(__('You tried to import an invalid file or the imported file contains invalid data')); } else { - $err = PMA_Message::error(__('MySQL Spatial Extension does not support ESRI type "%s".')); - $err->addParam($param); + $message = PMA_Message::error(__('MySQL Spatial Extension does not support ESRI type "%s".')); + $message->addParam($param); } - PMA_mysqlDie($err->getMessage(), '', '', $err_url); + return; } $num_rows = count($shp->records); @@ -347,8 +347,8 @@ if (isset($plugin_list)) { if(count($rows) == 0) { $error = true; - $err = PMA_Message::error(__('The imported file does not contain any data')); - PMA_mysqlDie($err->getMessage(), '', '', $err_url); + $message = PMA_Message::error(__('The imported file does not contain any data')); + return; } // Column names for spatial column and the rest of the columns, if they are available From f5bd53fae03e41c2b26f3769ce891270d00d39e9 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 15 Jul 2011 18:31:15 +0530 Subject: [PATCH 031/442] Remove hidden fields not used. --- js/tbl_change.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/js/tbl_change.js b/js/tbl_change.js index bd331ccc4d..620d6600ff 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -293,7 +293,6 @@ $(document).ready(function() { if(data.success == true) { $gis_editor.html(data.gis_editor); prepareJSVersion(); - $('').appendTo($gis_editor); } else { PMA_ajaxShowMessage(data.error); } @@ -352,7 +351,6 @@ $(document).ready(function() { if(data.success == true) { $gis_editor.html(data.gis_editor); prepareJSVersion(); - $('').appendTo($gis_editor); } else { PMA_ajaxShowMessage(data.error); } From 166b571964d6c3513359512b8eef83584f2f9ddf Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 15 Jul 2011 23:13:00 +0530 Subject: [PATCH 032/442] Non JS version does not need this parameters. --- gis_data_editor.php | 8 ++++++-- js/tbl_change.js | 3 ++- tbl_change.php | 2 -- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index da5e5795f6..e86abb735e 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -75,8 +75,12 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) {

'); - echo(''); - echo(''); + if (isset($_REQUEST['input_name'])) { + echo(''); + } + if (isset($_REQUEST['null_checkbox_name'])) { + echo(''); + } echo PMA_generate_common_hidden_inputs(); ?>
diff --git a/js/tbl_change.js b/js/tbl_change.js index 620d6600ff..3218fafdba 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -255,7 +255,8 @@ function prepareJSVersion() { * Ajax handlers for Change Table page * * Actions Ajaxified here: - * Submit Data to be inserted into the table + * GIS data editor. + * Submit Data to be inserted into the table. * Restart insertion with 'N' rows. */ $(document).ready(function() { diff --git a/tbl_change.php b/tbl_change.php index 4696a03fc4..d520737135 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -967,8 +967,6 @@ foreach ($rows as $row_id => $vrow) { $_url_params = array( 'field' => $field['Field_title'], 'value' => $data_val, - 'input_name' => 'fields' + $field_name_appendix, - 'null_checkbox_name' => 'fields_null' + $field_name_appendix, ); if ($field['pma_type'] != 'geometry') { $_url_params = $_url_params + array('gis_data[gis_type]' => strtoupper($field['pma_type'])); From b2d703dbea2077c9ff48686ee230d7a7ff224318 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 16 Jul 2011 00:29:00 +0530 Subject: [PATCH 033/442] Add points with JavaScript --- gis_data_editor.php | 6 +++--- js/tbl_change.js | 30 ++++++++++++++++++++++++++---- 2 files changed, 29 insertions(+), 7 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index e86abb735e..3aadc58bea 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -165,7 +165,7 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { - "> + "> "> +?> ">
@@ -259,7 +259,7 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { " value="" /> " class="add" value=""> +?> " class="add point" value="">
" class= "add" value=""> + ' + text + '').remove(); + var $button = $(this); + $button.addClass('addJs').removeClass('add'); + var classes = $button.attr('class'); + $button + .after('+ ' + $button.attr('value') + '') + .remove(); }); } @@ -365,6 +368,25 @@ $(document).ready(function() { closeGISEditor(); }) + /** + * Handle adding data points + */ + $('.addJs.point').live('click', function() { + var $a = $(this); + var name = $a.attr('name'); + var prefix = name.substr(0, name.length - 11); + var $noOfPointsInput = $("input[name='" + prefix + "[no_of_points]" + "']"); + var noOfPoints = parseInt($noOfPointsInput.attr('value')); + var html = '
' + + 'Point' + (noOfPoints + 1) + ':' + + '' + + '' + + '' + + ''; + $a.before(html); + $noOfPointsInput.attr('value', noOfPoints + 1); + }); + // these were hidden via the "hide" class $('.foreign_values_anchor').show(); From 83d8d3a8ed3043f52b1f1ef42af33fccfead1e87 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 16 Jul 2011 02:11:18 +0530 Subject: [PATCH 034/442] Handle adding linestrings and inner rings. Better comments --- gis_data_editor.php | 2 +- js/tbl_change.js | 63 +++++++++++++++++++++++++++++++++++++++------ 2 files changed, 56 insertions(+), 9 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index 3aadc58bea..59f9f1bfad 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -212,7 +212,7 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { ?> ">
+?>
Point' + (pointNumber + 1) + ':' + + '' + + '' + + '' + + ''; +} + /** * Ajax handlers for Change Table page * @@ -369,24 +384,56 @@ $(document).ready(function() { }) /** - * Handle adding data points + * Handles adding data points */ $('.addJs.point').live('click', function() { var $a = $(this); var name = $a.attr('name'); + // Eg. name = gis_data[0][MULTIPOINT][add_point] => prefix = gis_data[0][MULTIPOINT] var prefix = name.substr(0, name.length - 11); + // Find the number of points var $noOfPointsInput = $("input[name='" + prefix + "[no_of_points]" + "']"); var noOfPoints = parseInt($noOfPointsInput.attr('value')); - var html = '
' - + 'Point' + (noOfPoints + 1) + ':' - + '' - + '' - + '' - + ''; + // Add the new data point + var html = addDataPoint(noOfPoints, prefix); $a.before(html); - $noOfPointsInput.attr('value', noOfPoints + 1); + $noOfPointsInput.attr('value', noOfPoints + 1); }); + /** + * Handles adding linestrings and inner rings + */ + $('.line.addJs').live('click', function() { + var $a = $(this); + var name = $a.attr('name'); + + // Eg. name = gis_data[0][MULTILINESTRING][add_line] => prefix = gis_data[0][MULTILINESTRING] + var prefix = name.substr(0, name.length - 10); + var type = prefix.slice(prefix.lastIndexOf('[') + 1, prefix.lastIndexOf(']')); + + // Find the number of lines + var $noOfLinesInput = $("input[name='" + prefix + "[no_of_lines]" + "']"); + var noOfLines = parseInt($noOfLinesInput.attr('value')); + + // Add the new linesting of inner ring based on the type + var html = '
'; + if (type == 'MULTILINESTRING') { + html += 'Linestring' + (noOfLines + 1) + ':'; + var noOfPoints = 2; + } else { + html += 'Inner Ring' + noOfLines + ':'; + var noOfPoints = 4; + } + html += ''; + for (i = 0; i < noOfPoints; i++) { + html += addDataPoint(i, (prefix + '[' + noOfLines + ']')); + } + html += '+ Add a point
'; + + $a.before(html); + $noOfLinesInput.attr('value', noOfLines + 1); + }); + // these were hidden via the "hide" class $('.foreign_values_anchor').show(); From ed23518a44fdd62c5394c785e515d65f7c4910eb Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 16 Jul 2011 10:50:22 +0530 Subject: [PATCH 035/442] Handle adding polygons and geometry objects --- gis_data_editor.php | 12 +++++------ js/tbl_change.js | 51 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 57 insertions(+), 6 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index 59f9f1bfad..9d2b112b47 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -135,10 +135,10 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { } if ($type == 'POINT') { - echo('
'); echo __("Point"); -?> + echo('
'); echo __("Point"); echo(' :'); +?> - + " class="add point" value="">
" class= "add" value=""> +?>
" class="add line" value="">

" class= "add" value=""> +?>

" class="add polygon" value="">

" /> +?>

" />
diff --git a/js/tbl_change.js b/js/tbl_change.js index b589f548b9..dab6de5d33 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -434,6 +434,57 @@ $(document).ready(function() { $noOfLinesInput.attr('value', noOfLines + 1); }); + /** + * Handles adding polygons + */ + $('.addJs.polygon').live('click', function() { + var $a = $(this); + var name = $a.attr('name'); + // Eg. name = gis_data[0][MULTIPOLYGON][add_polygon] => prefix = gis_data[0][MULTIPOLYGON] + var prefix = name.substr(0, name.length - 13); + // Find the number of polygons + var $noOfPolygonsInput = $("input[name='" + prefix + "[no_of_polygons]" + "']"); + var noOfPolygons = parseInt($noOfPolygonsInput.attr('value')); + + // Add the new polygon + var html = 'Polygon' + (noOfPolygons + 1) + ':
'; + html += ''; + + '
' + 'Outer Ring' + ':'; + + ''; + for (i = 0; i < 4; i++) { + html += addDataPoint(i, (prefix + '[' + noOfPolygons + '][0]')); + } + html += '+ Add a point
'; + + '+ Add an inner ring

'; + + $a.before(html); + $noOfPolygonsInput.attr('value', noOfPolygons + 1); + }); + + /** + * Handles adding geoms + */ + $('.addJs.geom').live('click', function() { + var $a = $(this); + var prefix = 'gis_data[GEOMETRYCOLLECTION]'; + // Find the number of geoms + var $noOfGeomsInput = $("input[name='" + prefix + "[geom_count]" + "']"); + var noOfGeoms = parseInt($noOfGeomsInput.attr('value')); + + var html1 = 'Geometry' + (noOfGeoms + 1) + ':
'; + var $geomType = $("select[name='gis_data[" + (noOfGeoms - 1) + "][gis_type]']").clone(); + $geomType.attr('name', 'gis_data[' + noOfGeoms + '][gis_type]').val('POINT'); + var html2 = '
' + 'Point' + ' :' + + '' + + '' + + '' + + '' + + '

'; + + $a.before(html1); $geomType.insertBefore($a); $a.before(html2); + $noOfGeomsInput.attr('value', noOfGeoms + 1); + }); + // these were hidden via the "hide" class $('.foreign_values_anchor').show(); From 7af88c04c75641fc3aba7e26935c0ef8f9e2dcbe Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 16 Jul 2011 11:05:53 +0530 Subject: [PATCH 036/442] Cleanup spaces --- js/tbl_change.js | 72 ++++++++++++++++++++++++------------------------ 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/js/tbl_change.js b/js/tbl_change.js index dab6de5d33..fd8916b0be 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -227,21 +227,21 @@ function closeGISEditor(){ function prepareJSVersion() { // Hide 'Go' buttons associated with the dropdowns $('.go').hide(); - + // Change the text on the submit button $("input[name='gis_data[save]']") .attr('value', PMA_messages['strCopy']) .insertAfter($('#gis_data_textarea')) .before('

'); - + // Add close and cancel links $('#gis_data_editor').prepend('' + PMA_messages['strClose'] + ''); $(' ' + PMA_messages['strCancel'] + '') .insertAfter($("input[name='gis_data[save]']")); - + // Remove the unnecessary text $('div#gis_data_output p').remove(); - + // Remove 'add' buttons and add links $('.add').each(function(e) { var $button = $(this); @@ -279,9 +279,9 @@ function addDataPoint(pointNumber, prefix) { */ $(document).ready(function() { - $('.open_gis_editor').live('click', function(event) { + $('.open_gis_editor').live('click', function(event) { event.preventDefault(); - + // Center the popup var $span = $(this); var windowWidth = document.documentElement.clientWidth; @@ -300,10 +300,10 @@ $(document).ready(function() { // Names of input field and null checkbox var input_name = $span.parents('tr').children('td:nth-child(5)').find('input:nth-child(3)').attr('name'); var null_checkbox_name = $span.parents('tr').children('td:nth-child(4)').find('.checkbox_null').attr('name'); - + $.post('gis_data_editor.php', { - 'field' : field, - 'value' : value, + 'field' : field, + 'value' : value, 'input_name' : input_name, 'null_checkbox_name' : null_checkbox_name, 'get_gis_editor' : true, @@ -316,24 +316,24 @@ $(document).ready(function() { PMA_ajaxShowMessage(data.error); } }) - + // Make it appear $("#popup_background").css({"opacity":"0.7"}); $("#popup_background").fadeIn("fast"); $gis_editor.fadeIn("fast"); }) - + /** * Prepare and insert the GIS data in Well Known Text format * to the input field. */ $("input[name='gis_data[save]']").live('click', function(event) { - event.preventDefault(); - + event.preventDefault(); + var $form = $('form#gis_data_editor_form'); var input_name = $form.find("input[name='input_name']").val(); var null_checkbox_name = $form.find("input[name='null_checkbox_name']").val(); - + $.post('gis_data_editor.php', $form.serialize() + "&generate=true", function(data) { if(data.success == true) { $("input[name='" + null_checkbox_name + "']").attr('checked', false); @@ -342,9 +342,9 @@ $(document).ready(function() { PMA_ajaxShowMessage(data.error); } }); - closeGISEditor(); + closeGISEditor(); }); - + /** * Trigger asynchronous calls on data change and update the output. */ @@ -358,14 +358,14 @@ $(document).ready(function() { } }); }); - + /** * Update the form on change of the GIS type. */ $(".gis_type").live('change', function(event) { var $gis_editor = $("#gis_editor"); var $form = $('form#gis_data_editor_form'); - + $.post('gis_data_editor.php', $form.serialize() + "&get_gis_editor=true", function(data) { if(data.success == true) { $gis_editor.html(data.gis_editor); @@ -375,14 +375,14 @@ $(document).ready(function() { } }); }); - + /** * Handles closing of the GIS data editor. */ $('.close_gis_editor, .cancel_gis_editor').live('click', function() { closeGISEditor(); }) - + /** * Handles adding data points */ @@ -399,7 +399,7 @@ $(document).ready(function() { $a.before(html); $noOfPointsInput.attr('value', noOfPoints + 1); }); - + /** * Handles adding linestrings and inner rings */ @@ -429,7 +429,7 @@ $(document).ready(function() { html += addDataPoint(i, (prefix + '[' + noOfLines + ']')); } html += '+ Add a point
'; - + $a.before(html); $noOfLinesInput.attr('value', noOfLines + 1); }); @@ -490,23 +490,23 @@ $(document).ready(function() { /** * Handles all current checkboxes for Null; this only takes care of the - * checkboxes on currently displayed rows as the rows generated by - * "Continue insertion" are handled in the "Continue insertion" code - * + * checkboxes on currently displayed rows as the rows generated by + * "Continue insertion" are handled in the "Continue insertion" code + * */ $('.checkbox_null').bind('click', function(e) { nullify( // use hidden fields populated by tbl_change.php $(this).siblings('.nullify_code').val(), - $(this).closest('tr').find('input:hidden').first().val(), + $(this).closest('tr').find('input:hidden').first().val(), $(this).siblings('.hashed_field').val(), $(this).siblings('.multi_edit').val() ); }); /** - * Submission of data to be inserted or updated - * + * Submission of data to be inserted or updated + * * @uses PMA_ajaxShowMessage() * * This section has been deactivated. Here are the problems that I've @@ -521,9 +521,9 @@ $(document).ready(function() { * 2. This code can be called if we are editing or inserting. If editing, * the "and then" action can be "go back to this page" or "edit next * row", in which cases it makes sense to use AJAX. But the "go back - * to previous page" and "insert another new row" actions, using AJAX + * to previous page" and "insert another new row" actions, using AJAX * has no obvious advantage. If inserting, the "go back to previous" - * action needs a page refresh anyway. + * action needs a page refresh anyway. */ $("#insertFormDEACTIVATED").live('submit', function(event) { @@ -652,8 +652,8 @@ $(document).ready(function() { .bind('change', function(e) { var $changed_element = $(this); verificationsAfterFieldChange( - $changed_element.data('hashed_field'), - $changed_element.data('new_row_index'), + $changed_element.data('hashed_field'), + $changed_element.data('new_row_index'), $changed_element.closest('tr').find('span.column_type').html() ); }); @@ -665,15 +665,15 @@ $(document).ready(function() { // to the original row, not the cloned one, so unbind() .unbind('click') // Keep these values to be used when the element - // will be clicked + // will be clicked .data('hashed_field', hashed_field) .data('new_row_index', new_row_index) .bind('click', function(e) { var $changed_element = $(this); nullify( $changed_element.siblings('.nullify_code').val(), - $this_element.closest('tr').find('input:hidden').first().val(), - $changed_element.data('hashed_field'), + $this_element.closest('tr').find('input:hidden').first().val(), + $changed_element.data('hashed_field'), '[multi_edit][' + $changed_element.data('new_row_index') + ']' ); }); @@ -725,7 +725,7 @@ $(document).ready(function() { // IMO it's not really important to handle the tabindex for // function and Null var tabindex = 0; - $('.textfield') + $('.textfield') .each(function() { tabindex++; $(this).attr('tabindex', tabindex); From ba93a625b9de49fc10c1d65a880768258497459c Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 16 Jul 2011 13:14:29 +0530 Subject: [PATCH 037/442] Make JS messages translatable. --- js/messages.php | 13 ++++++++++++- js/tbl_change.js | 31 +++++++++++++++++-------------- 2 files changed, 29 insertions(+), 15 deletions(-) diff --git a/js/messages.php b/js/messages.php index e433384bef..b2c987123a 100644 --- a/js/messages.php +++ b/js/messages.php @@ -142,7 +142,18 @@ $js_messages['strShowSearchCriteria'] = __('Show search criteria'); /* For tbl_change.js */ $js_messages['strIgnore'] = __('Ignore'); -$js_messages['strCopy']= __('Copy'); +$js_messages['strCopy'] = __('Copy'); +$js_messages['strX'] = __('X'); +$js_messages['strY'] = __('Y'); +$js_messages['strPoint'] = __('Point'); +$js_messages['strLineString'] = __('Linestring'); +$js_messages['strPolygon'] = __('Polygon'); +$js_messages['strGeometry'] = __('Geometry'); +$js_messages['strInnerRing'] = __('Inner Ring'); +$js_messages['strOuterRing'] = __('Outer Ring'); +$js_messages['strAddPoint'] = __('Add a point'); +$js_messages['strAddInnerRing'] = __('Add an inner ring'); +$js_messages['strAddPolygon'] = __('Add a polygon'); /* Designer (pmd/scripts/move.js) */ $js_messages['strSelectReferencedKey'] = __('Select referenced key'); diff --git a/js/tbl_change.js b/js/tbl_change.js index fd8916b0be..8a517bd029 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -262,10 +262,10 @@ function prepareJSVersion() { * @returns the HTML for a data point */ function addDataPoint(pointNumber, prefix) { - return '
Point' + (pointNumber + 1) + ':' - + '' + return '
' + $js_messages['strPoint'] + (pointNumber + 1) + ':' + + '' + '' - + '' + + '' + ''; } @@ -418,17 +418,18 @@ $(document).ready(function() { // Add the new linesting of inner ring based on the type var html = '
'; if (type == 'MULTILINESTRING') { - html += 'Linestring' + (noOfLines + 1) + ':'; + html += $js_messages['strLineString'] + (noOfLines + 1) + ':'; var noOfPoints = 2; } else { - html += 'Inner Ring' + noOfLines + ':'; + html += $js_messages['strInnerRing'] + noOfLines + ':'; var noOfPoints = 4; } html += ''; for (i = 0; i < noOfPoints; i++) { html += addDataPoint(i, (prefix + '[' + noOfLines + ']')); } - html += '+ Add a point
'; + html += '+ ' + + $js_messages['strAddPoint'] + '
'; $a.before(html); $noOfLinesInput.attr('value', noOfLines + 1); @@ -447,15 +448,17 @@ $(document).ready(function() { var noOfPolygons = parseInt($noOfPolygonsInput.attr('value')); // Add the new polygon - var html = 'Polygon' + (noOfPolygons + 1) + ':
'; + var html = $js_messages['strPolygon'] + (noOfPolygons + 1) + ':
'; html += ''; - + '
' + 'Outer Ring' + ':'; + + '
' + $js_messages['strOuterRing'] + ':'; + ''; for (i = 0; i < 4; i++) { html += addDataPoint(i, (prefix + '[' + noOfPolygons + '][0]')); } - html += '+ Add a point
'; - + '+ Add an inner ring

'; + html += '+ ' + + $js_messages['strAddPoint'] + '
'; + + '+ ' + + $js_messages['strAddInnerRing'] + '

'; $a.before(html); $noOfPolygonsInput.attr('value', noOfPolygons + 1); @@ -471,13 +474,13 @@ $(document).ready(function() { var $noOfGeomsInput = $("input[name='" + prefix + "[geom_count]" + "']"); var noOfGeoms = parseInt($noOfGeomsInput.attr('value')); - var html1 = 'Geometry' + (noOfGeoms + 1) + ':
'; + var html1 = $js_messages['strGeometry'] + (noOfGeoms + 1) + ':
'; var $geomType = $("select[name='gis_data[" + (noOfGeoms - 1) + "][gis_type]']").clone(); $geomType.attr('name', 'gis_data[' + noOfGeoms + '][gis_type]').val('POINT'); - var html2 = '
' + 'Point' + ' :' - + '' + var html2 = '
' + $js_messages['strPoint'] + ' :' + + '' + '' - + '' + + '' + '' + '

'; From 1b9ddd2efa71971ef1b78356cc878af437cdf5dd Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 16 Jul 2011 13:23:11 +0530 Subject: [PATCH 038/442] These should be PMA_messages[] --- js/tbl_change.js | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/js/tbl_change.js b/js/tbl_change.js index 8a517bd029..737859db35 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -262,10 +262,10 @@ function prepareJSVersion() { * @returns the HTML for a data point */ function addDataPoint(pointNumber, prefix) { - return '
' + $js_messages['strPoint'] + (pointNumber + 1) + ':' - + '' + return '
' + PMA_messages['strPoint'] + (pointNumber + 1) + ':' + + '' + '' - + '' + + '' + ''; } @@ -418,10 +418,10 @@ $(document).ready(function() { // Add the new linesting of inner ring based on the type var html = '
'; if (type == 'MULTILINESTRING') { - html += $js_messages['strLineString'] + (noOfLines + 1) + ':'; + html += PMA_messages['strLineString'] + (noOfLines + 1) + ':'; var noOfPoints = 2; } else { - html += $js_messages['strInnerRing'] + noOfLines + ':'; + html += PMA_messages['strInnerRing'] + noOfLines + ':'; var noOfPoints = 4; } html += ''; @@ -429,7 +429,7 @@ $(document).ready(function() { html += addDataPoint(i, (prefix + '[' + noOfLines + ']')); } html += '+ ' - + $js_messages['strAddPoint'] + '
'; + + PMA_messages['strAddPoint'] + '
'; $a.before(html); $noOfLinesInput.attr('value', noOfLines + 1); @@ -448,17 +448,17 @@ $(document).ready(function() { var noOfPolygons = parseInt($noOfPolygonsInput.attr('value')); // Add the new polygon - var html = $js_messages['strPolygon'] + (noOfPolygons + 1) + ':
'; + var html = PMA_messages['strPolygon'] + (noOfPolygons + 1) + ':
'; html += ''; - + '
' + $js_messages['strOuterRing'] + ':'; + + '
' + PMA_messages['strOuterRing'] + ':'; + ''; for (i = 0; i < 4; i++) { html += addDataPoint(i, (prefix + '[' + noOfPolygons + '][0]')); } html += '+ ' - + $js_messages['strAddPoint'] + '
'; + + PMA_messages['strAddPoint'] + '
'; + '+ ' - + $js_messages['strAddInnerRing'] + '

'; + + PMA_messages['strAddInnerRing'] + '

'; $a.before(html); $noOfPolygonsInput.attr('value', noOfPolygons + 1); @@ -474,13 +474,13 @@ $(document).ready(function() { var $noOfGeomsInput = $("input[name='" + prefix + "[geom_count]" + "']"); var noOfGeoms = parseInt($noOfGeomsInput.attr('value')); - var html1 = $js_messages['strGeometry'] + (noOfGeoms + 1) + ':
'; + var html1 = PMA_messages['strGeometry'] + (noOfGeoms + 1) + ':
'; var $geomType = $("select[name='gis_data[" + (noOfGeoms - 1) + "][gis_type]']").clone(); $geomType.attr('name', 'gis_data[' + noOfGeoms + '][gis_type]').val('POINT'); - var html2 = '
' + $js_messages['strPoint'] + ' :' - + '' + var html2 = '
' + PMA_messages['strPoint'] + ' :' + + '' + '' - + '' + + '' + '' + '

'; From d85c777c78a854d56d39cb6420624e22eedc6586 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 16 Jul 2011 14:17:17 +0530 Subject: [PATCH 039/442] Chose the correct GIS type --- gis_data_editor.php | 4 +++- js/tbl_change.js | 7 +++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index 9d2b112b47..f93e7f4112 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -25,7 +25,9 @@ $gis_types = array( $no_visual = true; if (! isset($gis_data['gis_type'])) { - if (isset($_REQUEST['value'])) { + if (isset($_REQUEST['type']) && $_REQUEST['type'] != '') { + $gis_data['gis_type'] = strtoupper($_REQUEST['type']); + } elseif (isset($_REQUEST['value'])) { $gis_data['gis_type'] = substr($_REQUEST['value'], 1, strpos($_REQUEST['value'], "(") - 1); } if(! in_array($gis_data['gis_type'], $gis_types)) { diff --git a/js/tbl_change.js b/js/tbl_change.js index 737859db35..2abcf06ad4 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -297,13 +297,16 @@ $(document).ready(function() { var value = $span.parent('td').children("input[type='text']").val(); // Field name var field = $span.parents('tr').children('td:first').find("input[type='hidden']").val(); + // Column type + var type = $span.parents('tr').find('span.column_type').text(); // Names of input field and null checkbox - var input_name = $span.parents('tr').children('td:nth-child(5)').find('input:nth-child(3)').attr('name'); - var null_checkbox_name = $span.parents('tr').children('td:nth-child(4)').find('.checkbox_null').attr('name'); + var input_name = $span.parent('td').children("input[type='text']").attr('name'); + var null_checkbox_name = $span.parents('tr').find('.checkbox_null').attr('name'); $.post('gis_data_editor.php', { 'field' : field, 'value' : value, + 'type' : type, 'input_name' : input_name, 'null_checkbox_name' : null_checkbox_name, 'get_gis_editor' : true, From 5a6379f93e97a4535a3a78b56ddc6a5cbe3901e8 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 17 Jul 2011 16:59:25 +0530 Subject: [PATCH 040/442] SVG based data visualization for GIS data editor --- gis_data_editor.php | 70 ++++++++++++++++++------- js/tbl_change.js | 22 +++++++- js/tbl_gis_visualization.js | 66 +++++++++++++---------- libraries/gis/pma_gis_visualization.php | 3 +- tbl_change.php | 4 ++ themes/original/css/theme_right.css.php | 13 +++++ themes/pmahomme/css/theme_right.css.php | 13 +++++ 7 files changed, 138 insertions(+), 53 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index f93e7f4112..80928f96e2 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -23,39 +23,39 @@ $gis_types = array( 'GEOMETRYCOLLECTION' ); -$no_visual = true; +// Extract type from the initial call and make sure that it's a valid one. +// Extract from field's values if availbale, if not use the column type passed. if (! isset($gis_data['gis_type'])) { if (isset($_REQUEST['type']) && $_REQUEST['type'] != '') { $gis_data['gis_type'] = strtoupper($_REQUEST['type']); - } elseif (isset($_REQUEST['value'])) { + } + if (isset($_REQUEST['value'])) { $gis_data['gis_type'] = substr($_REQUEST['value'], 1, strpos($_REQUEST['value'], "(") - 1); } if(! in_array($gis_data['gis_type'], $gis_types)) { $gis_data['gis_type'] = $gis_types[0]; - $no_visual = true; } } $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'])); } -$srid = isset($gis_data['srid']) ? htmlspecialchars($gis_data['srid']) : ''; +// Generate Well Known Text +$srid = (isset($gis_data['srid']) && $gis_data['srid'] != '') ? htmlspecialchars($gis_data['srid']) : 0; $wkt = $gis_obj->generateWkt($gis_data, 0); +$result = "'" . $wkt . "'," . $srid; -$format = (PMA_USR_BROWSER_AGENT == 'IE' && PMA_USR_BROWSER_VER <= 8) ? 'svg' : 'png'; -$visualizationSettings = array('width' => 400, 'height' => 400,); -$data = array($wkt); -if (! $no_visual) { - $visualization = PMA_GIS_visualization_results($data, $visualizationSettings, $format); -} +// Gererate 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'); +$data = array(array('wkt' => $wkt, 'srid' => $srid)); +$visualization = PMA_GIS_visualization_results($data, $visualizationSettings, $format); -$result = "'" . $wkt . "'"; -if ($srid != '') { - $result .= ',' . $srid; -} +// If the call is to update the WKT and visualization make an AJAX response if(isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) { $extra_data = array( 'result' => $result, @@ -64,6 +64,7 @@ if(isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) { PMA_ajaxResponse(null, true, $extra_data); } +// If the call is to get the whole content, start buffering, skipping and tags if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { ob_start(); } else { @@ -74,9 +75,12 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { } ?> +

+ '); + // The input field to which the final result should be added and corresponding null checkbox if (isset($_REQUEST['input_name'])) { echo(''); } @@ -85,9 +89,31 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { } echo PMA_generate_common_hidden_inputs(); ?> -
- + +
+
+
+
+ /> + +
+ + +
+ + +
-

" /> -
+?>
+ +

@@ -285,6 +314,7 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { 0) { var pmaThemeImage = $('#pmaThemeImage').attr('value'); @@ -113,6 +93,34 @@ $(document).ready(function() { $('').appendTo($placeholder); } + $('.choice').show(); +} + +/** + * Ajax handlers for GIS visualization page + * + * Actions Ajaxified here: + * + * Zooming in and zooming out on mousewheel movement. + * Panning the visualization on dragging. + * Zooming in on double clicking. + * Zooming out on clicking the zoom out button. + * Panning on clicking the arrow buttons. + * Displaying tooltips for GIS objects. + */ +$(document).ready(function() { + initVisualization(); + + $('#choice').live('click', function() { + if ($(this).prop('checked') == false) { + $('#placeholder').show(); + $('#openlayersmap').hide(); + } else { + $('#placeholder').hide(); + $('#openlayersmap').show(); + } + }); + $('#placeholder').live('mousewheel', function(event, delta) { if (delta > 0) { //zoom in @@ -134,13 +142,13 @@ $(document).ready(function() { var dragX = 0; var dragY = 0; $('svg').live('dragstart', function(event, dd) { - $placeholder.addClass('placeholderDrag'); + $('#placeholder').addClass('placeholderDrag'); dragX = Math.round(dd.offsetX); dragY = Math.round(dd.offsetY); }); $('svg').live('mouseup', function(event) { - $placeholder.removeClass('placeholderDrag'); + $('#placeholder').removeClass('placeholderDrag'); }); $('svg').live('drag', function(event, dd) { diff --git a/libraries/gis/pma_gis_visualization.php b/libraries/gis/pma_gis_visualization.php index 31a20bbed7..0df2a43487 100644 --- a/libraries/gis/pma_gis_visualization.php +++ b/libraries/gis/pma_gis_visualization.php @@ -431,5 +431,4 @@ class PMA_GIS_Visualization return $results; } } -?> - +?> \ No newline at end of file diff --git a/tbl_change.php b/tbl_change.php index d520737135..cdb9c2f73a 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -116,6 +116,10 @@ if ($GLOBALS['cfg']['ShowPropertyComments']) { */ $GLOBALS['js_include'][] = 'functions.js'; $GLOBALS['js_include'][] = 'tbl_change.js'; +$GLOBALS['js_include'][] = 'jquery/jquery.svg.js'; +$GLOBALS['js_include'][] = 'jquery/jquery.mousewheel.js'; +$GLOBALS['js_include'][] = 'jquery/jquery.event.drag-2.0.min.js'; +$GLOBALS['js_include'][] = 'tbl_gis_visualization.js'; $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; $GLOBALS['js_include'][] = 'jquery/timepicker.js'; /** diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index dbad0c740a..de07493169 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -1569,6 +1569,10 @@ a.close_gis_editor { overflow-x: hidden; } +#gis_data { + min-height: 230px; +} + #gis_data_textarea { height: 6em; } @@ -1576,6 +1580,15 @@ a.close_gis_editor { #gis_data_editor { background: #D0DCE0; padding: 15px; + min-height: 500px; +} + +#gis_data_editor .choice { + display: none; +} + +#gis_data_editor input[type="text"] { + width: 75px; } /** diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 3114904f46..c72cdf5003 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -1913,6 +1913,10 @@ a.close_gis_editor { overflow-x: hidden; } +#gis_data { + min-height: 230px; +} + #gis_data_textarea { height: 6em; } @@ -1920,6 +1924,15 @@ a.close_gis_editor { #gis_data_editor { background: #D0DCE0; padding: 15px; + min-height: 500px; +} + +#gis_data_editor .choice { + display: none; +} + +#gis_data_editor input[type="text"] { + width: 75px; } /** From 2a402a3103c5a12e6c9d2fd2515d7695da2942ff Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Mon, 18 Jul 2011 13:43:46 +0530 Subject: [PATCH 041/442] OpenStreetMaps based data visualization for GIS data editor --- gis_data_editor.php | 8 +++++- js/tbl_change.js | 22 ++++----------- js/tbl_gis_visualization.js | 4 ++- libraries/gis/pma_gis_geometrycollection.php | 9 +++--- libraries/gis/pma_gis_linestring.php | 17 +++++++----- libraries/gis/pma_gis_multilinestring.php | 13 +++++---- libraries/gis/pma_gis_multipoint.php | 17 +++++++----- libraries/gis/pma_gis_multipolygon.php | 17 +++++++----- libraries/gis/pma_gis_point.php | 18 +++++++----- libraries/gis/pma_gis_polygon.php | 17 +++++++----- libraries/gis/pma_gis_visualization.php | 28 ++++++++++++++++++- tbl_change.php | 8 +++++- tbl_gis_visualization.php | 29 -------------------- 13 files changed, 114 insertions(+), 93 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index 80928f96e2..6b35fc6018 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -47,19 +47,22 @@ if (isset($_REQUEST['value'])) { // Generate Well Known Text $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; // Gererate 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'); -$data = array(array('wkt' => $wkt, 'srid' => $srid)); +$data = array(array('wkt' => $wkt_with_zero, 'srid' => $srid)); $visualization = PMA_GIS_visualization_results($data, $visualizationSettings, $format); +$open_layers = PMA_GIS_visualization_results($data, $visualizationSettings, 'ol'); // If the call is to update the WKT and visualization make an AJAX response if(isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) { $extra_data = array( 'result' => $result, 'visualization' => $visualization, + 'openLayers' => $open_layers, ); PMA_ajaxResponse(null, true, $extra_data); } @@ -111,6 +114,9 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { ?> />
+ diff --git a/js/tbl_change.js b/js/tbl_change.js index 8d9963a7c2..183e309212 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -314,9 +314,6 @@ $(document).ready(function() { 'get_gis_editor' : true, 'token' : token }, function(data) { - if (! $.isPlainObject(data)) { - data = $.parseJSON(data); - } if(data.success == true) { $gis_editor.html(data.gis_editor); initVisualization(); @@ -324,7 +321,7 @@ $(document).ready(function() { } else { PMA_ajaxShowMessage(data.error); } - }) + }, 'json') // Make it appear $("#popup_background").css({"opacity":"0.7"}); @@ -344,16 +341,13 @@ $(document).ready(function() { var null_checkbox_name = $form.find("input[name='null_checkbox_name']").val(); $.post('gis_data_editor.php', $form.serialize() + "&generate=true", function(data) { - if (! $.isPlainObject(data)) { - data = $.parseJSON(data); - } if(data.success == true) { $("input[name='" + null_checkbox_name + "']").attr('checked', false); $("input[name='" + input_name + "']").val(data.result); } else { PMA_ajaxShowMessage(data.error); } - }); + }, 'json'); closeGISEditor(); }); @@ -363,17 +357,16 @@ $(document).ready(function() { $('#gis_editor').find("input[type='text']").live('change', function() { var $form = $('form#gis_data_editor_form'); $.post('gis_data_editor.php', $form.serialize() + "&generate=true", function(data) { - if (! $.isPlainObject(data)) { - data = $.parseJSON(data); - } if(data.success == true) { $('#gis_data_textarea').val(data.result); $('#placeholder').empty().removeClass('hasSVG').html(data.visualization); + $('#openlayersmap').empty(); + eval(data.openLayers); initVisualization(); } else { PMA_ajaxShowMessage(data.error); } - }); + }, 'json'); }); /** @@ -384,9 +377,6 @@ $(document).ready(function() { var $form = $('form#gis_data_editor_form'); $.post('gis_data_editor.php', $form.serialize() + "&get_gis_editor=true", function(data) { - if (! $.isPlainObject(data)) { - data = $.parseJSON(data); - } if(data.success == true) { $gis_editor.html(data.gis_editor); initVisualization(); @@ -394,7 +384,7 @@ $(document).ready(function() { } else { PMA_ajaxShowMessage(data.error); } - }); + }, 'json'); }); /** diff --git a/js/tbl_gis_visualization.js b/js/tbl_gis_visualization.js index 0135f30043..6cde8fe474 100644 --- a/js/tbl_gis_visualization.js +++ b/js/tbl_gis_visualization.js @@ -69,7 +69,9 @@ function initVisualization() { 'float' : 'right' }; $openlayersmap.css(cssObj); - drawOpenLayers(); + if (typeof drawOpenLayers == 'function') { + drawOpenLayers(); + } $placeholder.svg({ onLoad: function(svg_ref) { diff --git a/libraries/gis/pma_gis_geometrycollection.php b/libraries/gis/pma_gis_geometrycollection.php index dd4621dad0..331692dd9b 100644 --- a/libraries/gis/pma_gis_geometrycollection.php +++ b/libraries/gis/pma_gis_geometrycollection.php @@ -240,12 +240,13 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry /** * Generate the WKT with the set of parameters passed by the GIS editor. * - * @param array $gis_data GIS data - * @param int $index Index into the parameter object + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * @param string $empty Value for empty points * * @return WKT with the set of parameters passed by the GIS editor */ - public function generateWkt($gis_data, $index) + public function generateWkt($gis_data, $index, $empty = '') { $geom_count = (isset($gis_data['GEOMETRYCOLLECTION']['geom_count'])) ? $gis_data['GEOMETRYCOLLECTION']['geom_count'] : 1; @@ -257,7 +258,7 @@ class PMA_GIS_Geometrycollection extends PMA_GIS_Geometry if (! $gis_obj) { continue; } - $wkt .= $gis_obj->generateWkt($gis_data, $i) . ','; + $wkt .= $gis_obj->generateWkt($gis_data, $i, $empty) . ','; } } if (isset($gis_data[0]['gis_type'])) { diff --git a/libraries/gis/pma_gis_linestring.php b/libraries/gis/pma_gis_linestring.php index 8114451ae0..152aa7b420 100644 --- a/libraries/gis/pma_gis_linestring.php +++ b/libraries/gis/pma_gis_linestring.php @@ -198,12 +198,13 @@ class PMA_GIS_Linestring extends PMA_GIS_Geometry /** * Generate the WKT with the set of parameters passed by the GIS editor. * - * @param array $gis_data GIS data - * @param int $index Index into the parameter object + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * @param string $empty Value for empty points * * @return WKT with the set of parameters passed by the GIS editor */ - public function generateWkt($gis_data, $index) + public function generateWkt($gis_data, $index, $empty = '') { $no_of_points = isset($gis_data[$index]['LINESTRING']['no_of_points']) ? $gis_data[$index]['LINESTRING']['no_of_points'] : 2; @@ -212,10 +213,12 @@ class PMA_GIS_Linestring extends PMA_GIS_Geometry } $wkt = 'LINESTRING('; for ($i = 0; $i < $no_of_points; $i++) { - $wkt .= (isset($gis_data[$index]['LINESTRING'][$i]['x']) - ? $gis_data[$index]['LINESTRING'][$i]['x'] : '') - . ' ' . (isset($gis_data[$index]['LINESTRING'][$i]['y']) - ? $gis_data[$index]['LINESTRING'][$i]['y'] : '') .','; + $wkt .= ((isset($gis_data[$index]['LINESTRING'][$i]['x']) + && trim($gis_data[$index]['LINESTRING'][$i]['x']) != '') + ? $gis_data[$index]['LINESTRING'][$i]['x'] : $empty) + . ' ' . ((isset($gis_data[$index]['LINESTRING'][$i]['y']) + && trim($gis_data[$index]['LINESTRING'][$i]['y']) != '') + ? $gis_data[$index]['LINESTRING'][$i]['y'] : $empty) .','; } $wkt = substr($wkt, 0, strlen($wkt) - 1); $wkt .= ')'; diff --git a/libraries/gis/pma_gis_multilinestring.php b/libraries/gis/pma_gis_multilinestring.php index 0ac845244a..098f442c10 100644 --- a/libraries/gis/pma_gis_multilinestring.php +++ b/libraries/gis/pma_gis_multilinestring.php @@ -229,10 +229,11 @@ class PMA_GIS_Multilinestring extends PMA_GIS_Geometry * * @param array $gis_data GIS data * @param int $index Index into the parameter object + * @param string $empty Value for empty points * * @return WKT with the set of parameters passed by the GIS editor */ - public function generateWkt($gis_data, $index) + public function generateWkt($gis_data, $index, $empty = '') { $no_of_lines = isset($gis_data[$index]['MULTILINESTRING']['no_of_lines']) ? $gis_data[$index]['MULTILINESTRING']['no_of_lines'] : 1; @@ -248,10 +249,12 @@ class PMA_GIS_Multilinestring extends PMA_GIS_Geometry } $wkt .= '('; for ($j = 0; $j < $no_of_points; $j++) { - $wkt .= (isset($gis_data[$index]['MULTILINESTRING'][$i][$j]['x']) - ? $gis_data[$index]['MULTILINESTRING'][$i][$j]['x'] : '') - . ' ' . (isset($gis_data[$index]['MULTILINESTRING'][$i][$j]['y']) - ? $gis_data[$index]['MULTILINESTRING'][$i][$j]['y'] : '') . ','; + $wkt .= ((isset($gis_data[$index]['MULTILINESTRING'][$i][$j]['x']) + && trim($gis_data[$index]['MULTILINESTRING'][$i][$j]['x']) != '') + ? $gis_data[$index]['MULTILINESTRING'][$i][$j]['x'] : $empty) + . ' ' . ((isset($gis_data[$index]['MULTILINESTRING'][$i][$j]['y']) + && trim($gis_data[$index]['MULTILINESTRING'][$i][$j]['y']) != '') + ? $gis_data[$index]['MULTILINESTRING'][$i][$j]['y'] : $empty) . ','; } $wkt = substr($wkt, 0, strlen($wkt) - 1); $wkt .= '),'; diff --git a/libraries/gis/pma_gis_multipoint.php b/libraries/gis/pma_gis_multipoint.php index 086c2c7cd3..7d14c1e625 100644 --- a/libraries/gis/pma_gis_multipoint.php +++ b/libraries/gis/pma_gis_multipoint.php @@ -190,12 +190,13 @@ class PMA_GIS_Multipoint extends PMA_GIS_Geometry /** * Generate the WKT with the set of parameters passed by the GIS editor. * - * @param array $gis_data GIS data - * @param int $index Index into the parameter object + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * @param string $empty Value for empty points * * @return WKT with the set of parameters passed by the GIS editor */ - public function generateWkt($gis_data, $index) + public function generateWkt($gis_data, $index, $empty = '') { $no_of_points = isset($gis_data[$index]['MULTIPOINT']['no_of_points']) ? $gis_data[$index]['MULTIPOINT']['no_of_points'] : 1; @@ -204,10 +205,12 @@ class PMA_GIS_Multipoint extends PMA_GIS_Geometry } $wkt = 'MULTIPOINT('; for ($i = 0; $i < $no_of_points; $i++) { - $wkt .= (isset($gis_data[$index]['MULTIPOINT'][$i]['x']) - ? $gis_data[$index]['MULTIPOINT'][$i]['x'] : '') - . ' ' . (isset($gis_data[$index]['MULTIPOINT'][$i]['y']) - ? $gis_data[$index]['MULTIPOINT'][$i]['y'] : '') . ','; + $wkt .= ((isset($gis_data[$index]['MULTIPOINT'][$i]['x']) + && trim($gis_data[$index]['MULTIPOINT'][$i]['x']) != '') + ? $gis_data[$index]['MULTIPOINT'][$i]['x'] : $empty) + . ' ' . ((isset($gis_data[$index]['MULTIPOINT'][$i]['y']) + && trim($gis_data[$index]['MULTIPOINT'][$i]['y']) != '') + ? $gis_data[$index]['MULTIPOINT'][$i]['y'] : $empty) . ','; } $wkt = substr($wkt, 0, strlen($wkt) - 1); $wkt .= ')'; diff --git a/libraries/gis/pma_gis_multipolygon.php b/libraries/gis/pma_gis_multipolygon.php index 4f57c1db59..345ed59d65 100644 --- a/libraries/gis/pma_gis_multipolygon.php +++ b/libraries/gis/pma_gis_multipolygon.php @@ -315,12 +315,13 @@ class PMA_GIS_Multipolygon extends PMA_GIS_Geometry /** * Generate the WKT with the set of parameters passed by the GIS editor. * - * @param array $gis_data GIS data - * @param int $index Index into the parameter object + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * @param string $empty Value for empty points * * @return WKT with the set of parameters passed by the GIS editor */ - public function generateWkt($gis_data, $index) + public function generateWkt($gis_data, $index, $empty = '') { $no_of_polygons = isset($gis_data[$index]['MULTIPOLYGON']['no_of_polygons']) ? $gis_data[$index]['MULTIPOLYGON']['no_of_polygons'] : 1; @@ -343,10 +344,12 @@ class PMA_GIS_Multipolygon extends PMA_GIS_Geometry } $wkt .= '('; for ($j = 0; $j < $no_of_points; $j++) { - $wkt .= (isset($gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['x']) - ? $gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['x'] : '') - . ' ' . (isset($gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['y']) - ? $gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['y'] : '') .','; + $wkt .= ((isset($gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['x']) + && trim($gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['x']) != '') + ? $gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['x'] : $empty) + . ' ' . ((isset($gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['y']) + && trim($gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['y']) != '') + ? $gis_data[$index]['MULTIPOLYGON'][$k][$i][$j]['y'] : $empty) .','; } $wkt = substr($wkt, 0, strlen($wkt) - 1); $wkt .= '),'; diff --git a/libraries/gis/pma_gis_point.php b/libraries/gis/pma_gis_point.php index 2cade89e57..a1acc0fd80 100644 --- a/libraries/gis/pma_gis_point.php +++ b/libraries/gis/pma_gis_point.php @@ -176,15 +176,19 @@ class PMA_GIS_Point extends PMA_GIS_Geometry /** * Generate the WKT with the set of parameters passed by the GIS editor. * - * @param array $gis_data GIS data - * @param int $index Index into the parameter object + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * @param string $empty Value for empty points * * @return WKT with the set of parameters passed by the GIS editor */ - public function generateWkt($gis_data, $index) + public function generateWkt($gis_data, $index, $empty = '') { - return 'POINT(' . (isset($gis_data[$index]['POINT']['x']) ? $gis_data[$index]['POINT']['x'] : '') - . ' ' . (isset($gis_data[$index]['POINT']['y']) ? $gis_data[$index]['POINT']['y'] : '') . ')'; + return 'POINT(' + . ((isset($gis_data[$index]['POINT']['x']) && trim($gis_data[$index]['POINT']['x']) != '') + ? $gis_data[$index]['POINT']['x'] : $empty) . ' ' + . ((isset($gis_data[$index]['POINT']['y']) && trim($gis_data[$index]['POINT']['y']) != '') + ? $gis_data[$index]['POINT']['y'] : $empty) . ')'; } /** @@ -195,8 +199,8 @@ class PMA_GIS_Point extends PMA_GIS_Geometry * @return the WKT for the data from ESRI shape files */ public function getShape($row_data) { - $gis_data = array(array('POINT' => array('x' => $row_data['x'], 'y' => $row_data['y']))); - return $this->generateWkt($gis_data, 0); + return 'POINT(' . (isset($row_data['x']) ? $row_data['x'] : '') + . ' ' . (isset($row_data['y']) ? $row_data['y'] : '') . ')'; } /** diff --git a/libraries/gis/pma_gis_polygon.php b/libraries/gis/pma_gis_polygon.php index 1f077727a8..17665fdd27 100644 --- a/libraries/gis/pma_gis_polygon.php +++ b/libraries/gis/pma_gis_polygon.php @@ -290,12 +290,13 @@ class PMA_GIS_Polygon extends PMA_GIS_Geometry /** * Generate the WKT with the set of parameters passed by the GIS editor. * - * @param array $gis_data GIS data - * @param int $index Index into the parameter object + * @param array $gis_data GIS data + * @param int $index Index into the parameter object + * @param string $empty Value for empty points * * @return WKT with the set of parameters passed by the GIS editor */ - public function generateWkt($gis_data, $index) + public function generateWkt($gis_data, $index, $empty = '') { $no_of_lines = isset($gis_data[$index]['POLYGON']['no_of_lines']) ? $gis_data[$index]['POLYGON']['no_of_lines'] : 1; @@ -311,10 +312,12 @@ class PMA_GIS_Polygon extends PMA_GIS_Geometry } $wkt .= '('; for ($j = 0; $j < $no_of_points; $j++) { - $wkt .= (isset($gis_data[$index]['POLYGON'][$i][$j]['x']) - ? $gis_data[$index]['POLYGON'][$i][$j]['x'] : '') - . ' ' . (isset($gis_data[$index]['POLYGON'][$i][$j]['y']) - ? $gis_data[$index]['POLYGON'][$i][$j]['y'] : '') .','; + $wkt .= ((isset($gis_data[$index]['POLYGON'][$i][$j]['x']) + && trim($gis_data[$index]['POLYGON'][$i][$j]['x']) != '') + ? $gis_data[$index]['POLYGON'][$i][$j]['x'] : $empty) + . ' ' . ((isset($gis_data[$index]['POLYGON'][$i][$j]['y']) + && trim($gis_data[$index]['POLYGON'][$i][$j]['y']) != '') + ? $gis_data[$index]['POLYGON'][$i][$j]['y'] : $empty) .','; } $wkt = substr($wkt, 0, strlen($wkt) - 1); $wkt .= '),'; diff --git a/libraries/gis/pma_gis_visualization.php b/libraries/gis/pma_gis_visualization.php index 0df2a43487..b86f8527a6 100644 --- a/libraries/gis/pma_gis_visualization.php +++ b/libraries/gis/pma_gis_visualization.php @@ -252,7 +252,33 @@ class PMA_GIS_Visualization { $this->init(); $scale_data = $this->_scaleDataSet($this->_data); - $output = $this->_prepareDataSet($this->_data, 0, $scale_data, 'ol', ''); + $output = + 'var options = {' + . 'projection: new OpenLayers.Projection("EPSG:900913"),' + . 'displayProjection: new OpenLayers.Projection("EPSG:4326"),' + . 'units: "m",' + . 'numZoomLevels: 18,' + . 'maxResolution: 156543.0339,' + . 'maxExtent: new OpenLayers.Bounds(-20037508, -20037508, 20037508, 20037508),' + . 'restrictedExtent: new OpenLayers.Bounds(-20037508, -20037508, 20037508, 20037508)' + . '};' + . 'var map = new OpenLayers.Map("openlayersmap", options);' + . 'var layerNone = new OpenLayers.Layer.Boxes("None", {isBaseLayer: true});' + . 'var layerMapnik = new OpenLayers.Layer.OSM.Mapnik("Mapnik");' + . 'var layerOsmarender = new OpenLayers.Layer.OSM.Osmarender("Osmarender");' + . 'var layerCycleMap = new OpenLayers.Layer.OSM.CycleMap("CycleMap");' + . 'map.addLayers([layerMapnik, layerOsmarender, layerCycleMap, layerNone]);' + . 'var vectorLayer = new OpenLayers.Layer.Vector("Data");' + . 'var bound;'; + $output .= $this->_prepareDataSet($this->_data, 0, $scale_data, 'ol', ''); + $output .= + 'map.addLayer(vectorLayer);' + . 'map.zoomToExtent(bound);' + . 'if (map.getZoom() < 2) {' + . 'map.zoomTo(2);' + . '}' + . 'map.addControl(new OpenLayers.Control.LayerSwitcher());' + . 'map.addControl(new OpenLayers.Control.MousePosition());'; return $output; } diff --git a/tbl_change.php b/tbl_change.php index cdb9c2f73a..86589dd9dc 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -120,6 +120,7 @@ $GLOBALS['js_include'][] = 'jquery/jquery.svg.js'; $GLOBALS['js_include'][] = 'jquery/jquery.mousewheel.js'; $GLOBALS['js_include'][] = 'jquery/jquery.event.drag-2.0.min.js'; $GLOBALS['js_include'][] = 'tbl_gis_visualization.js'; +$GLOBALS['js_include'][] = 'openlayers/OpenLayers.js'; $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; $GLOBALS['js_include'][] = 'jquery/timepicker.js'; /** @@ -967,6 +968,7 @@ foreach ($rows as $row_id => $vrow) { } } if (in_array($field['pma_type'], $gis_data_types)) { + $gis_exists = true; $data_val = isset($vrow[$field['Field']]) ? $vrow[$field['Field']] : ''; $_url_params = array( 'field' => $field['Field_title'], @@ -991,9 +993,13 @@ foreach ($rows as $row_id => $vrow) { $o_rows++; echo '
'; } // end foreach on multi-edit + +// Conditionally add OpenStreetMap.js if geometry columns exist +if (isset($gis_exists) && $gis_exists == true) { + echo(' From 0e4435266b588de8788b01bb92bf8261c3762ab5 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Mon, 18 Jul 2011 14:03:21 +0530 Subject: [PATCH 042/442] Change of classes to avoid conflicts with classes used in tbl_gis_visualization.js --- gis_data_editor.php | 14 +++++++------- js/tbl_change.js | 16 ++++++++-------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index 6b35fc6018..77a6e7adef 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -201,7 +201,7 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { - "> + "> "> +?> ">
+?>
" value="" /> " class="add point" value=""> +?> " class="add addPoint" value="">
" class="add line" value=""> +?>
" class="add addLine" value="">

" class="add polygon" value=""> +?>

" class="add addPolygon" value="">

" /> +?>

" />
diff --git a/js/tbl_change.js b/js/tbl_change.js index 183e309212..cd68a01ce1 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -397,7 +397,7 @@ $(document).ready(function() { /** * Handles adding data points */ - $('.addJs.point').live('click', function() { + $('.addJs.addPoint').live('click', function() { var $a = $(this); var name = $a.attr('name'); // Eg. name = gis_data[0][MULTIPOINT][add_point] => prefix = gis_data[0][MULTIPOINT] @@ -414,7 +414,7 @@ $(document).ready(function() { /** * Handles adding linestrings and inner rings */ - $('.line.addJs').live('click', function() { + $('.addLine.addJs').live('click', function() { var $a = $(this); var name = $a.attr('name'); @@ -439,7 +439,7 @@ $(document).ready(function() { for (i = 0; i < noOfPoints; i++) { html += addDataPoint(i, (prefix + '[' + noOfLines + ']')); } - html += '+ ' + html += '+ ' + PMA_messages['strAddPoint'] + '
'; $a.before(html); @@ -449,7 +449,7 @@ $(document).ready(function() { /** * Handles adding polygons */ - $('.addJs.polygon').live('click', function() { + $('.addJs.addPolygon').live('click', function() { var $a = $(this); var name = $a.attr('name'); // Eg. name = gis_data[0][MULTIPOLYGON][add_polygon] => prefix = gis_data[0][MULTIPOLYGON] @@ -466,9 +466,9 @@ $(document).ready(function() { for (i = 0; i < 4; i++) { html += addDataPoint(i, (prefix + '[' + noOfPolygons + '][0]')); } - html += '+ ' - + PMA_messages['strAddPoint'] + '
'; - + '+ ' + html += '+ ' + + PMA_messages['strAddPoint'] + '
' + + '+ ' + PMA_messages['strAddInnerRing'] + '

'; $a.before(html); @@ -478,7 +478,7 @@ $(document).ready(function() { /** * Handles adding geoms */ - $('.addJs.geom').live('click', function() { + $('.addJs.addGeom').live('click', function() { var $a = $(this); var prefix = 'gis_data[GEOMETRYCOLLECTION]'; // Find the number of geoms From 015ad8968008284f565ecd1274f37ddcd89ca06e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 20 Jul 2011 15:41:35 +0530 Subject: [PATCH 043/442] Size of GIS visualization auto adjusted to fit the available space --- js/tbl_gis_visualization.js | 33 +++++++++++++++++++++++++++++---- 1 file changed, 29 insertions(+), 4 deletions(-) diff --git a/js/tbl_gis_visualization.js b/js/tbl_gis_visualization.js index 6cde8fe474..c022961e9e 100644 --- a/js/tbl_gis_visualization.js +++ b/js/tbl_gis_visualization.js @@ -8,7 +8,9 @@ */ var x = 0; +var default_x = 0; var y = 0; +var default_y = 0; var scale = 1; var svg; @@ -61,7 +63,26 @@ function initVisualization() { } else { $placeholder.hide(); } - + + // Resizing the visualization + if ($('.gis_table').length > 0) { // If we are in GIS data visualization + // Hide inputs for width and height + $("input[name='visualizationSettings[width]']").parents('tr').remove(); + $("input[name='visualizationSettings[height]']").parents('tr').remove(); + + var old_width = $placeholder.width(); + var extra = 100; + var leftWidth = $('.gis_table').width(); + var windowWidth = document.documentElement.clientWidth; + var visWidth = windowWidth - extra - leftWidth; + // assign new value for width + $placeholder.width(visWidth); + $('svg').attr('width', visWidth); + // assign the offset created due to resizing to default_x and center the svg. + default_x = (visWidth - old_width) / 2; + x = default_x; + } + var cssObj = { 'border' : '1px solid #aaa', 'width' : $placeholder.width(), @@ -96,6 +117,7 @@ function initVisualization() { } $('.choice').show(); + zoomAndPan(); } /** @@ -111,7 +133,10 @@ function initVisualization() { * Displaying tooltips for GIS objects. */ $(document).ready(function() { - initVisualization(); + // If we are in GIS data visualization + if ($('.gis_table').length > 0) { + initVisualization(); + } $('#choice').live('click', function() { if ($(this).prop('checked') == false) { @@ -187,8 +212,8 @@ $(document).ready(function() { $('#zoom_world').live('click', function(e) { e.preventDefault(); scale = 1; - x = 0; - y = 0; + x = default_x; + y = default_y; zoomAndPan(); }); From 47762d7b14815296256dea277647f152c1c5c2fc Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 20 Jul 2011 23:07:53 +0530 Subject: [PATCH 044/442] Better organized JS code --- gis_data_editor.php | 4 +- js/tbl_change.js | 21 ++++++-- js/tbl_gis_visualization.js | 105 ++++++++++++++++++++++++------------ 3 files changed, 91 insertions(+), 39 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index 77a6e7adef..11d606a01d 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -297,9 +297,9 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { " class="add addPoint" value="">
" class="add addLine" value=""> +?>
" class="add addLine" value="">


" class="add addPolygon" value=""> +?>
" class="add addPolygon" value=""> '; } +/** + * Initialize the visualization in the GIS data editor. + */ +function initGISEditorVisualization() { + // Loads either SVG or OSM visualization based on the choice + selectVisualization(); + // Adds necessary styles to the div that coontains the openStreetMap + styleOSM(); + // Loads the SVG element and make a reference to it + loadSVG(); + // Adds controllers for zooming and panning + addZoomPanControllers(); + zoomAndPan(); +} + /** * Ajax handlers for Change Table page * @@ -316,7 +331,7 @@ $(document).ready(function() { }, function(data) { if(data.success == true) { $gis_editor.html(data.gis_editor); - initVisualization(); + initGISEditorVisualization(); prepareJSVersion(); } else { PMA_ajaxShowMessage(data.error); @@ -362,7 +377,7 @@ $(document).ready(function() { $('#placeholder').empty().removeClass('hasSVG').html(data.visualization); $('#openlayersmap').empty(); eval(data.openLayers); - initVisualization(); + initGISEditorVisualization(); } else { PMA_ajaxShowMessage(data.error); } @@ -379,7 +394,7 @@ $(document).ready(function() { $.post('gis_data_editor.php', $form.serialize() + "&get_gis_editor=true", function(data) { if(data.success == true) { $gis_editor.html(data.gis_editor); - initVisualization(); + initGISEditorVisualization(); prepareJSVersion(); } else { PMA_ajaxShowMessage(data.error); diff --git a/js/tbl_gis_visualization.js b/js/tbl_gis_visualization.js index c022961e9e..c31ad8f6b0 100644 --- a/js/tbl_gis_visualization.js +++ b/js/tbl_gis_visualization.js @@ -52,47 +52,36 @@ function zoomAndPan() { } /** - * Initialize the visualization. + * Initially loads either SVG or OSM visualization based on the choice. */ -function initVisualization() { - var $placeholder = $('#placeholder'); - var $openlayersmap = $('#openlayersmap'); - +function selectVisualization() { if ($('#choice').prop('checked') != true) { - $openlayersmap.hide(); + $('#openlayersmap').hide(); } else { - $placeholder.hide(); - } - - // Resizing the visualization - if ($('.gis_table').length > 0) { // If we are in GIS data visualization - // Hide inputs for width and height - $("input[name='visualizationSettings[width]']").parents('tr').remove(); - $("input[name='visualizationSettings[height]']").parents('tr').remove(); - - var old_width = $placeholder.width(); - var extra = 100; - var leftWidth = $('.gis_table').width(); - var windowWidth = document.documentElement.clientWidth; - var visWidth = windowWidth - extra - leftWidth; - // assign new value for width - $placeholder.width(visWidth); - $('svg').attr('width', visWidth); - // assign the offset created due to resizing to default_x and center the svg. - default_x = (visWidth - old_width) / 2; - x = default_x; + $('#placeholder').hide(); } + $('.choice').show(); +} +/** + * Adds necessary styles to the div that coontains the openStreetMap. + */ +function styleOSM() { + var $placeholder = $('#placeholder'); var cssObj = { 'border' : '1px solid #aaa', 'width' : $placeholder.width(), 'height' : $placeholder.height(), 'float' : 'right' }; - $openlayersmap.css(cssObj); - if (typeof drawOpenLayers == 'function') { - drawOpenLayers(); - } + $('#openlayersmap').css(cssObj); +} + +/** + * Loads the SVG element and make a reference to it. + */ +function loadSVG() { + var $placeholder = $('#placeholder'); $placeholder.svg({ onLoad: function(svg_ref) { @@ -100,9 +89,15 @@ function initVisualization() { } }); - // Removes the second SVG element unnecessarily added due to the above command. + // Removes the second SVG element unnecessarily added due to the above command $placeholder.find('svg:nth-child(2)').remove(); +} +/** + * Adds controllers for zooming and panning. + */ +function addZoomPanControllers() { + var $placeholder = $('#placeholder'); if ($("#placeholder svg").length > 0) { var pmaThemeImage = $('#pmaThemeImage').attr('value'); // add panning arrows @@ -115,8 +110,49 @@ function initVisualization() { $('').appendTo($placeholder); $('').appendTo($placeholder); } +} - $('.choice').show(); +/** + * Resizes the GIS visualization to fit into the space available. + */ +function resizeGISVisualization() { + var $placeholder = $('#placeholder'); + + // Hide inputs for width and height + $("input[name='visualizationSettings[width]']").parents('tr').remove(); + $("input[name='visualizationSettings[height]']").parents('tr').remove(); + + var old_width = $placeholder.width(); + var extraPadding = 100; + var leftWidth = $('.gis_table').width(); + var windowWidth = document.documentElement.clientWidth; + var visWidth = windowWidth - extraPadding - leftWidth; + + // Assign new value for width + $placeholder.width(visWidth); + $('svg').attr('width', visWidth); + + // Assign the offset created due to resizing to default_x and center the svg. + default_x = (visWidth - old_width) / 2; + x = default_x; +} + +/** + * Initialize the GIS visualization. + */ +function initGISVisualization() { + // Loads either SVG or OSM visualization based on the choice + selectVisualization(); + // Resizes the GIS visualization to fit into the space available + resizeGISVisualization(); + // Adds necessary styles to the div that coontains the openStreetMap + styleOSM(); + // Draws openStreetMap with openLayers + drawOpenLayers(); + // Loads the SVG element and make a reference to it + loadSVG(); + // Adds controllers for zooming and panning + addZoomPanControllers(); zoomAndPan(); } @@ -133,9 +169,10 @@ function initVisualization() { * Displaying tooltips for GIS objects. */ $(document).ready(function() { - // If we are in GIS data visualization + + // If we are in GIS visualization, initialize it if ($('.gis_table').length > 0) { - initVisualization(); + initGISVisualization(); } $('#choice').live('click', function() { From 1f2ba4e9cc51c2bf2b1c1b96f78f29143e033e36 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 24 Jul 2011 22:17:03 +0530 Subject: [PATCH 045/442] Resolves problems with point and multipoint visualizations due to the assumption of empty values as zeros --- libraries/gis/pma_gis_geometry.php | 13 +++++++--- libraries/gis/pma_gis_multipoint.php | 38 ++++++++++++++++++---------- libraries/gis/pma_gis_point.php | 36 ++++++++++++++++---------- 3 files changed, 55 insertions(+), 32 deletions(-) diff --git a/libraries/gis/pma_gis_geometry.php b/libraries/gis/pma_gis_geometry.php index 787eaf3e23..075f77808b 100644 --- a/libraries/gis/pma_gis_geometry.php +++ b/libraries/gis/pma_gis_geometry.php @@ -142,11 +142,16 @@ abstract class PMA_GIS_Geometry $cordinates = explode(" ", $point); if ($scale_data != null) { - $x = ($cordinates[0] - $scale_data['x']) * $scale_data['scale']; - $y = $scale_data['height'] - ($cordinates[1] - $scale_data['y']) * $scale_data['scale']; + if (trim($cordinates[0]) != '' && trim($cordinates[1]) != '') { + $x = ($cordinates[0] - $scale_data['x']) * $scale_data['scale']; + $y = $scale_data['height'] - ($cordinates[1] - $scale_data['y']) * $scale_data['scale']; + } else { + $x = ''; + $y = ''; + } } else { - $x = $cordinates[0]; - $y = $cordinates[1]; + $x = trim($cordinates[0]); + $y = trim($cordinates[1]); } if (! $linear) { diff --git a/libraries/gis/pma_gis_multipoint.php b/libraries/gis/pma_gis_multipoint.php index bbec0f6f51..4c9b3aae49 100644 --- a/libraries/gis/pma_gis_multipoint.php +++ b/libraries/gis/pma_gis_multipoint.php @@ -70,7 +70,9 @@ class PMA_GIS_Multipoint extends PMA_GIS_Geometry foreach ($points_arr as $point) { // draw a small circle to mark the point - imagearc($image, $point[0], $point[1], 7, 7, 0, 360, $color); + if ($point[0] != '' && $point[1] != '') { + imagearc($image, $point[0], $point[1], 7, 7, 0, 360, $color); + } } return $image; } @@ -100,7 +102,9 @@ class PMA_GIS_Multipoint extends PMA_GIS_Geometry foreach ($points_arr as $point) { // draw a small circle to mark the point - $pdf->Circle($point[0], $point[1], 2, 0, 360, 'D', $line); + if ($point[0] != '' && $point[1] != '') { + $pdf->Circle($point[0], $point[1], 2, 0, 360, 'D', $line); + } } return $pdf; } @@ -131,12 +135,14 @@ class PMA_GIS_Multipoint extends PMA_GIS_Geometry $row = ''; foreach ($points_arr as $point) { - $row .= ' $val) { - $row .= ' ' . $option . '="' . trim($val) . '"'; + if ($point[0] != '' && $point[1] != '') { + $row .= ' $val) { + $row .= ' ' . $option . '="' . trim($val) . '"'; + } + $row .= '/>'; } - $row .= '/>'; } return $row; @@ -176,11 +182,15 @@ class PMA_GIS_Multipoint extends PMA_GIS_Geometry $row = 'new Array('; foreach ($points_arr as $point) { - $row .= '(new OpenLayers.Geometry.Point(' . $point[0] . ', ' . $point[1] - . ')).transform(new OpenLayers.Projection("EPSG:' . $srid - . '"), map.getProjectionObject()), '; + if ($point[0] != '' && $point[1] != '') { + $row .= '(new OpenLayers.Geometry.Point(' . $point[0] . ', ' . $point[1] + . ')).transform(new OpenLayers.Projection("EPSG:' . $srid + . '"), map.getProjectionObject()), '; + } + } + if (substr($row, strlen($row) - 2) == ', ') { + $row = substr($row, 0, strlen($row) - 2); } - $row = substr($row, 0, strlen($row) - 2); $row .= ')'; $result .= 'vectorLayer.addFeatures(new OpenLayers.Feature.Vector(' @@ -194,7 +204,7 @@ class PMA_GIS_Multipoint extends PMA_GIS_Geometry * * @param array $gis_data GIS data * @param int $index Index into the parameter object - * @param string $empty Value for empty points + * @param string $empty Multipoint does not adhere to this * * @return WKT with the set of parameters passed by the GIS editor */ @@ -209,10 +219,10 @@ class PMA_GIS_Multipoint extends PMA_GIS_Geometry for ($i = 0; $i < $no_of_points; $i++) { $wkt .= ((isset($gis_data[$index]['MULTIPOINT'][$i]['x']) && trim($gis_data[$index]['MULTIPOINT'][$i]['x']) != '') - ? $gis_data[$index]['MULTIPOINT'][$i]['x'] : $empty) + ? $gis_data[$index]['MULTIPOINT'][$i]['x'] : '') . ' ' . ((isset($gis_data[$index]['MULTIPOINT'][$i]['y']) && trim($gis_data[$index]['MULTIPOINT'][$i]['y']) != '') - ? $gis_data[$index]['MULTIPOINT'][$i]['y'] : $empty) . ','; + ? $gis_data[$index]['MULTIPOINT'][$i]['y'] : '') . ','; } $wkt = substr($wkt, 0, strlen($wkt) - 1); $wkt .= ')'; diff --git a/libraries/gis/pma_gis_point.php b/libraries/gis/pma_gis_point.php index 0b4bff15aa..bca3843c5e 100644 --- a/libraries/gis/pma_gis_point.php +++ b/libraries/gis/pma_gis_point.php @@ -69,7 +69,9 @@ class PMA_GIS_Point extends PMA_GIS_Geometry $points_arr = $this->extractPoints($point, $scale_data); // draw a small circle to mark the point - imagearc($image, $points_arr[0][0], $points_arr[0][1], 7, 7, 0, 360, $color); + if ($points_arr[0][0] != '' && $points_arr[0][1] != '') { + imagearc($image, $points_arr[0][0], $points_arr[0][1], 7, 7, 0, 360, $color); + } return $image; } @@ -97,7 +99,9 @@ class PMA_GIS_Point extends PMA_GIS_Geometry $points_arr = $this->extractPoints($point, $scale_data); // draw a small circle to mark the point - $pdf->Circle($points_arr[0][0], $points_arr[0][1], 2, 0, 360, 'D', $line); + if ($points_arr[0][0] != '' && $points_arr[0][1] != '') { + $pdf->Circle($points_arr[0][0], $points_arr[0][1], 2, 0, 360, 'D', $line); + } return $pdf; } @@ -126,11 +130,13 @@ class PMA_GIS_Point extends PMA_GIS_Geometry $point = substr($spatial, 6, (strlen($spatial) - 7)); $points_arr = $this->extractPoints($point, $scale_data); - $row = ' $val) { - $row .= ' ' . $option . '="' . trim($val) . '"'; + if ($points_arr[0][0] != '' && $points_arr[0][1] != '') { + $row = ' $val) { + $row .= ' ' . $option . '="' . trim($val) . '"'; + } + $row .= '/>'; } - $row .= '/>'; return $row; } @@ -167,11 +173,13 @@ class PMA_GIS_Point extends PMA_GIS_Geometry $point = substr($spatial, 6, (strlen($spatial) - 7)); $points_arr = $this->extractPoints($point, null); - $result .= 'vectorLayer.addFeatures(new OpenLayers.Feature.Vector((' - . 'new OpenLayers.Geometry.Point(' . $points_arr[0][0] . ', ' - . $points_arr[0][1] . ').transform(new OpenLayers.Projection("EPSG:' - . $srid . '"), map.getProjectionObject())), null, ' - . json_encode($style_options) . '));'; + if ($points_arr[0][0] != '' && $points_arr[0][1] != '') { + $result .= 'vectorLayer.addFeatures(new OpenLayers.Feature.Vector((' + . 'new OpenLayers.Geometry.Point(' . $points_arr[0][0] . ', ' + . $points_arr[0][1] . ').transform(new OpenLayers.Projection("EPSG:' + . $srid . '"), map.getProjectionObject())), null, ' + . json_encode($style_options) . '));'; + } return $result; } @@ -180,7 +188,7 @@ class PMA_GIS_Point extends PMA_GIS_Geometry * * @param array $gis_data GIS data * @param int $index Index into the parameter object - * @param string $empty Value for empty points + * @param string $empty Point deos not adhere to this parameter * * @return WKT with the set of parameters passed by the GIS editor */ @@ -188,9 +196,9 @@ class PMA_GIS_Point extends PMA_GIS_Geometry { return 'POINT(' . ((isset($gis_data[$index]['POINT']['x']) && trim($gis_data[$index]['POINT']['x']) != '') - ? $gis_data[$index]['POINT']['x'] : $empty) . ' ' + ? $gis_data[$index]['POINT']['x'] : '') . ' ' . ((isset($gis_data[$index]['POINT']['y']) && trim($gis_data[$index]['POINT']['y']) != '') - ? $gis_data[$index]['POINT']['y'] : $empty) . ')'; + ? $gis_data[$index]['POINT']['y'] : '') . ')'; } /** From 11ca5daa412c0338d63020f94f74530e95463ce9 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 24 Jul 2011 22:30:52 +0530 Subject: [PATCH 046/442] Change of color --- libraries/gis/pma_gis_visualization.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/gis/pma_gis_visualization.php b/libraries/gis/pma_gis_visualization.php index 87bd281232..b6f1e95587 100644 --- a/libraries/gis/pma_gis_visualization.php +++ b/libraries/gis/pma_gis_visualization.php @@ -18,11 +18,11 @@ class PMA_GIS_Visualization // Array of colors to be used for GIS visualizations. 'colors' => array( - '#BCE02E', + '#B02EE0', '#E0642E', '#E0D62E', '#2E97E0', - '#B02EE0', + '#BCE02E', '#E02E75', '#5CE02E', '#E0B02E', From 01976f1663f7d36d18f65574276f7250b506ef94 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 28 Jul 2011 11:44:18 +0530 Subject: [PATCH 047/442] Handle the cases where URL is too long --- js/tbl_change.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/tbl_change.js b/js/tbl_change.js index fa0a88fce9..4860ead0c7 100644 --- a/js/tbl_change.js +++ b/js/tbl_change.js @@ -293,6 +293,8 @@ function initGISEditorVisualization() { * Restart insertion with 'N' rows. */ $(document).ready(function() { + // Remove the class that is added due to the URL being too long. + $('.open_gis_editor a').removeClass('formLinkSubmit'); $('.open_gis_editor').live('click', function(event) { event.preventDefault(); From 47a8dcfc8885a0086fc8c8b9b5a49e783d81180a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 28 Jul 2011 12:06:15 +0530 Subject: [PATCH 048/442] Function based search - for unary functions --- libraries/common.lib.php | 105 ++++++++++++++++++++++++++++++++++++++- tbl_select.php | 63 ++++++++++++++++++++--- 2 files changed, 161 insertions(+), 7 deletions(-) diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 88ea11fa04..21a2030b09 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -3005,7 +3005,7 @@ function PMA_unsupportedDatatypes() { return $no_support_types; } -function PMA_getGISDatatypes() { +function PMA_getGISDatatypes($upper_case = false) { $gis_data_types = array('geometry', 'point', 'linestring', @@ -3015,9 +3015,112 @@ function PMA_getGISDatatypes() { 'multipolygon', 'geometrycollection' ); + if ($upper_case) { + for ($i = 0; $i < count($gis_data_types); $i++) { + $gis_data_types[$i] = strtoupper($gis_data_types[$i]); + } + } return $gis_data_types; } + +/** + * Returns the names and details of the functions + * that can be applied on geometry data typess. + * + * @param string $geom_type if provided the output is limited to the functions + * that are applicable to the provided geometry type. + * @param bool $binary if set to false functions that take two geometries + * as arguments will not be included. + * @param bool $display if set to true seperators will be added to the + * output array. + * + * @return array names and details of the functions that can be applied on + * geometry data typess. + */ +function PMA_getGISFunctions($geom_type = null, $binary = true, $display = false) { + // Unary functions common to all geomety types + $funcs = array(); + if ($display) { + $funcs[] = array('name' => ' '); + } + + $funcs[] = array('name' => 'Dimension', 'params' => 1, 'type' => 'int'); + //$funcs[] = array('name' => 'Envelope', 'params' => 1, 'type' => 'Polygon'); + $funcs[] = array('name' => 'GeometryType', 'params' => 1, 'type' => 'text'); + $funcs[] = array('name' => 'SRID', 'params' => 1, 'type' => 'int'); + $funcs[] = array('name' => 'IsEmpty', 'params' => 1, 'type' => 'int'); + $funcs[] = array('name' => 'IsSimple', 'params' => 1, 'type' => 'int'); + + $geom_type = trim(strtolower($geom_type)); + if ($display && $geom_type != 'geometry' && $geom_type != 'multipoint') { + $funcs[] = array('name' => '--------'); + } + + if ($geom_type == 'point') { + $funcs[] = array('name' => 'X', 'params' => 1, 'type' => 'float'); + $funcs[] = array('name' => 'Y', 'params' => 1, 'type' => 'float'); + } elseif ($geom_type == 'multipoint') { + // no fucntions here + } elseif ($geom_type == 'linestring') { + //$funcs[] = array('name' => 'EndPoint', 'params' => 1, 'type' => 'Point'); + $funcs[] = array('name' => 'GLength', 'params' => 1, 'type' => 'float'); + $funcs[] = array('name' => 'NumPoints', 'params' => 1, 'type' => 'int'); + //$funcs[] = array('name' => 'StartPoint', 'params' => 1, 'type' => 'Point'); + $funcs[] = array('name' => 'IsRing', 'params' => 1, 'type' => 'int'); + } elseif ($geom_type == 'multilinestring') { + $funcs[] = array('name' => 'GLength', 'params' => 1, 'type' => 'float'); + $funcs[] = array('name' => 'IsClosed', 'params' => 1, 'type' => 'int'); + } elseif ($geom_type == 'polygon') { + $funcs[] = array('name' => 'Area', 'params' => 1, 'type' => 'float'); + //$funcs[] = array('name' => 'ExteriorRing', 'params' => 1, 'type' => 'Linestring'); + $funcs[] = array('name' => 'NumInteriorRings', 'params' => 1, 'type' => 'int'); + } elseif ($geom_type == 'multipolygon') { + $funcs[] = array('name' => 'Area', 'params' => 1, 'type' => 'float'); + //$funcs[] = array('name' => 'Centroid', 'params' => 1, 'type' => 'Point'); + // Not yet implemented in MySQL + //$funcs[] = array('name' => 'PointOnSurface', 'params' => 1, 'type' => 'Point'); + } elseif ($geom_type == 'geometrycollection') { + $funcs[] = array('name' => 'NumGeometries', 'params' => 1, 'type' => 'int'); + } + + // If we are asked for binary functions as well + if ($binary) { + if ($display) { + $funcs[] = array('name' => '--------'); + } + $binary = array( + array('name' => 'Crosses', 'params' => 2, 'type' => 'int'), + array('name' => 'Contains', 'params' => 2, 'type' => 'int'), + array('name' => 'Disjoint', 'params' => 2, 'type' => 'int'), + array('name' => 'Equals', 'params' => 2, 'type' => 'int'), + array('name' => 'Intersects', 'params' => 2, 'type' => 'int'), + array('name' => 'Overlaps', 'params' => 2, 'type' => 'int'), + array('name' => 'Touches', 'params' => 2, 'type' => 'int'), + array('name' => 'Within', 'params' => 2, 'type' => 'int'), + ); + + // If MySQl version is greaeter than or equal 5.6.1, use the ST_ prefix. + if (PMA_MYSQL_INT_VERSION >= 50601) { + for ($i = 0; $i < count($binary); $i++) { + $binary[$i]['name'] = 'ST_' . $binary[$i]['name']; + } + } + $funcs = array_merge($funcs, $binary); + if ($display) { + $funcs[] = array('name' => '--------'); + } + $funcs[] = array('name' => 'MBRContains', 'params' => 2, 'type' => 'int'); + $funcs[] = array('name' => 'MBRDisjoint', 'params' => 2, 'type' => 'int'); + $funcs[] = array('name' => 'MBREquals', 'params' => 2, 'type' => 'int'); + $funcs[] = array('name' => 'MBRIntersects', 'params' => 2, 'type' => 'int'); + $funcs[] = array('name' => 'MBROverlaps', 'params' => 2, 'type' => 'int'); + $funcs[] = array('name' => 'MBRTouches', 'params' => 2, 'type' => 'int'); + $funcs[] = array('name' => 'MBRWithin', 'params' => 2, 'type' => 'int'); + } + return $funcs; +} + /** * Creates a dropdown box with MySQL functions for a particular column. * diff --git a/tbl_select.php b/tbl_select.php index c6b0a35332..eb19a7d285 100644 --- a/tbl_select.php +++ b/tbl_select.php @@ -35,6 +35,7 @@ if ($GLOBALS['cfg']['PropertiesIconic'] == true) { $titles['Browse'] = __('Browse foreign values'); } +$geom_types = PMA_getGISDatatypes(); /** * Not selection yet required -> displays the selection form */ @@ -64,9 +65,14 @@ if (! isset($param) || $param[0] == '') { $result = PMA_DBI_query('SHOW FULL FIELDS FROM ' . PMA_backquote($table) . ' FROM ' . PMA_backquote($db) . ';', null, PMA_DBI_QUERY_STORE); $fields_cnt = PMA_DBI_num_rows($result); $fields_list = $fields_null = $fields_type = $fields_collation = array(); + $geom_column_present = false; while ($row = PMA_DBI_fetch_assoc($result)) { $fields_list[] = $row['Field']; $type = $row['Type']; + // check whether table contains geometric columns + if (in_array($type, $geom_types)) { + $geom_column_present = true; + } // reformat mysql query output if (strncasecmp($type, 'set', 3) == 0 || strncasecmp($type, 'enum', 4) == 0) { @@ -111,7 +117,13 @@ if (! isset($param) || $param[0] == '') { - + '); echo __('Function'); echo(''); + } + ?> + @@ -125,6 +137,27 @@ if (! isset($param) || $param[0] == '') { for ($i = 0; $i < $fields_cnt; $i++) { ?> + '); + // if a geometry column + if (in_array($fields_type[$i], $geom_types)) { + echo(''); + } else { + echo(' '); + } + echo(''); + } + ?> @@ -360,13 +393,31 @@ else { "= ''" => 1, "!= ''" => 1 ); + $geom_unary_operators = array( + 'IsEmpty' => 1, + 'IsSimple' => 1, + 'IsRing' => 1, + 'IsClosed' => 1, + ); $cnt_func = count($func); reset($func); while (list($i, $func_type) = each($func)) { + // If geometry funciton is set apply it to the field name + if (isset($geom_func[$i]) && trim($geom_func[$i]) != '') { + $backquoted_name = $geom_func[$i] . '(' . PMA_backquote($names[$i]) . ')'; + // If the intended where clause is something like 'IsEmpty(`spatial_col_name`)' + if (isset($geom_unary_operators[$geom_func[$i]]) && trim($fields[$i]) == '') { + $w[] = $backquoted_name; + continue; + } + } else { + $backquoted_name = PMA_backquote($names[$i]); + } + list($charsets[$i]) = explode('_', $collations[$i]); if (isset($unary_operators[$func_type])) { $fields[$i] = ''; - $w[] = PMA_backquote($names[$i]) . ' ' . $func_type; + $w[] = $backquoted_name . ' ' . $func_type; } elseif (strncasecmp($types[$i], 'enum', 4) == 0) { if (!empty($fields[$i])) { @@ -393,7 +444,7 @@ else { $enum_where .= ', \'' . PMA_sqlAddSlashes($fields[$i][$e]) . '\''; } - $w[] = PMA_backquote($names[$i]) . ' ' . $func_type . ' ' . $parens_open . $enum_where . $parens_close; + $w[] = $backquoted_name . ' ' . $func_type . ' ' . $parens_open . $enum_where . $parens_close; } } elseif ($fields[$i] != '') { @@ -425,12 +476,12 @@ else { $value = $quot . PMA_sqlAddSlashes(trim($value)) . $quot; if ($func_type == 'BETWEEN' || $func_type == 'NOT BETWEEN') - $w[] = PMA_backquote($names[$i]) . ' ' . $func_type . ' ' . (isset($values[0]) ? $values[0] : '') . ' AND ' . (isset($values[1]) ? $values[1] : ''); + $w[] = $backquoted_name . ' ' . $func_type . ' ' . (isset($values[0]) ? $values[0] : '') . ' AND ' . (isset($values[1]) ? $values[1] : ''); else - $w[] = PMA_backquote($names[$i]) . ' ' . $func_type . ' (' . implode(',', $values) . ')'; + $w[] = $backquoted_name . ' ' . $func_type . ' (' . implode(',', $values) . ')'; } else { - $w[] = PMA_backquote($names[$i]) . ' ' . $func_type . ' ' . $quot . PMA_sqlAddSlashes($fields[$i]) . $quot;; + $w[] = $backquoted_name . ' ' . $func_type . ' ' . $quot . PMA_sqlAddSlashes($fields[$i]) . $quot;; } } // end if From e456f221494e1ccf76d5b8f73ca5e6896feec113 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 31 Jul 2011 01:11:11 +0530 Subject: [PATCH 049/442] Detect the output type of the functions being applied --- libraries/common.lib.php | 108 +++++++++++++++++++++------------------ tbl_select.php | 13 +++-- 2 files changed, 68 insertions(+), 53 deletions(-) diff --git a/libraries/common.lib.php b/libraries/common.lib.php index 21a2030b09..a31ffc682c 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -3039,84 +3039,92 @@ function PMA_getGISDatatypes($upper_case = false) { * geometry data typess. */ function PMA_getGISFunctions($geom_type = null, $binary = true, $display = false) { - // Unary functions common to all geomety types + $funcs = array(); if ($display) { - $funcs[] = array('name' => ' '); + $funcs[] = array('display' => ' '); } - $funcs[] = array('name' => 'Dimension', 'params' => 1, 'type' => 'int'); - //$funcs[] = array('name' => 'Envelope', 'params' => 1, 'type' => 'Polygon'); - $funcs[] = array('name' => 'GeometryType', 'params' => 1, 'type' => 'text'); - $funcs[] = array('name' => 'SRID', 'params' => 1, 'type' => 'int'); - $funcs[] = array('name' => 'IsEmpty', 'params' => 1, 'type' => 'int'); - $funcs[] = array('name' => 'IsSimple', 'params' => 1, 'type' => 'int'); + // Unary functions common to all geomety types + $funcs['Dimension'] = array('params' => 1, 'type' => 'int'); + $funcs['Envelope'] = array('params' => 1, 'type' => 'Polygon'); + $funcs['GeometryType'] = array('params' => 1, 'type' => 'text'); + $funcs['SRID'] = array('params' => 1, 'type' => 'int'); + $funcs['IsEmpty'] = array('params' => 1, 'type' => 'int'); + $funcs['IsSimple'] = array('params' => 1, 'type' => 'int'); $geom_type = trim(strtolower($geom_type)); if ($display && $geom_type != 'geometry' && $geom_type != 'multipoint') { - $funcs[] = array('name' => '--------'); + $funcs[] = array('display' => '--------'); } + // Unary functions that are specific to each geomety type if ($geom_type == 'point') { - $funcs[] = array('name' => 'X', 'params' => 1, 'type' => 'float'); - $funcs[] = array('name' => 'Y', 'params' => 1, 'type' => 'float'); + $funcs['X'] = array('params' => 1, 'type' => 'float'); + $funcs['Y'] = array('params' => 1, 'type' => 'float'); } elseif ($geom_type == 'multipoint') { // no fucntions here } elseif ($geom_type == 'linestring') { - //$funcs[] = array('name' => 'EndPoint', 'params' => 1, 'type' => 'Point'); - $funcs[] = array('name' => 'GLength', 'params' => 1, 'type' => 'float'); - $funcs[] = array('name' => 'NumPoints', 'params' => 1, 'type' => 'int'); - //$funcs[] = array('name' => 'StartPoint', 'params' => 1, 'type' => 'Point'); - $funcs[] = array('name' => 'IsRing', 'params' => 1, 'type' => 'int'); + $funcs['EndPoint'] = array('params' => 1, 'type' => 'point'); + $funcs['GLength'] = array('params' => 1, 'type' => 'float'); + $funcs['NumPoints'] = array('params' => 1, 'type' => 'int'); + $funcs['StartPoint'] = array('params' => 1, 'type' => 'point'); + $funcs['IsRing'] = array('params' => 1, 'type' => 'int'); } elseif ($geom_type == 'multilinestring') { - $funcs[] = array('name' => 'GLength', 'params' => 1, 'type' => 'float'); - $funcs[] = array('name' => 'IsClosed', 'params' => 1, 'type' => 'int'); + $funcs['GLength'] = array('params' => 1, 'type' => 'float'); + $funcs['IsClosed'] = array('params' => 1, 'type' => 'int'); } elseif ($geom_type == 'polygon') { - $funcs[] = array('name' => 'Area', 'params' => 1, 'type' => 'float'); - //$funcs[] = array('name' => 'ExteriorRing', 'params' => 1, 'type' => 'Linestring'); - $funcs[] = array('name' => 'NumInteriorRings', 'params' => 1, 'type' => 'int'); + $funcs['Area'] = array('params' => 1, 'type' => 'float'); + $funcs['ExteriorRing'] = array('params' => 1, 'type' => 'linestring'); + $funcs['NumInteriorRings'] = array('params' => 1, 'type' => 'int'); } elseif ($geom_type == 'multipolygon') { - $funcs[] = array('name' => 'Area', 'params' => 1, 'type' => 'float'); - //$funcs[] = array('name' => 'Centroid', 'params' => 1, 'type' => 'Point'); + $funcs['Area'] = array('params' => 1, 'type' => 'float'); + $funcs['Centroid'] = array('params' => 1, 'type' => 'point'); // Not yet implemented in MySQL - //$funcs[] = array('name' => 'PointOnSurface', 'params' => 1, 'type' => 'Point'); + //$funcs['PointOnSurface'] = array('params' => 1, 'type' => 'point'); } elseif ($geom_type == 'geometrycollection') { - $funcs[] = array('name' => 'NumGeometries', 'params' => 1, 'type' => 'int'); + $funcs['NumGeometries'] = array('params' => 1, 'type' => 'int'); } // If we are asked for binary functions as well if ($binary) { + // section seperator if ($display) { - $funcs[] = array('name' => '--------'); + $funcs[] = array('display' => '--------'); } - $binary = array( - array('name' => 'Crosses', 'params' => 2, 'type' => 'int'), - array('name' => 'Contains', 'params' => 2, 'type' => 'int'), - array('name' => 'Disjoint', 'params' => 2, 'type' => 'int'), - array('name' => 'Equals', 'params' => 2, 'type' => 'int'), - array('name' => 'Intersects', 'params' => 2, 'type' => 'int'), - array('name' => 'Overlaps', 'params' => 2, 'type' => 'int'), - array('name' => 'Touches', 'params' => 2, 'type' => 'int'), - array('name' => 'Within', 'params' => 2, 'type' => 'int'), - ); + if (PMA_MYSQL_INT_VERSION < 50601) { + $funcs['Crosses'] = array('params' => 2, 'type' => 'int'); + $funcs['Contains'] = array('params' => 2, 'type' => 'int'); + $funcs['Disjoint'] = array('params' => 2, 'type' => 'int'); + $funcs['Equals'] = array('params' => 2, 'type' => 'int'); + $funcs['Intersects'] = array('params' => 2, 'type' => 'int'); + $funcs['Overlaps'] = array('params' => 2, 'type' => 'int'); + $funcs['Touches'] = array('params' => 2, 'type' => 'int'); + $funcs['Within'] = array('params' => 2, 'type' => 'int'); + } else { + // If MySQl version is greaeter than or equal 5.6.1, use the ST_ prefix. + $funcs['ST_Crosses'] = array('params' => 2, 'type' => 'int'); + $funcs['ST_Contains'] = array('params' => 2, 'type' => 'int'); + $funcs['ST_Disjoint'] = array('params' => 2, 'type' => 'int'); + $funcs['ST_Equals'] = array('params' => 2, 'type' => 'int'); + $funcs['ST_Intersects'] = array('params' => 2, 'type' => 'int'); + $funcs['ST_Overlaps'] = array('params' => 2, 'type' => 'int'); + $funcs['ST_Touches'] = array('params' => 2, 'type' => 'int'); + $funcs['ST_Within'] = array('params' => 2, 'type' => 'int'); - // If MySQl version is greaeter than or equal 5.6.1, use the ST_ prefix. - if (PMA_MYSQL_INT_VERSION >= 50601) { - for ($i = 0; $i < count($binary); $i++) { - $binary[$i]['name'] = 'ST_' . $binary[$i]['name']; - } } - $funcs = array_merge($funcs, $binary); + if ($display) { - $funcs[] = array('name' => '--------'); + $funcs[] = array('display' => '--------'); } - $funcs[] = array('name' => 'MBRContains', 'params' => 2, 'type' => 'int'); - $funcs[] = array('name' => 'MBRDisjoint', 'params' => 2, 'type' => 'int'); - $funcs[] = array('name' => 'MBREquals', 'params' => 2, 'type' => 'int'); - $funcs[] = array('name' => 'MBRIntersects', 'params' => 2, 'type' => 'int'); - $funcs[] = array('name' => 'MBROverlaps', 'params' => 2, 'type' => 'int'); - $funcs[] = array('name' => 'MBRTouches', 'params' => 2, 'type' => 'int'); - $funcs[] = array('name' => 'MBRWithin', 'params' => 2, 'type' => 'int'); + // Minimum bounding rectangle functions + $funcs['MBRContains'] = array('params' => 2, 'type' => 'int'); + $funcs['MBRDisjoint'] = array('params' => 2, 'type' => 'int'); + $funcs['MBREquals'] = array('params' => 2, 'type' => 'int'); + $funcs['MBRIntersects'] = array('params' => 2, 'type' => 'int'); + $funcs['MBROverlaps'] = array('params' => 2, 'type' => 'int'); + $funcs['MBRTouches'] = array('params' => 2, 'type' => 'int'); + $funcs['MBRWithin'] = array('params' => 2, 'type' => 'int'); } return $funcs; } diff --git a/tbl_select.php b/tbl_select.php index eb19a7d285..25e1b9aa2f 100644 --- a/tbl_select.php +++ b/tbl_select.php @@ -146,8 +146,8 @@ if (! isset($param) || $param[0] == '') { echo(''); // get the relevant list of functions - $funcs = PMA_getGISFunctions($fields_type[$i], false, true); + $funcs = PMA_getGISFunctions($fields_type[$i], true, true); foreach ($funcs as $func_name => $func) { $name = isset($func['display']) ? $func['display'] : $func_name; echo('
'); // if a geometry column if (in_array($fields_type[$i], $geom_types)) { - echo(''); // get the relevant list of functions $funcs = PMA_getGISFunctions($fields_type[$i], true, true); foreach ($funcs as $func_name => $func) { @@ -253,7 +253,7 @@ if (! isset($param) || $param[0] == '') { // g e o m e t r y echo ' ' . "\n"; - echo(''); + echo(''); echo(PMA_display_html_checkbox('switch[' . $i . ']', __("Switch"), false, '')); echo(''); } elseif (strncasecmp($fields_type[$i], 'enum', 4) == 0) { From 6ae969a5ee3d2e30ccf3d95aefa7f641a3ccd2db Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sun, 31 Jul 2011 14:04:12 +0530 Subject: [PATCH 055/442] Serve OpenStreetMap.js locally --- js/OpenStreetMap.js | 125 ++++++++++++++++++++++++++++++++++++++ sql.php | 8 +++ tbl_change.php | 13 ++-- tbl_gis_visualization.php | 2 +- tbl_select.php | 9 +++ 5 files changed, 149 insertions(+), 8 deletions(-) create mode 100644 js/OpenStreetMap.js diff --git a/js/OpenStreetMap.js b/js/OpenStreetMap.js new file mode 100644 index 0000000000..aebfa65db0 --- /dev/null +++ b/js/OpenStreetMap.js @@ -0,0 +1,125 @@ +/** + * Namespace: Util.OSM + */ +OpenLayers.Util.OSM = {}; + +/** + * Constant: MISSING_TILE_URL + * {String} URL of image to display for missing tiles + */ +OpenLayers.Util.OSM.MISSING_TILE_URL = "http://www.openstreetmap.org/openlayers/img/404.png"; + +/** + * Property: originalOnImageLoadError + * {Function} Original onImageLoadError function. + */ +OpenLayers.Util.OSM.originalOnImageLoadError = OpenLayers.Util.onImageLoadError; + +/** + * Function: onImageLoadError + */ +OpenLayers.Util.onImageLoadError = function() { + if (this.src.match(/^http:\/\/[abc]\.[a-z]+\.openstreetmap\.org\//)) { + this.src = OpenLayers.Util.OSM.MISSING_TILE_URL; + } else if (this.src.match(/^http:\/\/[def]\.tah\.openstreetmap\.org\//)) { + // do nothing - this layer is transparent + } else { + OpenLayers.Util.OSM.originalOnImageLoadError; + } +}; + +/** + * Class: OpenLayers.Layer.OSM.Mapnik + * + * Inherits from: + * - + */ +OpenLayers.Layer.OSM.Mapnik = OpenLayers.Class(OpenLayers.Layer.OSM, { + /** + * Constructor: OpenLayers.Layer.OSM.Mapnik + * + * Parameters: + * name - {String} + * options - {Object} Hashtable of extra options to tag onto the layer + */ + initialize: function(name, options) { + var url = [ + "http://a.tile.openstreetmap.org/${z}/${x}/${y}.png", + "http://b.tile.openstreetmap.org/${z}/${x}/${y}.png", + "http://c.tile.openstreetmap.org/${z}/${x}/${y}.png" + ]; + options = OpenLayers.Util.extend({ + numZoomLevels: 19, + buffer: 0, + transitionEffect: "resize" + }, options); + var newArguments = [name, url, options]; + OpenLayers.Layer.OSM.prototype.initialize.apply(this, newArguments); + }, + + CLASS_NAME: "OpenLayers.Layer.OSM.Mapnik" +}); + +/** + * Class: OpenLayers.Layer.OSM.Osmarender + * + * Inherits from: + * - + */ +OpenLayers.Layer.OSM.Osmarender = OpenLayers.Class(OpenLayers.Layer.OSM, { + /** + * Constructor: OpenLayers.Layer.OSM.Osmarender + * + * Parameters: + * name - {String} + * options - {Object} Hashtable of extra options to tag onto the layer + */ + initialize: function(name, options) { + var url = [ + "http://a.tah.openstreetmap.org/Tiles/tile/${z}/${x}/${y}.png", + "http://b.tah.openstreetmap.org/Tiles/tile/${z}/${x}/${y}.png", + "http://c.tah.openstreetmap.org/Tiles/tile/${z}/${x}/${y}.png" + ]; + options = OpenLayers.Util.extend({ + numZoomLevels: 18, + buffer: 0, + transitionEffect: "resize" + }, options); + var newArguments = [name, url, options]; + OpenLayers.Layer.OSM.prototype.initialize.apply(this, newArguments); + }, + + CLASS_NAME: "OpenLayers.Layer.OSM.Osmarender" +}); + +/** + * Class: OpenLayers.Layer.OSM.CycleMap + * + * Inherits from: + * - + */ +OpenLayers.Layer.OSM.CycleMap = OpenLayers.Class(OpenLayers.Layer.OSM, { + /** + * Constructor: OpenLayers.Layer.OSM.CycleMap + * + * Parameters: + * name - {String} + * options - {Object} Hashtable of extra options to tag onto the layer + */ + initialize: function(name, options) { + var url = [ + "http://a.tile.opencyclemap.org/cycle/${z}/${x}/${y}.png", + "http://b.tile.opencyclemap.org/cycle/${z}/${x}/${y}.png", + "http://c.tile.opencyclemap.org/cycle/${z}/${x}/${y}.png" + ]; + options = OpenLayers.Util.extend({ + numZoomLevels: 19, + buffer: 0, + transitionEffect: "resize" + }, options); + var newArguments = [name, url, options]; + OpenLayers.Layer.OSM.prototype.initialize.apply(this, newArguments); + }, + + CLASS_NAME: "OpenLayers.Layer.OSM.CycleMap" +}); diff --git a/sql.php b/sql.php index 94a0b0d1e5..51521730cf 100644 --- a/sql.php +++ b/sql.php @@ -17,6 +17,14 @@ require_once './libraries/bookmark.lib.php'; $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; $GLOBALS['js_include'][] = 'tbl_change.js'; +// required for GIS editor loaded via AJAX +$GLOBALS['js_include'][] = 'jquery/jquery.svg.js'; +$GLOBALS['js_include'][] = 'jquery/jquery.mousewheel.js'; +$GLOBALS['js_include'][] = 'jquery/jquery.event.drag-2.0.min.js'; +$GLOBALS['js_include'][] = 'tbl_gis_visualization.js'; +$GLOBALS['js_include'][] = 'openlayers/OpenLayers.js'; +$GLOBALS['js_include'][] = 'OpenStreetMap.js'; + if (isset($_SESSION['profiling'])) { $GLOBALS['js_include'][] = 'highcharts/highcharts.js'; /* Files required for chart exporting */ diff --git a/tbl_change.php b/tbl_change.php index 07d6b082e6..32dcbd669e 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -116,13 +116,17 @@ if ($GLOBALS['cfg']['ShowPropertyComments']) { */ $GLOBALS['js_include'][] = 'functions.js'; $GLOBALS['js_include'][] = 'tbl_change.js'; +$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; +$GLOBALS['js_include'][] = 'jquery/timepicker.js'; + +// required for GIS editor $GLOBALS['js_include'][] = 'jquery/jquery.svg.js'; $GLOBALS['js_include'][] = 'jquery/jquery.mousewheel.js'; $GLOBALS['js_include'][] = 'jquery/jquery.event.drag-2.0.min.js'; $GLOBALS['js_include'][] = 'tbl_gis_visualization.js'; $GLOBALS['js_include'][] = 'openlayers/OpenLayers.js'; -$GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; -$GLOBALS['js_include'][] = 'jquery/timepicker.js'; +$GLOBALS['js_include'][] = 'OpenStreetMap.js'; + /** * HTTP and HTML headers */ @@ -968,7 +972,6 @@ foreach ($rows as $row_id => $vrow) { } } if (in_array($field['pma_type'], $gis_data_types)) { - $gis_exists = true; $data_val = isset($vrow[$field['Field']]) ? $vrow[$field['Field']] : ''; $_url_params = array( 'field' => $field['Field_title'], @@ -994,10 +997,6 @@ foreach ($rows as $row_id => $vrow) { echo '

'; } // end foreach on multi-edit -// Conditionally add OpenStreetMap.js if geometry columns exist -if (isset($gis_exists) && $gis_exists == true) { - echo(' From bedd7087f369567288ccdbb0898ed4dec90666e3 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 12 Aug 2011 14:03:40 +0530 Subject: [PATCH 091/442] Wrap long lines --- libraries/gis_visualization.lib.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/libraries/gis_visualization.lib.php b/libraries/gis_visualization.lib.php index 537d27ab44..a35af807ef 100644 --- a/libraries/gis_visualization.lib.php +++ b/libraries/gis_visualization.lib.php @@ -86,7 +86,8 @@ function PMA_GIS_modifyQuery($sql_query, $visualizationSettings) . '`) AS `' . $visualizationSettings['spatialColumn'] . '`, '; // Get the SRID - $modified_query .= 'SRID(`' . $visualizationSettings['spatialColumn'] . '`) AS `srid` '; + $modified_query .= 'SRID(`' . $visualizationSettings['spatialColumn'] + . '`) AS `srid` '; } // Append the rest of the query @@ -100,14 +101,16 @@ function PMA_GIS_modifyQuery($sql_query, $visualizationSettings) function sanitize($select) { $table_col = $select['table_name'] . "." . $select['column']; - $db_table_col = $select['db'] . "." . $select['table_name'] . "." . $select['column']; + $db_table_col = $select['db'] . "." . $select['table_name'] + . "." . $select['column']; if ($select['expr'] == $select['column']) { return "`" . $select['column'] . "`"; } elseif ($select['expr'] == $table_col) { return "`" . $select['table_name'] . "`.`" . $select['column'] . "`"; } elseif ($select['expr'] == $db_table_col) { - return "`" . $select['db'] . "`.`" . $select['table_name'] . "`.`" . $select['column'] . "`"; + return "`" . $select['db'] . "`.`" . $select['table_name'] + . "`.`" . $select['column'] . "`"; } return $select['expr']; } From 005a4ce61b0f5818f8bcba83f8eda7a3192301f3 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Fri, 12 Aug 2011 15:09:03 +0530 Subject: [PATCH 092/442] Unit test for PMA_GIS_modifyQuery --- test/libraries/PMA_GIS_modifyQuery_test.php | 94 +++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 test/libraries/PMA_GIS_modifyQuery_test.php diff --git a/test/libraries/PMA_GIS_modifyQuery_test.php b/test/libraries/PMA_GIS_modifyQuery_test.php new file mode 100644 index 0000000000..04e9e1adad --- /dev/null +++ b/test/libraries/PMA_GIS_modifyQuery_test.php @@ -0,0 +1,94 @@ +assertEquals( + PMA_GIS_modifyQuery($sql_query, $settings), + $modified_query + ); + } + + /** + * data provider for testModifyQuery + * + * @return data for testModifyQuery + */ + public function provider() + { + return array( + // select * + array( + 'SELECT * FROM `foo` WHERE `bar` = `zoo`', + array('spatialColumn' => 'moo', 'labelColumn' => 'noo'), + 'SELECT `noo`, ASTEXT(`moo`) AS `moo`, SRID(`moo`) AS `srid` FROM `foo` WHERE `bar` = `zoo`' + ), + // select * with no label column + array( + 'SELECT * FROM `foo` WHERE `bar` = `zoo`', + array('spatialColumn' => 'moo'), + 'SELECT ASTEXT(`moo`) AS `moo`, SRID(`moo`) AS `srid` FROM `foo` WHERE `bar` = `zoo`' + ), + // more columns + array( + 'SELECT `aaa`, `moo`, `bbb`, `noo` FROM `foo` WHERE `bar` = `zoo`', + array('spatialColumn' => 'moo', 'labelColumn' => 'noo'), + 'SELECT `noo`, ASTEXT(`moo`) AS `moo`, SRID(`moo`) AS `srid` FROM `foo` WHERE `bar` = `zoo`' + ), + // no labelColumn defined + array( + 'SELECT `moo`, `noo` FROM `foo` WHERE `bar` = `zoo`', + array('spatialColumn' => 'moo'), + 'SELECT ASTEXT(`moo`) AS `moo`, SRID(`moo`) AS `srid` FROM `foo` WHERE `bar` = `zoo`' + ), + // alias for spatialColumn + array( + 'SELECT `aaa` AS `moo`, `noo` FROM `foo` WHERE `bar` = `zoo`', + array('spatialColumn' => 'moo', 'labelColumn' => 'noo'), + 'SELECT `noo`, ASTEXT(`aaa`) AS `moo`, SRID(`aaa`) AS `srid` FROM `foo` WHERE `bar` = `zoo`' + ), + // alias for labelColumn + array( + 'SELECT `moo`, `bbb` AS `noo` FROM `foo` WHERE `bar` = `zoo`', + array('spatialColumn' => 'moo', 'labelColumn' => 'noo'), + 'SELECT `bbb` AS `noo`, ASTEXT(`moo`) AS `moo`, SRID(`moo`) AS `srid` FROM `foo` WHERE `bar` = `zoo`' + ), + // with database names + array( + 'SELECT `db`.`moo`, `db`.`noo` FROM `foo` WHERE `bar` = `zoo`', + array('spatialColumn' => 'moo', 'labelColumn' => 'noo'), + 'SELECT `db`.`noo`, ASTEXT(`db`.`moo`) AS `moo`, SRID(`db`.`moo`) AS `srid` FROM `foo` WHERE `bar` = `zoo`' + ), + // database names plus alias + array( + 'SELECT `db`.`aaa` AS `moo`, `noo` FROM `foo` WHERE `bar` = `zoo`', + array('spatialColumn' => 'moo', 'labelColumn' => 'noo'), + 'SELECT `noo`, ASTEXT(`db`.`aaa`) AS `moo`, SRID(`db`.`aaa`) AS `srid` FROM `foo` WHERE `bar` = `zoo`' + ), + ); + } +} +?> \ No newline at end of file From cb176b2648f0d787d115290212ab829372414a16 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 13 Aug 2011 00:17:36 +0530 Subject: [PATCH 093/442] Unit tests for PMA_GIS_Factory class --- test/classes/gis/PMA_GIS_Factory_test.php | 80 +++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 test/classes/gis/PMA_GIS_Factory_test.php diff --git a/test/classes/gis/PMA_GIS_Factory_test.php b/test/classes/gis/PMA_GIS_Factory_test.php new file mode 100644 index 0000000000..fe6118c9f7 --- /dev/null +++ b/test/classes/gis/PMA_GIS_Factory_test.php @@ -0,0 +1,80 @@ +assertInstanceOf($geom, PMA_GIS_Factory::factory($type)); + } + + /** + * data provider for testFactory + * + * @return data for testFactory + */ + public function providerForTestFactory() + { + return array( + array( + 'MULTIPOLYGON', + 'PMA_GIS_Multipolygon' + ), + array( + 'POLYGON', + 'PMA_GIS_Polygon' + ), + array( + 'MULTILINESTRING', + 'PMA_GIS_Multilinestring' + ), + array( + 'LINESTRING', + 'PMA_GIS_Linestring' + ), + array( + 'MULTIPOINT', + 'PMA_GIS_Multipoint' + ), + array( + 'POINT', + 'PMA_GIS_Point' + ), + array( + 'GEOMETRYCOLLECTION', + 'PMA_GIS_Geometrycollection' + ), + ); + } +} +?> \ No newline at end of file From d6bf1cd451be99703fe428fb90747ef71b625a3e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 13 Aug 2011 10:02:39 +0530 Subject: [PATCH 094/442] Adhere to coding style --- libraries/gis/pma_gis_geometry.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libraries/gis/pma_gis_geometry.php b/libraries/gis/pma_gis_geometry.php index c959c081a5..c49c1a1eb8 100644 --- a/libraries/gis/pma_gis_geometry.php +++ b/libraries/gis/pma_gis_geometry.php @@ -134,13 +134,15 @@ abstract class PMA_GIS_Geometry /** * Generate parameters for the GIS data editor from the value of the GIS column. - * This method performs common work. More specific work is performed by each of the geom classes. + * This method performs common work. + * More specific work is performed by each of the geom classes. * * @param $gis_string $value of the GIS column * - * @return array parameters for the GIS data editor from the value of the GIS column + * @return array parameters for the GIS editor from the value of the GIS column */ - protected function generateParams($value) { + protected function generateParams($value) + { $geom_types = '(POINT|MULTIPOINT|LINESTRING|MULTILINESTRING|POLYGON|MULTIPOLYGON|GEOMETRYCOLLECTION)'; $srid = 0; $wkt = ''; From 9ed1cd7c3ef2eb5cb9b3511aec280f89937b3cd0 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 13 Aug 2011 10:10:32 +0530 Subject: [PATCH 095/442] Use abstract test class to avoid code duplications in tests --- test/classes/gis/PMA_GIS_Geometry_test.php | 60 ++++++++++++++++ test/classes/gis/PMA_GIS_Linestring_test.php | 56 ++------------- .../gis/PMA_GIS_Multilinestring_test.php | 72 ++++--------------- test/classes/gis/PMA_GIS_Multipoint_test.php | 58 ++++----------- .../classes/gis/PMA_GIS_Multipolygon_test.php | 48 +------------ test/classes/gis/PMA_GIS_Point_test.php | 69 +++++------------- test/classes/gis/PMA_GIS_Polygon_test.php | 48 +------------ 7 files changed, 115 insertions(+), 296 deletions(-) create mode 100644 test/classes/gis/PMA_GIS_Geometry_test.php diff --git a/test/classes/gis/PMA_GIS_Geometry_test.php b/test/classes/gis/PMA_GIS_Geometry_test.php new file mode 100644 index 0000000000..37d4c423c5 --- /dev/null +++ b/test/classes/gis/PMA_GIS_Geometry_test.php @@ -0,0 +1,60 @@ + test classes + * + * @package phpMyAdmin-test + */ + +require_once 'libraries/gis/pma_gis_geometry.php'; + +/** + * Abstract parent class for all PMA_GIS_ test classes + */ +abstract class PMA_GIS_GeometryTest extends PHPUnit_Framework_TestCase +{ + /** + * test generateWkt method + * + * @param array $gis_data array of GIS data + * @param int $index index + * @param string $empty string to be insterted in place of missing values + * @param string $wkt expected WKT + * + * @return nothing + * @dataProvider providerForTestGenerateWkt + */ + public function testGenerateWkt($gis_data, $index, $empty, $wkt) + { + if ($empty == null) { + $this->assertEquals($this->object->generateWkt($gis_data, $index), $wkt); + } else { + $this->assertEquals( + $this->object->generateWkt($gis_data, $index, $empty), + $wkt + ); + } + } + + /** + * test generateParams method + * + * @param string $wkt point in WKT form + * @param index $index index + * @param array $params expected output array + * + * @dataProvider providerForTestGenerateParams + * @return nothing + */ + public function testGenerateParams($wkt, $index, $params) + { + if ($index == null) { + $this->assertEquals($this->object->generateParams($wkt), $params); + } else { + $this->assertEquals( + $this->object->generateParams($wkt, $index), + $params + ); + } + } +} +?> \ No newline at end of file diff --git a/test/classes/gis/PMA_GIS_Linestring_test.php b/test/classes/gis/PMA_GIS_Linestring_test.php index 13397e3139..4bef75c3d9 100644 --- a/test/classes/gis/PMA_GIS_Linestring_test.php +++ b/test/classes/gis/PMA_GIS_Linestring_test.php @@ -5,13 +5,14 @@ * @package phpMyAdmin-test */ +require_once 'PMA_GIS_Geometry_test.php'; require_once 'libraries/gis/pma_gis_geometry.php'; require_once 'libraries/gis/pma_gis_linestring.php'; /** * Tests for PMA_GIS_Linestring class */ -class PMA_GIS_LinestringTest extends PHPUnit_Framework_TestCase +class PMA_GIS_LinestringTest extends PMA_GIS_GeometryTest { /** * @var PMA_GIS_Linestring @@ -43,29 +44,6 @@ class PMA_GIS_LinestringTest extends PHPUnit_Framework_TestCase unset($this->object); } - /** - * test generateWkt method - * - * @param array $gis_data array of GIS data - * @param int $index index - * @param string $empty string to be insterted in place of missing values - * @param string $wkt expected WKT - * - * @return nothing - * @dataProvider providerForTestGenerateWkt - */ - public function testGenerateWkt($gis_data, $index, $empty, $wkt) - { - if ($empty == null) { - $this->assertEquals($this->object->generateWkt($gis_data, $index), $wkt); - } else { - $this->assertEquals( - $this->object->generateWkt($gis_data, $index, $empty), - $wkt - ); - } - } - /** * data provider for testGenerateWkt * @@ -75,10 +53,10 @@ class PMA_GIS_LinestringTest extends PHPUnit_Framework_TestCase { $temp1 = array( 0 => array( - 'LINESTRING' => array( + 'LINESTRING' => array( 'no_of_points' => 2, - 0 => array('x' => 5.02, 'y' => 8.45), - 1 => array('x' => 6.14, 'y' => 0.15) + 0 => array('x' => 5.02, 'y' => 8.45), + 1 => array('x' => 6.14, 'y' => 0.15) ) ) ); @@ -125,28 +103,6 @@ class PMA_GIS_LinestringTest extends PHPUnit_Framework_TestCase ); } - /** - * test generateParams method - * - * @param string $wkt point in WKT form - * @param index $index index - * @param array $params expected output array - * - * @dataProvider providerForTestGenerateParams - * @return nothing - */ - public function testGenerateParams($wkt, $index, $params) - { - if ($index == 0) { - $this->assertEquals($this->object->generateParams($wkt), $params); - } else { - $this->assertEquals( - $this->object->generateParams($wkt, $index), - $params - ); - } - } - /** * data provider for testGenerateParams * @@ -167,7 +123,7 @@ class PMA_GIS_LinestringTest extends PHPUnit_Framework_TestCase return array( array( "'LINESTRING(5.02 8.45,6.14 0.15)',124", - 0, + null, array( 'srid' => '124', 0 => $temp diff --git a/test/classes/gis/PMA_GIS_Multilinestring_test.php b/test/classes/gis/PMA_GIS_Multilinestring_test.php index d55cd3fdd9..cef0cefbbc 100644 --- a/test/classes/gis/PMA_GIS_Multilinestring_test.php +++ b/test/classes/gis/PMA_GIS_Multilinestring_test.php @@ -5,15 +5,16 @@ * @package phpMyAdmin-test */ +require_once 'PMA_GIS_Geometry_test.php'; require_once 'libraries/gis/pma_gis_geometry.php'; require_once 'libraries/gis/pma_gis_multilinestring.php'; /** * Tests for PMA_GIS_Multilinestring class */ -class PMA_GIS_MultilinestringTest extends PHPUnit_Framework_TestCase +class PMA_GIS_MultilinestringTest extends PMA_GIS_GeometryTest { - /** + /** * @var PMA_GIS_Multilinestring * @access protected */ @@ -43,29 +44,6 @@ class PMA_GIS_MultilinestringTest extends PHPUnit_Framework_TestCase unset($this->object); } - /** - * test generateWkt method - * - * @param array $gis_data array of GIS data - * @param int $index index - * @param string $empty string to be insterted in place of missing values - * @param string $wkt expected WKT - * - * @return nothing - * @dataProvider providerForTestGenerateWkt - */ - public function testGenerateWkt($gis_data, $index, $empty, $wkt) - { - if ($empty == null) { - $this->assertEquals($this->object->generateWkt($gis_data, $index), $wkt); - } else { - $this->assertEquals( - $this->object->generateWkt($gis_data, $index, $empty), - $wkt - ); - } - } - /** * data provider for testGenerateWkt * @@ -75,18 +53,18 @@ class PMA_GIS_MultilinestringTest extends PHPUnit_Framework_TestCase { $temp = array( 0 => array( - 'MULTILINESTRING' => array( + 'MULTILINESTRING' => array( 'no_of_lines' => 2, - 0 => array( - 'no_of_points' => 2, - 0 => array('x' => 5.02, 'y' => 8.45), - 1 => array('x' => 6.14, 'y' => 0.15) - ), - 1 => array( - 'no_of_points' => 2, - 0 => array('x' => 1.23, 'y' => 4.25), - 1 => array('x' => 9.15, 'y' => 0.47) - ) + 0 => array( + 'no_of_points' => 2, + 0 => array('x' => 5.02, 'y' => 8.45), + 1 => array('x' => 6.14, 'y' => 0.15) + ), + 1 => array( + 'no_of_points' => 2, + 0 => array('x' => 1.23, 'y' => 4.25), + 1 => array('x' => 9.15, 'y' => 0.47) + ) ) ) ); @@ -156,28 +134,6 @@ class PMA_GIS_MultilinestringTest extends PHPUnit_Framework_TestCase ); } - /** - * test generateParams method - * - * @param string $wkt point in WKT form - * @param index $index index - * @param array $params expected output array - * - * @dataProvider providerForTestGenerateParams - * @return nothing - */ - public function testGenerateParams($wkt, $index, $params) - { - if ($index == null) { - $this->assertEquals($this->object->generateParams($wkt), $params); - } else { - $this->assertEquals( - $this->object->generateParams($wkt, $index), - $params - ); - } - } - /** * data provider for testGenerateParams * diff --git a/test/classes/gis/PMA_GIS_Multipoint_test.php b/test/classes/gis/PMA_GIS_Multipoint_test.php index f0d0cf2a59..8ab0aef928 100644 --- a/test/classes/gis/PMA_GIS_Multipoint_test.php +++ b/test/classes/gis/PMA_GIS_Multipoint_test.php @@ -5,13 +5,14 @@ * @package phpMyAdmin-test */ +require_once 'PMA_GIS_Geometry_test.php'; require_once 'libraries/gis/pma_gis_geometry.php'; require_once 'libraries/gis/pma_gis_multipoint.php'; /** * Tests for PMA_GIS_Multipoint class */ -class PMA_GIS_MultipointTest extends PHPUnit_Framework_TestCase +class PMA_GIS_MultipointTest extends PMA_GIS_GeometryTest { /** * @var PMA_GIS_Multipoint @@ -43,21 +44,6 @@ class PMA_GIS_MultipointTest extends PHPUnit_Framework_TestCase unset($this->object); } - /** - * test generateWkt method - * - * @param array $gis_data array of GIS data - * @param int $index index - * @param string $wkt expected WKT - * - * @dataProvider providerForTestGenerateWkt - * @return nothing - */ - public function testGenerateWkt($gis_data, $index, $wkt) - { - $this->assertEquals($this->object->generateWkt($gis_data, $index), $wkt); - } - /** * data provider for testGenerateWkt * @@ -67,15 +53,15 @@ class PMA_GIS_MultipointTest extends PHPUnit_Framework_TestCase { $gis_data1 = array( 0 => array( - 'MULTIPOINT' => array( + 'MULTIPOINT' => array( 'no_of_points' => 2, - 0 => array( - 'x' => 5.02, - 'y' => 8.45 + 0 => array( + 'x' => 5.02, + 'y' => 8.45 ), 1 => array( - 'x' => 1.56, - 'y' => 4.36 + 'x' => 1.56, + 'y' => 4.36 ) ) ) @@ -88,11 +74,13 @@ class PMA_GIS_MultipointTest extends PHPUnit_Framework_TestCase array( $gis_data1, 0, + null, 'MULTIPOINT(5.02 8.45,1.56 4.36)' ), array( $gis_data2, 0, + null, 'MULTIPOINT(5.02 8.45)' ) ); @@ -106,7 +94,7 @@ class PMA_GIS_MultipointTest extends PHPUnit_Framework_TestCase public function testGetShape() { $gis_data = array( - 'numpoints' => 2, + 'numpoints' => 2, 'points' => array( 0 => array('x' => 5.02, 'y' => 8.45), 1 => array('x' => 6.14, 'y' => 0.15) @@ -119,28 +107,6 @@ class PMA_GIS_MultipointTest extends PHPUnit_Framework_TestCase ); } - /** - * test generateParams method - * - * @param string $wkt point in WKT form - * @param index $index index - * @param array $params expected output array - * - * @dataProvider providerForTestGenerateParams - * @return nothing - */ - public function testGenerateParams($wkt, $index, $params) - { - if ($index == 0) { - $this->assertEquals($this->object->generateParams($wkt), $params); - } else { - $this->assertEquals( - $this->object->generateParams($wkt, $index), - $params - ); - } - } - /** * data provider for testGenerateParams * @@ -161,7 +127,7 @@ class PMA_GIS_MultipointTest extends PHPUnit_Framework_TestCase return array( array( "'MULTIPOINT(5.02 8.45,6.14 0.15)',124", - 0, + null, array( 'srid' => '124', 0 => $temp1 diff --git a/test/classes/gis/PMA_GIS_Multipolygon_test.php b/test/classes/gis/PMA_GIS_Multipolygon_test.php index 6ac30a9b2d..1a43555b56 100644 --- a/test/classes/gis/PMA_GIS_Multipolygon_test.php +++ b/test/classes/gis/PMA_GIS_Multipolygon_test.php @@ -5,13 +5,14 @@ * @package phpMyAdmin-test */ +require_once 'PMA_GIS_Geometry_test.php'; require_once 'libraries/gis/pma_gis_geometry.php'; require_once 'libraries/gis/pma_gis_multipolygon.php'; /** * Tests for PMA_GIS_Multipolygon class */ -class PMA_GIS_MultipolygonTest extends PHPUnit_Framework_TestCase +class PMA_GIS_MultipolygonTest extends PMA_GIS_GeometryTest { /** * @var PMA_GIS_Multipolygon @@ -80,29 +81,6 @@ class PMA_GIS_MultipolygonTest extends PHPUnit_Framework_TestCase ); } - /** - * test generateWkt method - * - * @param array $gis_data array of GIS data - * @param int $index index - * @param string $empty string to be insterted in place of missing values - * @param string $wkt expected WKT - * - * @return nothing - * @dataProvider providerForTestGenerateWkt - */ - public function testGenerateWkt($gis_data, $index, $empty, $wkt) - { - if ($empty == null) { - $this->assertEquals($this->object->generateWkt($gis_data, $index), $wkt); - } else { - $this->assertEquals( - $this->object->generateWkt($gis_data, $index, $empty), - $wkt - ); - } - } - /** * data provider for testGenerateWkt * @@ -125,28 +103,6 @@ class PMA_GIS_MultipolygonTest extends PHPUnit_Framework_TestCase ); } - /** - * test generateParams method - * - * @param string $wkt point in WKT form - * @param index $index index - * @param array $params expected output array - * - * @dataProvider providerForTestGenerateParams - * @return nothing - */ - public function testGenerateParams($wkt, $index, $params) - { - if ($index == null) { - $this->assertEquals($this->object->generateParams($wkt), $params); - } else { - $this->assertEquals( - $this->object->generateParams($wkt, $index), - $params - ); - } - } - /** * data provider for testGenerateParams * diff --git a/test/classes/gis/PMA_GIS_Point_test.php b/test/classes/gis/PMA_GIS_Point_test.php index b6bbd208fc..a25a66ab95 100644 --- a/test/classes/gis/PMA_GIS_Point_test.php +++ b/test/classes/gis/PMA_GIS_Point_test.php @@ -5,13 +5,14 @@ * @package phpMyAdmin-test */ +require_once 'PMA_GIS_Geometry_test.php'; require_once 'libraries/gis/pma_gis_geometry.php'; require_once 'libraries/gis/pma_gis_point.php'; /** * Tests for PMA_GIS_Point class. */ -class PMA_GIS_PointTest extends PHPUnit_Framework_TestCase +class PMA_GIS_PointTest extends PMA_GIS_GeometryTest { /** * @var PMA_GIS_Point @@ -43,21 +44,6 @@ class PMA_GIS_PointTest extends PHPUnit_Framework_TestCase unset($this->object); } - /** - * test generateWkt method - * - * @param array $gis_data array containing the GIS data - * @param int $index index to the array - * @param string $wkt expected Well Known Text - * - * @dataProvider providerForTestGenerateWkt - * @return nothing - */ - public function testGenerateWkt($gis_data, $index, $wkt) - { - $this->assertEquals($this->object->generateWkt($gis_data, $index), $wkt); - } - /** * data provider for testGenerateWkt * @@ -69,26 +55,31 @@ class PMA_GIS_PointTest extends PHPUnit_Framework_TestCase array( array(0 => array('POINT' => array('x' => 5.02, 'y' => 8.45))), 0, + null, 'POINT(5.02 8.45)' ), array( array(0 => array('POINT' => array('x' => 5.02, 'y' => 8.45))), 1, + null, 'POINT( )' ), array( array(0 => array('POINT' => array('x' => 5.02))), 0, + null, 'POINT(5.02 )' ), array( array(0 => array('POINT' => array('y' => 8.45))), 0, + null, 'POINT( 8.45)' ), array( array(0 => array('POINT' => array())), 0, + null, 'POINT( )' ), ); @@ -123,28 +114,6 @@ class PMA_GIS_PointTest extends PHPUnit_Framework_TestCase ); } - /** - * test generateParams method - * - * @param string $wkt point in WKT form - * @param array $params expected output array - * @param index $index index - * - * @dataProvider providerForTestGenerateParams - * @return nothing - */ - public function testGenerateParams($wkt, $params, $index) - { - if ($index == 0) { - $this->assertEquals($this->object->generateParams($wkt), $params); - } else { - $this->assertEquals( - $this->object->generateParams($wkt, $index), - $params - ); - } - } - /** * data provider for testGenerateParams * @@ -155,23 +124,23 @@ class PMA_GIS_PointTest extends PHPUnit_Framework_TestCase return array( array( "'POINT(5.02 8.45)',124", + null, array( 'srid' => '124', 0 => array( - 'POINT' => array('x' => '5.02', 'y' => '8.45') - ), - ), - 0 - ), - array( - 'POINT(5.02 8.45)', - array( - 2 => array( - 'gis_type' => 'POINT', 'POINT' => array('x' => '5.02', 'y' => '8.45') ), - ), - 2 + ) + ), + array( + 'POINT(5.02 8.45)', + 2, + array( + 2 => array( + 'gis_type' => 'POINT', + 'POINT' => array('x' => '5.02', 'y' => '8.45') + ), + ) ) ); } diff --git a/test/classes/gis/PMA_GIS_Polygon_test.php b/test/classes/gis/PMA_GIS_Polygon_test.php index 20fde1b20d..b504acc12e 100644 --- a/test/classes/gis/PMA_GIS_Polygon_test.php +++ b/test/classes/gis/PMA_GIS_Polygon_test.php @@ -5,13 +5,14 @@ * @package phpMyAdmin-test */ +require_once 'PMA_GIS_Geometry_test.php'; require_once 'libraries/gis/pma_gis_geometry.php'; require_once 'libraries/gis/pma_gis_polygon.php'; /** * Tests for PMA_GIS_Polygon class */ -class PMA_GIS_PolygonTest extends PHPUnit_Framework_TestCase +class PMA_GIS_PolygonTest extends PMA_GIS_GeometryTest { /** * @var PMA_GIS_Polygon @@ -67,29 +68,6 @@ class PMA_GIS_PolygonTest extends PHPUnit_Framework_TestCase ); } - /** - * test generateWkt method - * - * @param array $gis_data array of GIS data - * @param int $index index - * @param string $empty string to be insterted in place of missing values - * @param string $wkt expected WKT - * - * @return nothing - * @dataProvider providerForTestGenerateWkt - */ - public function testGenerateWkt($gis_data, $index, $empty, $wkt) - { - if ($empty == null) { - $this->assertEquals($this->object->generateWkt($gis_data, $index), $wkt); - } else { - $this->assertEquals( - $this->object->generateWkt($gis_data, $index, $empty), - $wkt - ); - } - } - /** * data provider for testGenerateWkt * @@ -135,28 +113,6 @@ class PMA_GIS_PolygonTest extends PHPUnit_Framework_TestCase ); } - /** - * test generateParams method - * - * @param string $wkt point in WKT form - * @param index $index index - * @param array $params expected output array - * - * @dataProvider providerForTestGenerateParams - * @return nothing - */ - public function testGenerateParams($wkt, $index, $params) - { - if ($index == null) { - $this->assertEquals($this->object->generateParams($wkt), $params); - } else { - $this->assertEquals( - $this->object->generateParams($wkt, $index), - $params - ); - } - } - /** * data provider for testGenerateParams * From 16a039392b4a8ea028b38f969ef7e4e586532b94 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 13 Aug 2011 10:11:08 +0530 Subject: [PATCH 096/442] Remove tab characters --- test/classes/gis/PMA_GIS_Factory_test.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/classes/gis/PMA_GIS_Factory_test.php b/test/classes/gis/PMA_GIS_Factory_test.php index fe6118c9f7..6d778ab799 100644 --- a/test/classes/gis/PMA_GIS_Factory_test.php +++ b/test/classes/gis/PMA_GIS_Factory_test.php @@ -47,7 +47,7 @@ class PMA_GIS_FactoryTest extends PHPUnit_Framework_TestCase { return array( array( - 'MULTIPOLYGON', + 'MULTIPOLYGON', 'PMA_GIS_Multipolygon' ), array( @@ -59,19 +59,19 @@ class PMA_GIS_FactoryTest extends PHPUnit_Framework_TestCase 'PMA_GIS_Multilinestring' ), array( - 'LINESTRING', + 'LINESTRING', 'PMA_GIS_Linestring' ), array( - 'MULTIPOINT', + 'MULTIPOINT', 'PMA_GIS_Multipoint' ), array( - 'POINT', + 'POINT', 'PMA_GIS_Point' ), - array( - 'GEOMETRYCOLLECTION', + array( + 'GEOMETRYCOLLECTION', 'PMA_GIS_Geometrycollection' ), ); From 5744b9622d0bc76250e20127fd4a0329919f4af9 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 13 Aug 2011 17:24:39 +0530 Subject: [PATCH 097/442] Documentation about importing ESRI Shapefiles --- Documentation.html | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/Documentation.html b/Documentation.html index 8f7e66f871..8238b31547 100644 --- a/Documentation.html +++ b/Documentation.html @@ -4373,6 +4373,41 @@ INSERT INTO REL_towns VALUES ('M', 'Montréal');

Not every table can be put to the chart. Only tables with one, two or three columns can be visualised as a chart. Moreover the table must be in a special format for chart script to understand it. Currently supported formats can be found in the wiki.

+

+ 6.30 Import: How can I import ESRI Shapefiles

+ +

+ An ESRI Shapefile is actually a set of several files, where .shp file contains + geometry data and .dbf file contains data related to those geometry data. + To read data from .dbf file you need to have PHP compiled with the dBase extension + (--enable-dbase). Otherwise only geometry data will be imported. +

+ +

To upload these set of files you can use either of the following methods:

+
    +
  • +

    + Configure upload directory with + $cfg['UploadDir'], upload both + .shp and .dbf files with the same filename and chose the .shp file from the import page. +

    +
  • +
  • +

    + Create a Zip archive with .shp and .dbf files and import it. For this to work, + you need to set $cfg['TempDir'] to a + place where the web server user can write (for example './tmp'). +

    + +

    To create the temporary directory on a UNIX-based system, you can do:

    +
    +cd phpMyAdmin
    +mkdir tmp
    +chmod o+rwx tmp
    +
    +
  • +
+

phpMyAdmin project

From 5e11e88a147e16c96c33547e199dca31d1a20c77 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Sat, 13 Aug 2011 17:31:38 +0530 Subject: [PATCH 098/442] Mention the use of TempDir for ESRI Shapefile imports --- Documentation.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Documentation.html b/Documentation.html index 8238b31547..758a2bc90f 100644 --- a/Documentation.html +++ b/Documentation.html @@ -2088,9 +2088,10 @@ $cfg['TrustedProxies'] = The name of the directory where temporary files can be stored.

- This is needed to work around limitations of open_basedir - for uploaded files, see - FAQ + This is needed for importing ESRI Shapefiles, see + FAQ + 6.30 and to work around limitations of open_basedir for uploaded + files, see FAQ 1.11.

From c7e02dad6ab498b048063b93a25a16e1f37412f1 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 15:42:44 +0200 Subject: [PATCH 099/442] Translation update done using Pootle. --- po/ja.po | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/po/ja.po b/po/ja.po index 546d556e64..f9323959c5 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 11:21+0200\n" +"PO-Revision-Date: 2011-08-16 15:42+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -11583,9 +11583,7 @@ msgstr "稼働時間が 1 日未満" #: po/advisory_rules.php:6 msgid "Uptime is less than 1 day, performance tuning may not be accurate." -msgstr "" -"稼働時間は 1 日未満です。パフォーマンスチューニングが正確でない可能性がありま" -"す。" +msgstr "稼働時間が 1 日未満です。パフォーマンスチューニングが正確でない可能性があります。" #: po/advisory_rules.php:7 msgid "" From 09e3f99c6c83fb90416eaf4d7706595bd933ce9b Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 15:44:24 +0200 Subject: [PATCH 100/442] Translation update done using Pootle. --- po/ja.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index f9323959c5..af723628f8 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 15:42+0200\n" +"PO-Revision-Date: 2011-08-16 15:44+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -12310,8 +12310,8 @@ msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." msgstr "" -"テーブルを開くことは、コストがかかるディスクへの入出力を必要とします。{table_open_cache} " -"大きくすることで、これを緩和できることがあります。" +"テーブルを開くことは、負荷がかかるディスクへの入出力を必要とします。{table_open_cache} " +"を大きくすることで、これを緩和できることがあります。" #: po/advisory_rules.php:178 #, php-format From 750042aadc210972204e5fb48ec5c06fd90f0116 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 15:51:26 +0200 Subject: [PATCH 101/442] Translation update done using Pootle. --- po/ja.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/ja.po b/po/ja.po index af723628f8..a258fa22bd 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 15:44+0200\n" +"PO-Revision-Date: 2011-08-16 15:51+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -1497,10 +1497,9 @@ msgid "Analyse Query" msgstr "クエリを更新する" #: js/messages.php:196 -#, fuzzy #| msgid "Apply a divisor" msgid "Advisor system" -msgstr "除数を適用する" +msgstr "アドバイザ・システム" #: js/messages.php:197 msgid "Possible performance issues" From 2b04f19b1c824b642eb7ac804422a03685ceb06d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 16 Aug 2011 15:55:38 +0200 Subject: [PATCH 102/442] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index b0ec0df2bd..768f99f5f2 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 08:21+0200\n" +"PO-Revision-Date: 2011-08-16 15:55+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -9386,6 +9386,8 @@ msgid "" "calculations and by rule of thumb which may not necessarily apply to your " "system." 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:812 msgid "" From 86badc082dc73484364ec8aaa10bd5e508cf2047 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 16 Aug 2011 15:55:45 +0200 Subject: [PATCH 103/442] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 768f99f5f2..3ffa71e462 100644 --- a/po/tr.po +++ b/po/tr.po @@ -9387,7 +9387,7 @@ msgid "" "system." 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. " +"zorunlu olarak uygulanamayabilir başlıca kurallara göre öneriler sağlar." #: server_status.php:812 msgid "" From caedcb695ca6e31c993af355a8845b2f73c63e19 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 15:59:42 +0200 Subject: [PATCH 104/442] Translation update done using Pootle. --- po/ja.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/ja.po b/po/ja.po index a258fa22bd..c7c96eea13 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 15:51+0200\n" +"PO-Revision-Date: 2011-08-16 15:59+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -9338,7 +9338,7 @@ msgstr "はじめに" msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." -msgstr "" +msgstr "アドバイザ・システムは、サーバの状態変数を分析することにより、サーバ変数のお勧め設定方法を提供するものです。" #: server_status.php:810 msgid "" From cf14b03298ae48d8d2aaeffaaf6ff36e7928eafa Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 16 Aug 2011 15:59:51 +0200 Subject: [PATCH 105/442] Translation update done using Pootle. --- po/tr.po | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 3ffa71e462..13a31dfabe 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 15:55+0200\n" +"PO-Revision-Date: 2011-08-16 15:59+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -9395,6 +9395,10 @@ msgid "" "changing (by reading the documentation) and how to undo the change. Wrong " "tuning can have a very negative effect on performance." msgstr "" +"Yapılandırmanın herhangi bir yerini değiştirmeden önce, neyi " +"değiştirdiğinizi bildiğinizden (belgeyi okuyarak) ve değişikliği nasıl geri " +"alacağınızdan emin olun. Yanlış ayarlama performansa çok olumsuz etki " +"edebilir." #: server_status.php:814 msgid "" From e05ce12e53a67130b5f54ea7e75ae6d2cc583ad8 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 16 Aug 2011 16:03:07 +0200 Subject: [PATCH 106/442] Translation update done using Pootle. --- po/tr.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 13a31dfabe..dea56e4c3b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 15:59+0200\n" +"PO-Revision-Date: 2011-08-16 16:03+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -9406,6 +9406,9 @@ msgid "" "time, observe or benchmark your database, and undo the change if there was " "no clearly measurable improvement." msgstr "" +"Sisteminizi ayarlamanın en iyi yolu bir defada sadece bir değişiklik yapmak, " +"gözlemlemek, veritabanınızı kıyaslamak ve eğer açıkça ölçülebilir bir " +"gelişme olmadıysa, değişikliği geri almak olacaktır." #. l10n: Questions is the name of a MySQL Status variable #: server_status.php:836 From d1c44c49089678f15f6ae24766fd1e5b3c709fce Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 16 Aug 2011 16:05:21 +0200 Subject: [PATCH 107/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index dea56e4c3b..b5d1009121 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 16:03+0200\n" +"PO-Revision-Date: 2011-08-16 16:05+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -11916,7 +11916,7 @@ msgstr "Sorgu önbelleği verimli çalışmıyor, düşük tavan oranına sahip. #: po/advisory_rules.php:77 msgid "Consider increasing {query_cache_limit}." -msgstr "" +msgstr "Dikkate değer artış {query_cache_limit}." #: po/advisory_rules.php:78 #, php-format From 95e01565f0e0196354a8d3be144ce37a79e50e99 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 16 Aug 2011 16:06:46 +0200 Subject: [PATCH 108/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index b5d1009121..60c47b3609 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 16:05+0200\n" +"PO-Revision-Date: 2011-08-16 16:06+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -11921,7 +11921,7 @@ msgstr "Dikkate değer artış {query_cache_limit}." #: po/advisory_rules.php:78 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" -msgstr "" +msgstr "Şu anki %%%s sorgu önbelleği tavan oranı %%20'nin altında" #: po/advisory_rules.php:80 msgid "Query Cache usage" From 5092d728a90da172ff00f2edb6a3b294ef918118 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 16 Aug 2011 16:08:04 +0200 Subject: [PATCH 109/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 60c47b3609..e954ed13c5 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 16:06+0200\n" +"PO-Revision-Date: 2011-08-16 16:08+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -11930,7 +11930,7 @@ msgstr "Sorgu Önbelleği kullanımı" #: po/advisory_rules.php:81 #, php-format msgid "Less than 80%% of the query cache is being utilized." -msgstr "" +msgstr "Sorgu önbelleğinin %%80'den azı değerlendirilmekte." #: po/advisory_rules.php:82 msgid "" From 578d2dc33ddbf435abada44e9122f07829995272 Mon Sep 17 00:00:00 2001 From: Yuichiro Date: Tue, 16 Aug 2011 16:10:29 +0200 Subject: [PATCH 110/442] Translation update done using Pootle. --- po/ja.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/ja.po b/po/ja.po index c7c96eea13..2aeefb9abb 100644 --- a/po/ja.po +++ b/po/ja.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 15:59+0200\n" +"PO-Revision-Date: 2011-08-16 16:10+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" "Language: ja\n" @@ -9346,6 +9346,7 @@ msgid "" "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" +"このシステムは、単純な計算を基にして経験則によってお勧め設定を提供するため、お使いのシステムに必ずしも当てはまるものではないことに注意してください。" #: server_status.php:812 msgid "" From 9a0dcf9a93241b160ab548c0611928f19e0af17d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Tue, 16 Aug 2011 16:49:32 +0200 Subject: [PATCH 111/442] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index e954ed13c5..0591d37615 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 16:08+0200\n" +"PO-Revision-Date: 2011-08-16 16:49+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -11937,6 +11937,8 @@ msgid "" "This might be caused by {query_cache_limit} being too low. Flushing the " "query cache might help as well." msgstr "" +"Buna {query_cache_limit} çok düşük olması sebep oluyor olabilir. Sorgu " +"önbelleğinin temizlenmesi de yardımcı olabilir." #: po/advisory_rules.php:83 #, php-format From da677b061522589c55081a15a3e030a1e474129d Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Tue, 16 Aug 2011 19:10:14 +0200 Subject: [PATCH 112/442] Fix typo --- js/messages.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/messages.php b/js/messages.php index 73bcac1aca..a8c7d108bc 100644 --- a/js/messages.php +++ b/js/messages.php @@ -90,7 +90,7 @@ $js_messages['strChartIssuedQueriesTitle'] = __('Questions (executed statements $js_messages['strChartQueryPie'] = __('Query statistics'); /* server status monitor */ -$js_messages['strIncompatibleMonitorConfig'] = __('Local monitor configuration icompatible'); +$js_messages['strIncompatibleMonitorConfig'] = __('Local monitor configuration incompatible'); $js_messages['strIncompatibleMonitorConfigDescription'] = __('The chart arrangement configuration in your browsers local storage is not compatible anymore to the newer version of the monitor dialog. It is very likely that your current configuration will not work anymore. Please reset your configuration to default in the Settings menu.'); $js_messages['strQueryCacheEfficiency'] = __('Query cache efficiency'); From e3f09710dc121148e8421c8d07e87deba1899f63 Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Tue, 16 Aug 2011 19:19:14 +0200 Subject: [PATCH 113/442] update po files --- po/af.po | 760 ++++++++++++++++++------------------- po/ar.po | 760 ++++++++++++++++++------------------- po/az.po | 760 ++++++++++++++++++------------------- po/be.po | 760 ++++++++++++++++++------------------- po/be@latin.po | 760 ++++++++++++++++++------------------- po/bg.po | 760 ++++++++++++++++++------------------- po/bn.po | 950 +++++++++++++++++++++++----------------------- po/br.po | 760 ++++++++++++++++++------------------- po/bs.po | 760 ++++++++++++++++++------------------- po/ca.po | 760 ++++++++++++++++++------------------- po/cs.po | 766 +++++++++++++++++++------------------ po/cy.po | 760 ++++++++++++++++++------------------- po/da.po | 760 ++++++++++++++++++------------------- po/de.po | 762 ++++++++++++++++++------------------- po/el.po | 760 ++++++++++++++++++------------------- po/en_GB.po | 936 ++++++++++++++++++++++----------------------- po/es.po | 838 +++++++++++++++++++--------------------- po/et.po | 760 ++++++++++++++++++------------------- po/eu.po | 760 ++++++++++++++++++------------------- po/fa.po | 760 ++++++++++++++++++------------------- po/fi.po | 760 ++++++++++++++++++------------------- po/fr.po | 760 ++++++++++++++++++------------------- po/gl.po | 760 ++++++++++++++++++------------------- po/he.po | 760 ++++++++++++++++++------------------- po/hi.po | 760 ++++++++++++++++++------------------- po/hr.po | 760 ++++++++++++++++++------------------- po/hu.po | 760 ++++++++++++++++++------------------- po/id.po | 760 ++++++++++++++++++------------------- po/it.po | 760 ++++++++++++++++++------------------- po/ja.po | 811 +++++++++++++++++++-------------------- po/ka.po | 950 +++++++++++++++++++++++----------------------- po/ko.po | 760 ++++++++++++++++++------------------- po/lt.po | 760 ++++++++++++++++++------------------- po/lv.po | 760 ++++++++++++++++++------------------- po/mk.po | 760 ++++++++++++++++++------------------- po/ml.po | 760 ++++++++++++++++++------------------- po/mn.po | 760 ++++++++++++++++++------------------- po/ms.po | 760 ++++++++++++++++++------------------- po/nb.po | 760 ++++++++++++++++++------------------- po/nl.po | 760 ++++++++++++++++++------------------- po/phpmyadmin.pot | 760 ++++++++++++++++++------------------- po/pl.po | 760 ++++++++++++++++++------------------- po/pt.po | 760 ++++++++++++++++++------------------- po/pt_BR.po | 760 ++++++++++++++++++------------------- po/ro.po | 950 +++++++++++++++++++++++----------------------- po/ru.po | 760 ++++++++++++++++++------------------- po/si.po | 950 +++++++++++++++++++++++----------------------- po/sk.po | 760 ++++++++++++++++++------------------- po/sl.po | 760 ++++++++++++++++++------------------- po/sq.po | 760 ++++++++++++++++++------------------- po/sr.po | 760 ++++++++++++++++++------------------- po/sr@latin.po | 760 ++++++++++++++++++------------------- po/sv.po | 762 ++++++++++++++++++------------------- po/ta.po | 760 ++++++++++++++++++------------------- po/te.po | 760 ++++++++++++++++++------------------- po/th.po | 760 ++++++++++++++++++------------------- po/tr.po | 817 +++++++++++++++++++-------------------- po/tt.po | 760 ++++++++++++++++++------------------- po/ug.po | 760 ++++++++++++++++++------------------- po/uk.po | 760 ++++++++++++++++++------------------- po/ur.po | 760 ++++++++++++++++++------------------- po/uz.po | 760 ++++++++++++++++++------------------- po/uz@latin.po | 760 ++++++++++++++++++------------------- po/zh_CN.po | 760 ++++++++++++++++++------------------- po/zh_TW.po | 760 ++++++++++++++++++------------------- 65 files changed, 25222 insertions(+), 25310 deletions(-) diff --git a/po/af.po b/po/af.po index c23d3666c1..4fa3c57657 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-03-30 23:04+0200\n" "Last-Translator: Michal \n" "Language-Team: afrikaans \n" @@ -21,10 +21,10 @@ msgstr "Wys alles" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Bladsy nommer:" @@ -36,8 +36,8 @@ msgid "" msgstr "" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Soek" @@ -45,25 +45,25 @@ msgstr "Soek" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -85,7 +85,7 @@ msgstr "Sleutelnaam" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 #, fuzzy msgid "Description" msgstr "geen Beskrywing" @@ -96,7 +96,7 @@ msgid "Use this value" msgstr "" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -125,7 +125,7 @@ msgstr "Databasis %s is verwyder." msgid "Database comment: " msgstr "Tabel kommentaar" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -134,8 +134,8 @@ msgstr "Tabel kommentaar" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -149,11 +149,11 @@ msgstr "Kolom name" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -164,8 +164,8 @@ msgstr "Tipe" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -175,8 +175,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -185,8 +185,8 @@ msgstr "Verstekwaarde (default)" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Skakels na" @@ -195,8 +195,8 @@ msgstr "Skakels na" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Kommentaar" @@ -207,7 +207,7 @@ msgstr "Kommentaar" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -228,7 +228,7 @@ msgstr "Nee" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -369,7 +369,7 @@ msgstr "Vertoon PDF skema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -393,7 +393,7 @@ msgstr "in gebruik" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 #, fuzzy msgid "Creation" @@ -401,14 +401,14 @@ msgstr "Skep" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "" @@ -511,7 +511,7 @@ msgstr "Doen Navraag" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Toegang Geweier" @@ -546,7 +546,7 @@ msgstr[0] "%s resultate binne tabel %s" msgstr[1] "%s resultate binne tabel %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Beloer Data" @@ -559,10 +559,10 @@ msgstr "Stort data vir tabel" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -687,12 +687,12 @@ msgstr "Kies Niks" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Export" @@ -702,13 +702,13 @@ msgstr "Export" msgid "Print view" msgstr "Drukker mooi (print view)" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Maak Leeg" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -746,7 +746,7 @@ msgstr "Vervang tabel data met leer (file)" msgid "Copy table with prefix" msgstr "Vervang tabel data met leer (file)" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "" @@ -761,7 +761,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -782,7 +782,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "" @@ -887,14 +887,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -920,7 +920,7 @@ msgstr "Die boekmerk is verwyder." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -943,7 +943,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1061,9 +1061,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Verander" @@ -1089,14 +1089,14 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 #, fuzzy msgid "Total" msgstr "totaal" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1128,7 +1128,7 @@ msgstr "Bediener Keuse" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "" @@ -1152,7 +1152,7 @@ msgid "Query statistics" msgstr "Ry Statistiek" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1253,7 +1253,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "" @@ -1263,12 +1263,12 @@ msgstr "" msgid "Questions" msgstr "Operasies" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1294,7 +1294,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Geen" @@ -1515,7 +1515,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1708,7 +1708,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2184,59 +2184,59 @@ msgstr "in gebruik" msgid "Second" msgstr "Rekords" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2264,7 +2264,7 @@ msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2286,14 +2286,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "databasisse" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2390,16 +2390,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2413,12 +2413,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2427,7 +2427,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Welkom by %s" @@ -2447,56 +2447,56 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Teken aan" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentasie" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Gebruiker Naam:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Wagwoord:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Bediener Keuse" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "HTTP Koekies moet van nou af geaktifeer wees." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "" @@ -2527,39 +2527,39 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2699,7 +2699,7 @@ msgid "Documentation" msgstr "Dokumentasie" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-stelling" @@ -2709,7 +2709,7 @@ msgstr "SQL-stelling" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2758,7 +2758,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2857,7 +2857,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2877,8 +2877,8 @@ msgstr "Struktuur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Voeg by" @@ -2889,25 +2889,25 @@ msgstr "Voeg by" msgid "Operations" msgstr "Operasies" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3083,7 +3083,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Herstel" @@ -5295,8 +5295,8 @@ msgstr "Skep 'n nuwe tabel op databasis %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5624,7 +5624,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5691,7 +5691,7 @@ msgid "The row has been deleted" msgstr "Die ry is verwyder" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Vermoor" @@ -6241,7 +6241,7 @@ msgstr "Vertoon Funksies" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Gasheer (host)" @@ -6450,7 +6450,7 @@ msgstr "SQL resultaat" msgid "Generated by" msgstr "Voortgebring deur" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." @@ -6548,7 +6548,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Kolom name" @@ -6904,7 +6904,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "geen Beskrywing" @@ -6939,14 +6939,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Waarde" @@ -7006,7 +7006,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7043,14 +7043,14 @@ msgstr "" msgid "Edit event" msgstr "Voeg 'n nuwe gebruiker by" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7065,7 +7065,7 @@ msgstr "Gebruiker naam" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7093,7 +7093,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Einde" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy msgid "Definition" @@ -7105,12 +7105,12 @@ msgstr "geen Beskrywing" msgid "On completion preserve" msgstr "Voltooi invoegings" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7157,7 +7157,7 @@ msgid "Returns" msgstr "Databasis statistieke" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "" @@ -7173,7 +7173,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7193,116 +7193,116 @@ msgstr "Tabel %s is verwyder" msgid "Routine %1$s has been created." msgstr "Tabel %s is verwyder" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Kolom name" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy msgid "Direction" msgstr "Skep" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Lengte/Waardes*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy msgid "Remove last parameter" msgstr "Hernoem tabel na" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lengte/Waardes*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy msgid "Return options" msgstr "Databasis statistieke" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funksie" @@ -7447,7 +7447,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7457,7 +7457,7 @@ msgstr "Die \"%s\" databasis bestaan nie!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7465,9 +7465,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Stel asb. die koordinate op van tabel %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7481,130 +7481,130 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 #, fuzzy msgid "Table of contents" msgstr "Tabel kommentaar" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Kenmerke" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Skep 'n nuwe bladsy" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bladsy nommer:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy msgid "Automatic layout based on" msgstr "Bediener weergawe" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Kies asb. 'n bladsy om te verander" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Kies Alles" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Kies Tabelle" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "Vertoon PDF skema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Wys ruitgebied" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Wys kleur" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Wys dimensie van tabelle" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "vertoon alle tabelle met dieselfde wydte?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy msgid "Orientation" msgstr "Skep" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7682,11 +7682,11 @@ msgstr "" msgid "Columns" msgstr "Kolom name" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -8087,7 +8087,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Gebruiker" @@ -8281,7 +8281,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8364,46 +8364,46 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Tabel %s is verwyder" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Gebruik" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Skep 'n nuwe indeks" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Gebruiker naam" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8512,12 +8512,12 @@ msgstr "" msgid "All" msgstr "Alle" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabel nie gevind nie of nie gesetel in %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8532,13 +8532,13 @@ msgstr "" msgid "Files" msgstr "Velde" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "" @@ -9350,8 +9350,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "" @@ -9372,103 +9372,103 @@ msgstr "Stellings" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "" -#: server_status.php:1118 +#: server_status.php:1119 #, fuzzy msgid "Command" msgstr "Kommentaar" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9476,78 +9476,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9555,7 +9555,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9563,42 +9563,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9606,33 +9606,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9641,227 +9641,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9869,99 +9869,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9969,18 +9969,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9988,63 +9988,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sa" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy msgid "Add chart" msgstr "Voeg 'n nuwe veld by" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Voortgebring deur" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Voeg By/Verwyder Veld Kolomme" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10053,7 +10053,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10061,11 +10061,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10073,7 +10073,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10081,11 +10081,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10615,12 +10615,12 @@ msgstr "" msgid "Validated SQL" msgstr "Valideer SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Etiket" diff --git a/po/ar.po b/po/ar.po index 667ecdaed9..ef1c3a4c2d 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-07 03:51+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" @@ -22,10 +22,10 @@ msgstr "عرض الكل" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "صفحة رقم:" @@ -39,8 +39,8 @@ msgstr "" "مستعرضك يمنع التحديث عبر النوافذ بسبب إعدادات الأمان." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "بحث" @@ -48,25 +48,25 @@ msgstr "بحث" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "اسم المفتاح" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "الوصف" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "استخدم هذه القيمة" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "لايوجد خادم بث مثبت" @@ -128,7 +128,7 @@ msgstr "تم إنشاء قاعدة البيانات %1$s." msgid "Database comment: " msgstr "ملاحظة قاعدة البيانات: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "تعليقات الجدول" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "عمود" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "نوع" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "خالي" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "إفتراضي" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "مرتبط بـ" @@ -196,8 +196,8 @@ msgstr "مرتبط بـ" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "تعليقات" @@ -208,7 +208,7 @@ msgstr "تعليقات" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "لا" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "بناء الارتباطات" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "قيد الإستعمال" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "الإنشاء" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "التحديث الأخير" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "التحقق الأخير" @@ -500,7 +500,7 @@ msgstr "إرسال الإستعلام" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "ممنوع الوصول" @@ -538,7 +538,7 @@ msgstr[4] "%s مطابقة في الجدول %s" msgstr[5] "%s مطابقة في الجدول %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "استعراض" @@ -550,10 +550,10 @@ msgstr "حذف التشابهات لجدول %s ؟" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -673,12 +673,12 @@ msgstr "إلغاء تحديد الكل" msgid "Check tables having overhead" msgstr "تحقق من الجداول التي تحمل عبء زائد" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "تصدير" @@ -688,13 +688,13 @@ msgstr "تصدير" msgid "Print view" msgstr "عرض نسخة للطباعة" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "إفراغ" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -728,7 +728,7 @@ msgstr "استبدال بادئة الجدول" msgid "Copy table with prefix" msgstr "نسخ الجدول مع البادئة" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "قاموس البيانات" @@ -743,7 +743,7 @@ msgstr "الجداول المتعقبة" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -763,7 +763,7 @@ msgstr "محدث" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "الحالة" @@ -866,14 +866,14 @@ msgstr "" "يبدو أنك تحاول رفع ملف كبير الحجم , فضلاً راجع المستند %sdocumentation%s لحل " "المشكلة." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "لا يمكن قراءة الملف" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -901,7 +901,7 @@ msgstr "لقد حذفت العلامة المرجعية." msgid "Showing bookmark" msgstr "عرض العلامة المرجعية" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "تم إنشاء العلامة المرجعية %s" @@ -928,7 +928,7 @@ msgstr "" "إنهاء الإستيراد ,, يجب زيادة المدة المحددة لتنفيذ php" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1042,9 +1042,9 @@ msgstr "أغلاق" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "تعديل" @@ -1067,13 +1067,13 @@ msgstr "بيانات ثابتة" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "مجموع كلي" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "آخر" @@ -1103,7 +1103,7 @@ msgstr "ترافيك الخادم (بالكيلو بايت)" msgid "Connections since last refresh" msgstr "الإتصالات منذ آخر تحديث" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "عمليات" @@ -1128,7 +1128,7 @@ msgstr "إحصائيات الإستعلام" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "فشل قراءة ملف الإعدادات" #: js/messages.php:94 @@ -1231,7 +1231,7 @@ msgstr "بايتات أُرسلت" msgid "Bytes received" msgstr "بايتات أُستلمت" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "اتصالات" @@ -1240,12 +1240,12 @@ msgstr "اتصالات" msgid "Questions" msgstr "العمليات" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "بيانات سير" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "الإعدادات" @@ -1268,7 +1268,7 @@ msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "لا شيء" @@ -1487,7 +1487,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "استيراد" @@ -1662,7 +1662,7 @@ msgid "Query execution time" msgstr "وقت التنفيذ الأقصى" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2088,51 +2088,51 @@ msgstr "الدقيقة" msgid "Second" msgstr "الثانية" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "حجم الخط" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "خطأ غير معروف عند رفع الملف." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "حجم الملف المرفوع يتجاوز حجم الملف المسموح به في إعدادات php" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "حجم الملف المرفوع يتجاوز حجم الملف المحدد به في نموذج HTML" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "تم رفع جزء من الملف فقط." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "المجلد المؤقت مفقود." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "فشلت عملية كتابة الملف على القرص." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "رفع الملف إستوقف من قبل الامتداد." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "خطأ غير معروف عند رفع الملف." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2140,11 +2140,11 @@ msgstr "" "خطأ عند نقل الملف المرفوع , إنظر :[a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2172,7 +2172,7 @@ msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "تعليق" @@ -2193,14 +2193,14 @@ msgid "" "removed." msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "قاعدة بيانات" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2310,16 +2310,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "مسار الصورة للمظهر %s غير صحيح!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "لاتتوفر معاينة." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "إعتبر" @@ -2333,12 +2333,12 @@ msgstr "المظهر الإفتراضي %s غير موجود!" msgid "Theme %s not found!" msgstr "المظهر %s غير موجود!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "مسار المظهر غير موجود للمظهر %s !" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "مظهر" @@ -2347,7 +2347,7 @@ msgid "Cannot connect: invalid settings." msgstr "لايمكن الإتصال: إعدادات غير صحيحة." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "أهلا بك في %s" @@ -2370,57 +2370,57 @@ msgstr "" "المستضيف، أو اسم المستخدم وكلمة المرور في ملف الإعداد config.inc.php وتتأكد " "أنها مطابقة للمعلومات المعطاة إليك من قبل المسؤول عن خادم MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "دخول" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "مستندات وثائقية لـ phpMyAdmin (بالإنجليزية)" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "يمكن أن تدخل عنوان المضيف والمنفذ مفصولان بالمسافة." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "الخادم:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "اسم المستخدم:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "كلمة المرور:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "اختيار الخادم" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "يجب تفعيل دعم الكوكيز في هذه المرحلة." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "تم منع الدخول بدون كلمة مرور ممنوع في الإعدادات , إنظر قيمة (AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "لانشاط منذ %s ثواني , الرجاء تسجيل الدخول من جديد" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "لا يمكن الدخول إلى خادم MySQL" @@ -2451,41 +2451,41 @@ msgstr "" msgid "Authenticating..." msgstr "مصادقة..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "خطأ PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "فشل إتصال PBMS:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "فشل جلب معلومات PBMS BLOB:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "فشل جلب نوع محتوى BLOB:" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "اعرض الصورة" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "شغل الصوت" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "اعرض الفيديو" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "نزل الملف" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "لايمكن فتح الملف : %s" @@ -2622,7 +2622,7 @@ msgid "Documentation" msgstr "مستندات وثائقية" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "استعلام SQL" @@ -2632,7 +2632,7 @@ msgstr "استعلام SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2681,7 +2681,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "مضمن" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "جانبي" @@ -2784,7 +2784,7 @@ msgid "Click to toggle" msgstr "إضغط للإختيار" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2804,8 +2804,8 @@ msgstr "بناء" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "إدخال" @@ -2816,26 +2816,26 @@ msgstr "إدخال" msgid "Operations" msgstr "عمليات" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "تصفح كمبيوترك." -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "دليل تحميل الملفات على خادم الشبكة" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه." -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "لايوجد أي ملفات لرفعها" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "تنفيذ" @@ -3000,7 +3000,7 @@ msgid "Allow users to customize this value" msgstr "السماح للمستخدمين بتخصيص هذه القيمة" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "إعادة تعيين" @@ -5184,8 +5184,8 @@ msgstr "تكوين جدول جديد في قاعدة البيانات %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5525,7 +5525,7 @@ msgstr "رتب حسب المفتاح" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "خيارات" @@ -5591,7 +5591,7 @@ msgid "The row has been deleted" msgstr "لقد تم حذف الصف" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "إبطال" @@ -6149,7 +6149,7 @@ msgstr "أنواع MIME المتوفرة" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "المزود" @@ -6359,7 +6359,7 @@ msgstr "ناتج استعلام SQL" msgid "Generated by" msgstr "أنشئ بواسطة" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "قام MySQL بإرجاع نتيجة فارغة." @@ -6457,7 +6457,7 @@ msgstr "" msgid "Table name" msgstr "اسم الجدول" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "اسم العمود" @@ -6817,7 +6817,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "بدون وصف" @@ -6852,14 +6852,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "متغير" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "القيمة" @@ -6919,7 +6919,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -6960,14 +6960,14 @@ msgstr "حصل خطأ أثناء معالجة طلبك: " msgid "Edit event" msgstr "حدث" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "خطأ في معالجة الطلب" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -6982,7 +6982,7 @@ msgstr "نوع الحدث" msgid "Event type" msgstr "نوع الحدث" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7014,7 +7014,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "نهاية" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7027,12 +7027,12 @@ msgstr "الوصف" msgid "On completion preserve" msgstr "إدخال كامل" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7080,7 +7080,7 @@ msgid "Returns" msgstr "خيارات الجدول" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "وقت" @@ -7099,7 +7099,7 @@ msgstr "" "ملحق 'mysqli' لتجنب أي مشاكل." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "نوع الإجراء غير صحيح: %s" @@ -7118,101 +7118,101 @@ msgstr "تم تعديل الإجراء %1$s" msgid "Routine %1$s has been created." msgstr "تم إنشاء الإجراء %1$s." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "تعديل الإجراء" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "اسم العمود" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "الإنشاء" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "الطول/القيمة" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "إضافة حقل جديد" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "حذف قاعدة البيانات" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "الطول/القيمة" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "خيارات الجدول" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "نوع الاستعلام" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7223,22 +7223,22 @@ msgstr[3] "%d تأثر بالإجراء الأخير" msgstr[4] "%d تأثر بالإجراء الأخير" msgstr[5] "%d تأثر بالإجراء الأخير" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "نتائج تنفيذ الإجراء %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "تنفيذ" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "دالة" @@ -7395,7 +7395,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7405,7 +7405,7 @@ msgstr "الجدول \"%s\" غير موجود!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7413,9 +7413,9 @@ msgid "Please configure the coordinates for table %s" msgstr "رجاء إعداد الموقع للجدول %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7429,132 +7429,132 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "بناء الارتباطات" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "جدول المحتويات" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "الخواص" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "إضافي" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "أنشئ صفحة جديدة" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحة رقم:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "مظهر تلقائي" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "العلاقات الداخلية" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "رجاء اختر صفحة لتعديلها" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "اختر الجداول" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "اختر الجداول" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "بناء الارتباطات" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "أظهر تخطيط الجدول" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "أظهر اللون" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "إظهار أبعاد الجداول" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "أظهر كل الجداول بنفس العرض؟" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "عرض الصفحة" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "طول الصفحة" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "الإنشاء" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "حجم الورق" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "toggle scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "rtl" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7631,11 +7631,11 @@ msgstr "" msgid "Columns" msgstr "اسم العمود" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" @@ -8081,7 +8081,7 @@ msgstr "نسخة البروتوكول" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "المستخدم" @@ -8274,7 +8274,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8359,47 +8359,47 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "صفحات" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "استورد الملفات" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "تصميم فهرسه جديده" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "اسم المستخدم" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8508,12 +8508,12 @@ msgstr "استورد الملفات" msgid "All" msgstr "الكل" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "الجدول %s غير موجود أو محدد في %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8527,13 +8527,13 @@ msgstr "" msgid "Files" msgstr "الملفات" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "احذف الاستعلامات المعروضة" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "اعرض الاستعلامات كاملة" @@ -9351,8 +9351,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "تخصيص صفحة بدء التشغيل" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "لكل ساعة" @@ -9373,102 +9373,102 @@ msgstr "أوامر" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "استلم" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "أرسل" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "محاولات أخفقت" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "ألغي" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "رقم" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "أمر" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9476,78 +9476,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9555,7 +9555,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9563,42 +9563,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9606,33 +9606,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9641,227 +9641,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9869,99 +9869,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9969,18 +9969,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9988,66 +9988,66 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "ابدأ" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "إضافة حقل جديد" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "حدث" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "إضافه/حذف عمود حقل" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "إستعادة القيمة الإفتراضية" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10056,7 +10056,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10064,11 +10064,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10076,7 +10076,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10084,11 +10084,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10629,12 +10629,12 @@ msgstr "" msgid "Validated SQL" msgstr "التحقق من استعلام SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "علامة" diff --git a/po/az.po b/po/az.po index 7d009b0f3f..a76e43f026 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" @@ -20,10 +20,10 @@ msgstr "Hamısını göster" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Sehife Nömresi:" @@ -35,8 +35,8 @@ msgid "" msgstr "" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Axtarış" @@ -44,25 +44,25 @@ msgstr "Axtarış" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -84,7 +84,7 @@ msgstr "Açar söz" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Haqqında" @@ -94,7 +94,7 @@ msgid "Use this value" msgstr "" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -124,7 +124,7 @@ msgstr "%s bazası yaradildi" msgid "Database comment: " msgstr "Baza qısa izahatı: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -133,8 +133,8 @@ msgstr "Cedvel haqqında qısa izahat" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -148,11 +148,11 @@ msgstr "Sütun adları" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -163,8 +163,8 @@ msgstr "Tip" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -174,8 +174,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -184,8 +184,8 @@ msgstr "Başlanğıc deyeri" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Links to" @@ -194,8 +194,8 @@ msgstr "Links to" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Qısa İzahatlar" @@ -206,7 +206,7 @@ msgstr "Qısa İzahatlar" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -227,7 +227,7 @@ msgstr "Xeyir" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -370,7 +370,7 @@ msgstr "Relational schema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -394,21 +394,21 @@ msgstr "istifadede" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Quruluş" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "En son yenilenme" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "En son yoxlama" @@ -512,7 +512,7 @@ msgstr "Emri İcra Et" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Giriş Tesdiq Edilmedi" @@ -547,7 +547,7 @@ msgstr[0] "%s uyğunluq tapıldı (%s cedvelinde)" msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "İçindekiler" @@ -560,10 +560,10 @@ msgstr "Sxemi çıxarılan cedvel" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -689,12 +689,12 @@ msgstr "Heç Birini Seçme" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksport" @@ -704,13 +704,13 @@ msgstr "Eksport" msgid "Print view" msgstr "Çap görüntüsü" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Boşalt" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -748,7 +748,7 @@ msgstr "Replace table data with file" msgid "Copy table with prefix" msgstr "Replace table data with file" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Me'lumat lüğeti" @@ -763,7 +763,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -784,7 +784,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -891,14 +891,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Fayl oxuna bilmir" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -924,7 +924,7 @@ msgstr "Bookmark silindi." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -947,7 +947,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1076,9 +1076,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Deyişdir" @@ -1104,13 +1104,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Cemi" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1142,7 +1142,7 @@ msgstr "Quraşdırılmış Serverler" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Prosesler" @@ -1168,7 +1168,7 @@ msgid "Query statistics" msgstr "Sıra Statistikası" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1270,7 +1270,7 @@ msgstr "" msgid "Bytes received" msgstr "Alındı" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Elaqeler" @@ -1280,12 +1280,12 @@ msgstr "Elaqeler" msgid "Questions" msgstr "Emeliyyatlar" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Neqliyyat" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1311,7 +1311,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Heç biri" @@ -1534,7 +1534,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1731,7 +1731,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2208,59 +2208,59 @@ msgstr "istifadede" msgid "Second" msgstr "saniyede" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2288,7 +2288,7 @@ msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2310,14 +2310,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Me'lumat Bazaları" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2416,16 +2416,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2439,12 +2439,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2453,7 +2453,7 @@ msgid "Cannot connect: invalid settings." msgstr "Elaqe qura bilmirem: yalnış quruluş." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%s - e Xoş Gelmişsiniz!" @@ -2473,57 +2473,57 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Sisteme Giriş" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentasiyası (etraflı me'lumat üçün)" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 #, fuzzy msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "İstifadeçi Adı:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Parol:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Quraşdırılmış Serverler" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Sisteme girebilmeniz üçün çerez faylları (cookie-ler) aktiv olmalıdır." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL server-e gire bilmirem" @@ -2554,39 +2554,39 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2725,7 +2725,7 @@ msgid "Documentation" msgstr "Dokumentasiya" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL sorğusu" @@ -2735,7 +2735,7 @@ msgstr "SQL sorğusu" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2786,7 +2786,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Motorlar" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2887,7 +2887,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2907,8 +2907,8 @@ msgstr "Quruluş" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Elave et" @@ -2919,26 +2919,26 @@ msgstr "Elave et" msgid "Operations" msgstr "Emeliyyatlar" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-server upload direktoriyası" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3116,7 +3116,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Yenile" @@ -5356,8 +5356,8 @@ msgstr "%s bazasında yeni cedvel qur" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5695,7 +5695,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5763,7 +5763,7 @@ msgid "The row has been deleted" msgstr "Setir silindi" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Söndür" @@ -6322,7 +6322,7 @@ msgstr "Mövcud olan MIME-tipleri" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6537,7 +6537,7 @@ msgstr "SQL result" msgid "Generated by" msgstr "Qurucu" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş netice çoxluğu gönderdi (ye'ni sıfır setir)." @@ -6635,7 +6635,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Sütun adları" @@ -7000,7 +7000,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "Haqqında me'lumat (description) mövcud deyildir" @@ -7035,14 +7035,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Deyişen" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Deyer" @@ -7103,7 +7103,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7140,16 +7140,16 @@ msgstr "" msgid "Edit event" msgstr "Gönderildi" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prosesler" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7164,7 +7164,7 @@ msgstr "Eksport şekli" msgid "Event type" msgstr "Eksport şekli" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7191,7 +7191,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Son" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7204,12 +7204,12 @@ msgstr "Haqqında" msgid "On completion preserve" msgstr "Tam girişli" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7256,7 +7256,7 @@ msgid "Returns" msgstr "Cedvel başlığı" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Müddet" @@ -7273,7 +7273,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7293,121 +7293,121 @@ msgstr "%s cedveli leğv edildi" msgid "Routine %1$s has been created." msgstr "%s cedveli leğv edildi" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Sütun adları" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Quruluş" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Uzunluq/Deyerler*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Yeni sahe elave et" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy msgid "Remove last parameter" msgstr "Cedveli yeniden adlandır" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Uzunluq/Deyerler*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy msgid "Return options" msgstr "Cedvel başlığı" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Sorğu tipi" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funksiya" @@ -7555,7 +7555,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7565,7 +7565,7 @@ msgstr "\"%s\" cedveli mövcud deyil!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7573,9 +7573,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Xahiş edirem, %s cedveli üçün koordinatları yeniden müeyyen et." #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7589,115 +7589,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relational schema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "İçindekiler Cedveli" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Xüsusiyyetler" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Elave Xüs." -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Yeni Sehife qur" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Sehife Nömresi:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatik şablon" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Xahiş edirem, deyişdirilecek Sehifeni seç" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Hamısını Seç" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Select Tables" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relational schema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Show grid" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Rengini göster" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Cedvellerin ölçülerini göster" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "eyni enli bütün cedveller gösterilsinmi?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Landşaft" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portret" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Quruluş" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7705,17 +7705,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7796,11 +7796,11 @@ msgstr "" msgid "Columns" msgstr "Sütun adları" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Bu SQL sorğusunu bookmark-la" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -8253,7 +8253,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "İstifadeçi" @@ -8450,7 +8450,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8533,48 +8533,48 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "%s cedveli leğv edildi" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Miqdar" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Faylları import et" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yeni indeks qur" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "İstifadeçi adı" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8685,13 +8685,13 @@ msgstr "Faylları import et" msgid "All" msgstr "All" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "" "%s cedveli %s içerisinde ya tapılmadı ya da qurulmamışdır" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8706,13 +8706,13 @@ msgstr "" msgid "Files" msgstr "Sahe sayı" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Emrleri Tam Olaraq Göster" @@ -9542,8 +9542,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "saatda" @@ -9564,103 +9564,103 @@ msgstr "Variantlar" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Alındı" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Gönderildi" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Uğursuz Cehdler" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Dayandırılmış Elaqeler" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "Nömre" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Komanda Tipi" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9668,78 +9668,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9747,7 +9747,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9755,42 +9755,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9798,33 +9798,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9833,227 +9833,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10061,99 +10061,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10161,18 +10161,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10180,64 +10180,64 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Şen" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Yeni sahe elave et" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Qurucu" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10246,7 +10246,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10254,11 +10254,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10266,7 +10266,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10274,11 +10274,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10810,12 +10810,12 @@ msgstr "" msgid "Validated SQL" msgstr "SQL Tesdiqle" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Etiket" diff --git a/po/be.po b/po/be.po index 70752b776c..1ded78ef34 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" @@ -20,10 +20,10 @@ msgstr "Паказаць усе" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Старонка:" @@ -38,8 +38,8 @@ msgstr "" "міжваконных ўзаемадзеяньняў" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Пошук" @@ -47,25 +47,25 @@ msgstr "Пошук" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "Імя ключа" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Апісаньне" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "Выкарыстоўваць гэта значэньне" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -127,7 +127,7 @@ msgstr "База дадзеных %1$s створаная." msgid "Database comment: " msgstr "Камэнтар да базы дадзеных: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -136,8 +136,8 @@ msgstr "Камэнтар да табліцы" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -151,11 +151,11 @@ msgstr "Назвы калёнак" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -166,8 +166,8 @@ msgstr "Тып" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -177,8 +177,8 @@ msgstr "Нуль" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -187,8 +187,8 @@ msgstr "Па змоўчаньні" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Зьвязаная з" @@ -197,8 +197,8 @@ msgstr "Зьвязаная з" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Камэнтары" @@ -209,7 +209,7 @@ msgstr "Камэнтары" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -230,7 +230,7 @@ msgstr "Не" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -369,7 +369,7 @@ msgstr "Рэляцыйная схема" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -393,21 +393,21 @@ msgstr "выкарыстоўваецца" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Створаная" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Апошняе абнаўленьне" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Апошняя праверка" @@ -511,7 +511,7 @@ msgstr "Выканаць запыт" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "У доступе адмоўлена" @@ -546,7 +546,7 @@ msgstr[0] "%s супадзеньняў у табліцы %s" msgstr[1] "%s супадзеньняў у табліцы %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Прагляд" @@ -559,10 +559,10 @@ msgstr "Дамп дадзеных табліцы" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -691,12 +691,12 @@ msgstr "Зьняць усе адзнакі" msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Экспарт" @@ -706,13 +706,13 @@ msgstr "Экспарт" msgid "Print view" msgstr "Вэрсія для друку" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Ачысьціць" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -751,7 +751,7 @@ msgstr "Замяніць дадзеныя табліцы дадзенымі з msgid "Copy table with prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Слоўнік дадзеных" @@ -767,7 +767,7 @@ msgstr "Праверыць табліцу" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -789,7 +789,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Стан" @@ -900,14 +900,14 @@ msgstr "" "зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае " "абмежаваньне." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Немагчыма прачытаць файл" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -940,7 +940,7 @@ msgstr "Закладка была выдаленая." msgid "Showing bookmark" msgstr "Паказваючы закладку" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створаная" @@ -968,7 +968,7 @@ msgstr "" "вы не павялічыце ліміты выкананьня php-скрыптоў." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1096,9 +1096,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Рэдагаваць" @@ -1124,13 +1124,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Агулам" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1162,7 +1162,7 @@ msgstr "Выбар сэрвэра" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Працэсы" @@ -1190,7 +1190,7 @@ msgstr "Статыстыка радку" #: js/messages.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" #: js/messages.php:94 @@ -1299,7 +1299,7 @@ msgstr "" msgid "Bytes received" msgstr "Атрымана" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Падлучэньні" @@ -1309,12 +1309,12 @@ msgstr "Падлучэньні" msgid "Questions" msgstr "Пэрсыдзкая" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Трафік" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1343,7 +1343,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Няма" @@ -1568,7 +1568,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Імрарт" @@ -1769,7 +1769,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2249,27 +2249,27 @@ msgstr "выкарыстоўваецца" msgid "Second" msgstr "у сэкунду" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Памер шрыфта" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Падчас загрузкі файла адбылася невядомая памылка." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php." "ini." -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2277,37 +2277,37 @@ msgstr "" "Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў " "вызначаны ў HTML-форме." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Файл быў загружаны толькі часткова." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Адсутнічае часовая тэчка." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Памылка запісу на дыск." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Загрузка файла спыненая пашырэньнем." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Падчас загрузкі файла адбылася невядомая памылка." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2335,7 +2335,7 @@ msgid "Cardinality" msgstr "Колькасьць элемэнтаў" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Камэнтар" @@ -2358,14 +2358,14 @@ msgstr "" "Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь " "іх, магчыма, можна выдаліць." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Базы дадзеных" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2473,16 +2473,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Дапушчальны шлях да малюнкаў тэмы %s ня знойдзены!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Папярэдні прагляд недаступны." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "гэтая" @@ -2496,12 +2496,12 @@ msgstr "Тэма па змоўчаньні %s ня знойдзеная!" msgid "Theme %s not found!" msgstr "Тэма %s ня знойдзеная!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Ня знойдзены шлях да тэмы %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2510,7 +2510,7 @@ msgid "Cannot connect: invalid settings." msgstr "Немагчыма падлучыцца: няправільныя налады." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Запрашаем у %s" @@ -2536,49 +2536,49 @@ msgstr "" "ўпэўніцеся, што яны адпавядаюць інфармацыі, якую даў адміністратар MySQL-" "сэрвэра." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Уваход у сыстэму" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Дакумэнтацыя па phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Сэрвэр" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Імя карыстальніка:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Пароль:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Выбар сэрвэра" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Cookies мусяць быць уключанымі пасьля гэтага месца." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2586,8 +2586,8 @@ msgstr "" "Не было аніякай актыўнасьці на працягу %s сэкундаў. Калі ласка, увайдзіце " "зноў" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Немагчыма залагавацца на сэрвэр MySQL" @@ -2619,41 +2619,41 @@ msgstr "Дзейны ключ аўтэнтыфікацыі не падключа msgid "Authenticating..." msgstr "Аўтэнтыфікацыя..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "Супастаўленьне падлучэньня да MySQL" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2798,7 +2798,7 @@ msgid "Documentation" msgstr "Дакумэнтацыя" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-запыт" @@ -2808,7 +2808,7 @@ msgstr "SQL-запыт" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2859,7 +2859,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Машыны" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Прафіляваньне" @@ -2961,7 +2961,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2981,8 +2981,8 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Уставіць" @@ -2993,26 +2993,26 @@ msgstr "Уставіць" msgid "Operations" msgstr "Апэрацыі" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3189,7 +3189,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Скінуць" @@ -5469,8 +5469,8 @@ msgstr "Стварыць новую табліцу ў БД %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5834,7 +5834,7 @@ msgstr "Сартаваць па ключы" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Налады" @@ -5900,7 +5900,7 @@ msgid "The row has been deleted" msgstr "Радок быў выдалены" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Спыніць" @@ -6518,7 +6518,7 @@ msgstr "Даступныя MIME-тыпы" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Хост" @@ -6733,7 +6733,7 @@ msgstr "SQL-вынік" msgid "Generated by" msgstr "Створаны" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." @@ -6833,7 +6833,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Імя табліцы" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Назвы калёнак" @@ -7197,7 +7197,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "няма апісаньня" @@ -7234,14 +7234,14 @@ msgid "Slave status" msgstr "Паказаць стан залежных сэрвэраў" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Зьменная" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Значэньне" @@ -7301,7 +7301,7 @@ msgstr "Згенэраваць пароль" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7339,16 +7339,16 @@ msgstr "" msgid "Edit event" msgstr "Вэб-сэрвэр" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Працэсы" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7365,7 +7365,7 @@ msgstr "Тып падзеі" msgid "Event type" msgstr "Тып падзеі" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7394,7 +7394,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Апошняя старонка" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7407,12 +7407,12 @@ msgstr "Апісаньне" msgid "On completion preserve" msgstr "Поўная ўстаўка" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7460,7 +7460,7 @@ msgid "Returns" msgstr "Тып працэдуры" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Час" @@ -7476,7 +7476,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7498,127 +7498,127 @@ msgstr "Табліца %s была выдаленая" msgid "Routine %1$s has been created." msgstr "Табліца %1$s створаная." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy msgid "Edit routine" msgstr "Вэб-сэрвэр" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Працэдуры" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Прамыя лініі сувязяў" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Даўжыня/Значэньні*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Дадаць новае поле" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Перайменаваць базу дадзеных у" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Тып працэдуры" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Даўжыня/Значэньні*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Опцыі табліцы" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Тып запыту" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Працэдуры" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Функцыя" @@ -7775,7 +7775,7 @@ msgstr "Праверыць табліцу" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7785,7 +7785,7 @@ msgstr "Табліцы \"%s\" не існуе!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7793,9 +7793,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Калі ласка, сканфігуруйце каардынаты для табліцы %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7811,115 +7811,115 @@ msgstr "Файл %s ня ўтрымлівае ніякага ідэнтыфік msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Рэляцыйная схема" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Зьмест" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Атрыбуты" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Дадаткова" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Стварыць новую старонку" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Старонка:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Аўтаматычнае разьмяшчэньне" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Унутраныя сувязі" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Калі ласка, выберыце старонку для рэдагаваньня" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Выбраць усё" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Выберыце табліцу(ы)" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Рэляцыйная схема" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Паказаць сетку" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Паказаць колер" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Паказаць разьмернасьць табліц" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Паказаць усе табліцы аднолькавай шырыні?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Краявід" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Партрэт" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Створаная" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Памер паперы" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7927,17 +7927,17 @@ msgstr "" "Бягучая старонка ўтрымлівае спасылкі на табліцы, якія больш не існуюць. Ці " "жадаеце вы выдаліць гэтыя спасылкі?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Паказаць папярэдні прагляд" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Невядомая мова: %1$s." @@ -8018,11 +8018,11 @@ msgstr "Каляндар" msgid "Columns" msgstr "Назвы калёнак" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" @@ -8514,7 +8514,7 @@ msgstr "Вэрсія пратаколу" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Карыстальнік" @@ -8722,7 +8722,7 @@ msgstr "Згарнуць/разгарнуць адлюстраваньне ўс msgid "Toggle small/big" msgstr "Пераключыць маленькі/вялікі" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Імпартаваць/Экспартаваць каардынаты табліц ў PDF-схему" @@ -8815,50 +8815,50 @@ msgstr "" "адлюстраваных палёў, націсьніце іконку «Выберыце поле для адлюстраваньня» і " "націсьніце на адпаведнае імя поля." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Табліца %1$s створаная." -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "старонак" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Імпартаваць файлы" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Маштаб" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Стварыць новы індэкс" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Імя карыстальніка" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Маштаб" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "рэкамэндаваны" @@ -8969,12 +8969,12 @@ msgstr "Імпартаваць файлы" msgid "All" msgstr "Усе" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Табліца %s ня знойдзеная або ня вызначаная ў %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8988,13 +8988,13 @@ msgstr "Вылучыце двайковы лог для прагляду" msgid "Files" msgstr "Файлы" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Абразаць паказаныя запыты" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Паказаць поўныя запыты" @@ -9830,8 +9830,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "у гадзіну" @@ -9852,43 +9852,43 @@ msgstr "Выразы" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 #, fuzzy msgid "Replication status" msgstr "Рэплікацыя" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9896,47 +9896,47 @@ msgstr "" "На загружаным сэрвэры байтавыя лічыльнікі могуць пераскокваць кола, таму " "статыстыка, якую паказвае MySQL-сэрвэр, можа быць няправільнай." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Атрымана" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Адпраўлена" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "максымум адначасовых злучэньняў" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Няўдалых спробаў" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Спынена" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Каманда" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -9946,17 +9946,17 @@ msgstr "" "якія перавысілі значэньне binlog_cache_size і выкарыстоўвалі часовы файл для " "захоўваньня выразаў транзакцыі." -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Колькасьць транзакцыяў, якія выкарыстоўвалі часовы двайковы кэш запытаў." -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9968,11 +9968,11 @@ msgstr "" "павялічыць значэньне tmp_table_size, каб часовыя табліцы захоўваліся ў " "памяці, а не на дыску." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Колькасьць часовых файлаў, створаных mysqld." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9980,7 +9980,7 @@ msgstr "" "Колькасьць часовых табліц, разьмешчаных у памяці, якія былі аўтаматычна " "створаныя сэрвэрам падчас выкананьня выразаў." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9988,7 +9988,7 @@ msgstr "" "Колькасьць радкоў, запісаных з INSERT DELAYED, з-за якіх адбыліся пэўныя " "памылкі (пэўна, дубляваныя ключы)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9997,23 +9997,23 @@ msgstr "" "Кожная табліца, на якой выконваецца INSERT DELAYED атрымлівае свой уласны " "паток." -#: server_status.php:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Колькасьць запісаных INSERT DELAYED радкоў." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Колькасьць выкананых FLUSH-выразаў." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Колькасьць унутраных COMMIT-выразаў." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Колькасьць разоў выдаленьня радка з табліцы." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -10023,7 +10023,7 @@ msgstr "" "яна табліцу з дадзеным імем. Гэта называецца высьвятленьнем. " "Handler_discover паказвае колькасьць высьвятленьняў табліц." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -10034,7 +10034,7 @@ msgstr "" "сканаваньняў; напрыклад, SELECT col1 FROM foo, улічваючы, што col1 " "індэксаваная." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -10042,7 +10042,7 @@ msgstr "" "Колькасьць запытаў на чытаньне радка з выкарыстаньнем ключа. Калі яна " "вялікая, гэта добрая прыкмета таго, што запыты і табліцы добра індэксаваныя." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -10052,7 +10052,7 @@ msgstr "" "павялічваецца, калі выконваецца запыт на індэксаваную калёнку з шэрагам " "абмежаваньняў або калі адбываецца сканаваньне індэксаў." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10060,7 +10060,7 @@ msgstr "" "Колькасьць запытаў чытаньня папярэдні радок у ключавым парадку. Гэты мэтад " "чытаньня выкарыстоўваецца пераважна для аптымізацыі ORDER BY ... DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -10072,7 +10072,7 @@ msgstr "" "прысутнічае шмат запытаў, якія патрабуюць ад MySQL перагляд табліцы цалкам " "або выконваюцца аб'яднаньні, якія няправільна выкарыстоўваюць ключы." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -10084,37 +10084,37 @@ msgstr "" "што табліцы індэксаваныя няправільна або запыты не напісаныя так, каб " "выкарыстоўваць перавагі індэксаў." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Колькасьць унутраных выразаў ROLLBACK." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Колькасьць запытаў абнаўленьня радка ў табліцы." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Колькасьць запытаў устаўкі радка ў табліцу." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Колькасьць старонак, якія ўтрымліваюць дадзеныя (зьмененых або нязьмененых)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Колькасьць зьмененых старонак." -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Колькасьць старонак буфэрнага пулу, на якія быў атрыманы запыт на скід." -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Колькасьць вольных старонак." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -10124,7 +10124,7 @@ msgstr "" "старонкі, якія ў бягучы момант чытаюцца ці запісваюцца або якія ня могуць " "быць скінутыя ці выдаленыя з-за пэўнай прычыны." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -10137,11 +10137,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Агульны памер буфэрнага пулу, у старонках." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10150,7 +10150,7 @@ msgstr "" "адбываецца, калі запыт праглядае значную частку табліцы, але ў выпадковым " "парадку." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10158,11 +10158,11 @@ msgstr "" "Колькасьць пасьлядоўных папярэдніх чытаньняў, зробленых InnoDB. Гэта " "адбываецца, калі InnoDB выконвае пасьлядоўны поўны прагляд табліцы." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Колькасьць лягічных запытаў чытаньня, зробленых InnoDB." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10170,7 +10170,7 @@ msgstr "" "Колькасьць лягічных чытаньняў, якія InnoDB не змагла аднавіць з буфэрнага " "пулу, а таму зрабіла аднастаронкавае чытаньне." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -10184,55 +10184,55 @@ msgstr "" "падлічвае колькасьць такіх чаканьняў. Калі памер буфэру быў вызначаны " "правільна, гэтае значэньне мусіць быць маленькім." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Колькасьць запісаў, зробленых у буфэрны пул InnoDB." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Колькасьць апэрацыяў fsync() на бягучы момант." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Бягучая колькасьць апэрацыяў fsync(), якія чакаюць выкананьня." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Бягучая колькасьць чытаньняў, якія чакаюць выкананьня." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Бягучая колькасьць запісаў, якія чакаюць выкананьня." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Колькасьць прачытаных на бягучы момант дадзеных, у байтах." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Агульная колькасьць чытаньняў дадзеных." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Агульная колькасьць запісаў дадзеных." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Колькасьць запісаных на бягучы момант дадзеных, у байтах." -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" "Колькасьць падвойных запісаў, якія былі выкананыя, і колькасьць старонак, " "якія былі запісаныя для гэтай мэты." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -10240,35 +10240,35 @@ msgstr "" "Колькасьць выпадкаў чаканьня з-за таго, што буфэр логу быў занадта малы, і " "таму давялося чакаць, пакуль ён не ачысьціцца." -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Колькасьць запісаў у лог." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Колькасьць фізычна выкананых запісаў у лог-файл." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Колькасьць сынхранізавыных запісаў, зробленых у лог-файл." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Колькасьць сынхранізаваньняў лог-файла, якія чакаюць выкананьня." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Колькасьць запісаў у лог-файл, якія чакаюць выкананьня." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Колькасьць байтаў, запісаных у лог-файл." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Колькасьць створаных старонак." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10276,55 +10276,55 @@ msgstr "" "Памер закампіляванай старонкі InnoDB (па змоўчаньні 16КБ). Пэўныя велічыні " "вымяраюцца ў старонках; памер старонкі дазваляе хутка перавесьці яго ў байты." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Колькасьць прачытаных старонак." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Колькасьць запісаных старонак." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" "Колькасьць блякаваньняў радкоў, чаканьне якіх адбываецца на бягучы момант." -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Сярэдні час атрыманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Агульны час чаканьня атрыманьня магчымасьці блякаваньня радку, у " "мілісэкундах." -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Максымальны час атраманьня магчымасьці блякаваньня радку, у мілісэкундах." -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "Колькасьць разоў, калі даводзілася чакаць блякаваньне радку." -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Колькасьць радкоў, выдаленых з табліц InnoDB." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Колькасьць радкоў, устаўленых у табліцы InnoDB." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Колькась радкоў, прачытаных з табліц InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Колькасьць радкоў, абноўленых у табліцах InnoDB." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10332,7 +10332,7 @@ msgstr "" "Колькасьць блёкаў у кэшы ключоў, якія былі зьмененыя, але яшчэ не былі " "скінутыя на дыск. Выкарыстоўваецца як значэньне Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10340,7 +10340,7 @@ msgstr "" "Колькасьць нявыкарыстаных блёкаў у кэшы ключоў. Гэтае значэньне можна " "выкарыстоўваць для вызначэньня ступені выкарыстаньня кэшу ключоў." -#: server_status.php:1257 +#: server_status.php:1258 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 " @@ -10350,11 +10350,11 @@ msgstr "" "ступеньню пэўнасьці сьведчыць пра максымальную за ўвесь час колькасьць " "блёкаў, якія выкарастоўваліся адначасова." -#: server_status.php:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "Колькасьць запытаў на чытаньне блёку ключоў з кэшу." -#: server_status.php:1259 +#: server_status.php:1260 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 " @@ -10364,15 +10364,15 @@ msgstr "" "вялікае, значэньне key_buffer_size, відаць, вельмі малое. Колькасьць " "промахаў у кэш можна вылічыць як Key_reads/Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "Колькасьць запытаў на запіс блёку ключоў у кэш." -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "Колькасьць фізычных запісаў блёку ключоў на дыск." -#: server_status.php:1262 +#: server_status.php:1263 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 " @@ -10383,17 +10383,17 @@ msgstr "" "Значэньне па змоўчаньні 0 азначае, што ніводны запыт яшчэ ня быў " "зкампіляваны." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Колькасьць радкоў для запісу, адкладзеных запытамі INSERT DELAYED." -#: server_status.php:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10401,39 +10401,39 @@ msgstr "" "Колькасьць табліц, якія былі адкрытыя. Калі адкрытыя табліцы вялікія, " "значэньне кэшу табліц імаверна вельмі малое." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Колькасьць адкрытых файлаў." -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Колькасьць адкрытых патокаў (выкарыстоўваюцца пераважна для лагаваньня)." -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Колькасьць адкрытых табліц." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Колькасьць вольнай памяці для кэшу запытаў." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Колькасьць зваротаў да кэшу." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Колькасьць запытаў, якія былі даданыя ў кэш." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10446,7 +10446,7 @@ msgstr "" "выкарыстоўваўся найменш (LRU) для вызначэньня, якія запыты трэба выдаляць з " "кэшу." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10454,19 +10454,19 @@ msgstr "" "Колькасьць некэшавальных запытаў (некэшавальных або некэшаваных з-за " "значэньня дырэктывы query_cache_type)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Колькасьць запытаў, якія прысутнічаюць у кэшы." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Агульная колькасьць блёкаў у кэшы запытыў." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Стан абароненай ад памылак рэплікацыі (яшчэ не рэалізаваная)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10474,13 +10474,13 @@ msgstr "" "Колькасьць аб'яднаньняў, якія не выкарыстоўвяюць індэксы. Калі гэтае " "значэньне ня роўнае 0, варта праверыць індэксы ў табліцах." -#: server_status.php:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі пошук па масцы ў мэтавай " "табліцы." -#: server_status.php:1280 +#: server_status.php:1281 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.)" @@ -10489,7 +10489,7 @@ msgstr "" "ключа пасьля кожнага радка. (Калі гэтае значэньне ня роўнае 0, варта " "праверыць індэксы ў табліцах.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10497,17 +10497,17 @@ msgstr "" "Колькасьць аб'яднаньняў, якія выкарыстоўвалі спалучэньні палёў у першай " "табліцы. (Звычайна не крытычна, нават калі гэтае значэньне вялікае.)" -#: server_status.php:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "Колькасьць аб'яднаньняў, якія правялі поўны прагляд першай табліцы." -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Колькасьць часовых табліц, якія ў бягучы момант адкрытыя залежным SQL-" "патокам." -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10515,13 +10515,13 @@ msgstr "" "Агульная (ад загрузкі) колькасьць разоў, калі залежны SQL-паток рэплікацыі " "паўтараў транзакцыі." -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Гэтае значэньне роўнае \"ON\", калі сэрвэр зьяўляецца залежным і падлучаным " "да сэрвэра, які яго кантралюе." -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10529,14 +10529,14 @@ msgstr "" "Колькасьць патокаў, якім спатрэбілася больш за slow_launch_time сэкундаў для " "стварэньня." -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Колькасьць запытаў, на выканантне якіх спатрэбілася больш, чым " "long_query_time сэкундаў." -#: server_status.php:1288 +#: server_status.php:1289 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 " @@ -10546,25 +10546,25 @@ msgstr "" "значэньне вялікае, варта разгледзіць павелічэньне значэньня сыстэмнай " "зьменнай sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" "Колькасьць сартаваньняў, якія былі зробленыя з выкарыстаньнем некалькіх " "слупкоў." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Колькасьць адсартаваных радкоў." -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "Колькасьць сартаваньняў, якія былі зробленыя падчас прагляду табліцы." -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "Колькасьць разоў, калі блякаваньне табліцы было зробленае імгненна." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10576,7 +10576,7 @@ msgstr "" "існуюць праблемы з прадукцыйнасьцю, варта спачатку аптымізаваць запыты, а " "пасьля або падзяліць табліцу або табліцы, або выкарыстоўваць рэплікацыю." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10586,11 +10586,11 @@ msgstr "" "вылічаная як Threads_created/Connections. Калі гэтае значэньне пафарбаванае " "ў чырвоны колер, варта павялічыць значэньне thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Колькасьць адкрытых на бягучы момант злучэньняў." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10602,64 +10602,64 @@ msgstr "" "thread_cache_size. (Звычайна, гэта не дае якога-небудзь заўважнага " "павелічэньня прадукцыйнасьці, калі прысутнічае добрая рэалізацыя патокаў.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Колькасьць патокаў, якія не зьяўляюцца сьпячымі." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Суб" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Дадаць новае поле" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Абнавіць" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Дадаць/выдаліць калёнку крытэру" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10668,7 +10668,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10676,11 +10676,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10688,7 +10688,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10696,11 +10696,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11240,12 +11240,12 @@ msgstr "У выглядзе SQL-запыту" msgid "Validated SQL" msgstr "Праверыць SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Праблемы з індэксамі для табліцы `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Метка" diff --git a/po/be@latin.po b/po/be@latin.po index 7d4babd4a3..e0a6b1cc6e 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" @@ -22,10 +22,10 @@ msgstr "Pakazać usie" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Staronka:" @@ -40,8 +40,8 @@ msgstr "" "mižvakonnych ŭzajemadziejańniaŭ" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Pošuk" @@ -49,25 +49,25 @@ msgstr "Pošuk" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "Imia kluča" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Apisańnie" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "Vykarystoŭvać heta značeńnie" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -129,7 +129,7 @@ msgstr "Baza dadzienych %1$s stvoranaja." msgid "Database comment: " msgstr "Kamentar da bazy dadzienych: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "Kamentar da tablicy" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -153,11 +153,11 @@ msgstr "Nazvy kalonak" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -168,8 +168,8 @@ msgstr "Typ" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -179,8 +179,8 @@ msgstr "Nul" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -189,8 +189,8 @@ msgstr "Pa zmoŭčańni" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Źviazanaja z" @@ -199,8 +199,8 @@ msgstr "Źviazanaja z" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Kamentary" @@ -211,7 +211,7 @@ msgstr "Kamentary" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -232,7 +232,7 @@ msgstr "Nie" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -372,7 +372,7 @@ msgstr "Relacyjnaja schiema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -396,21 +396,21 @@ msgstr "vykarystoŭvajecca" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Stvoranaja" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Apošniaje abnaŭleńnie" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Apošniaja pravierka" @@ -515,7 +515,7 @@ msgstr "Vykanać zapyt" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "U dostupie admoŭlena" @@ -551,7 +551,7 @@ msgstr[1] "%s supadzieńniaŭ u tablicy %s" msgstr[2] "%s supadzieńniaŭ u tablicy %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Prahlad" @@ -564,10 +564,10 @@ msgstr "Damp dadzienych tablicy" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -697,12 +697,12 @@ msgstr "Źniać usie adznaki" msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Ekspart" @@ -712,13 +712,13 @@ msgstr "Ekspart" msgid "Print view" msgstr "Versija dla druku" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Ačyścić" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -756,7 +756,7 @@ msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" msgid "Copy table with prefix" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Słoŭnik dadzienych" @@ -771,7 +771,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -791,7 +791,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Stan" @@ -897,14 +897,14 @@ msgstr "" "źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje " "abmiežavańnie." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Niemahčyma pračytać fajł" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -937,7 +937,7 @@ msgstr "Zakładka była vydalenaja." msgid "Showing bookmark" msgstr "Pakazvajučy zakładku" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s stvoranaja" @@ -965,7 +965,7 @@ msgstr "" "kali vy nie pavialičycie limity vykanańnia php-skryptoŭ." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1093,9 +1093,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Redagavać" @@ -1122,13 +1122,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Ahułam" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1160,7 +1160,7 @@ msgstr "Vybar servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Pracesy" @@ -1189,7 +1189,7 @@ msgstr "Statystyka bazaŭ dadzienych" #: js/messages.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" #: js/messages.php:94 @@ -1298,7 +1298,7 @@ msgstr "" msgid "Bytes received" msgstr "Atrymana" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Padłučeńni" @@ -1309,12 +1309,12 @@ msgstr "Padłučeńni" msgid "Questions" msgstr "Suviazi" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Trafik" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1343,7 +1343,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nijakaja" @@ -1569,7 +1569,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Imrart" @@ -1774,7 +1774,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2256,27 +2256,27 @@ msgstr "vykarystoŭvajecca" msgid "Second" msgstr "u sekundu" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Pamier šryfta" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2284,38 +2284,38 @@ msgstr "" "Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ " "vyznačany ŭ HTML-formie." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Fajł byŭ zahružany tolki častkova." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Adsutničaje časovaja tečka." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Pamyłka zapisu na dysk." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Zahruzka fajła spynienaja pašyreńniem." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2343,7 +2343,7 @@ msgid "Cardinality" msgstr "Kolkaść elementaŭ" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Kamentar" @@ -2366,14 +2366,14 @@ msgstr "" "Padobna, što indeksy %1$s i %2$s źjaŭlajucca adnolkavymi, a tamu adzin ź " "ich, mahčyma, možna vydalić." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Bazy dadzienych" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2481,16 +2481,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Dapuščalny šlach da malunkaŭ temy %s nia znojdzieny!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Papiaredni prahlad niedastupny." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "hetaja" @@ -2504,12 +2504,12 @@ msgstr "Tema pa zmoŭčańni %s nia znojdzienaja!" msgid "Theme %s not found!" msgstr "Tema %s nia znojdzienaja!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Nia znojdzieny šlach da temy %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2518,7 +2518,7 @@ msgid "Cannot connect: invalid settings." msgstr "Niemahčyma padłučycca: niapravilnyja nałady." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Zaprašajem u %s" @@ -2544,49 +2544,49 @@ msgstr "" "ŭpeŭniciesia, što jany adpaviadajuć infarmacyi, jakuju daŭ administratar " "MySQL-servera." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Uvachod u systemu" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Dakumentacyja pa phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Imia karystalnika:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Parol:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Vybar servera" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Cookies musiać być uklučanymi paśla hetaha miesca." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2594,8 +2594,8 @@ msgstr "" "Nie było anijakaj aktyŭnaści na praciahu %s sekundaŭ. Kali łaska, uvajdzicie " "znoŭ" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Niemahčyma załahavacca na server MySQL" @@ -2628,41 +2628,41 @@ msgstr "Dziejny kluč aŭtentyfikacyi nie padklučany" msgid "Authenticating..." msgstr "Aŭtentyfikacyja..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "Supastaŭleńnie padłučeńnia da MySQL" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2809,7 +2809,7 @@ msgid "Documentation" msgstr "Dakumentacyja" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-zapyt" @@ -2819,7 +2819,7 @@ msgstr "SQL-zapyt" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2870,7 +2870,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Mašyny" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Prafilavańnie" @@ -2973,7 +2973,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2993,8 +2993,8 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Ustavić" @@ -3005,26 +3005,26 @@ msgstr "Ustavić" msgid "Operations" msgstr "Aperacyi" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, 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/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 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/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3201,7 +3201,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Skinuć" @@ -5447,8 +5447,8 @@ msgstr "Stvaryć novuju tablicu ŭ BD %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5809,7 +5809,7 @@ msgstr "Sartavać pa klučy" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Nałady" @@ -5875,7 +5875,7 @@ msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Spynić" @@ -6498,7 +6498,7 @@ msgstr "Dastupnyja MIME-typy" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Chost" @@ -6712,7 +6712,7 @@ msgstr "SQL-vynik" msgid "Generated by" msgstr "Stvorany" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." @@ -6810,7 +6810,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Imia tablicy" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Nazvy kalonak" @@ -7174,7 +7174,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "niama apisańnia" @@ -7209,14 +7209,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Źmiennaja" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Značeńnie" @@ -7276,7 +7276,7 @@ msgstr "Zgieneravać parol" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7315,16 +7315,16 @@ msgstr "" msgid "Edit event" msgstr "Padzieja" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Pracesy" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7341,7 +7341,7 @@ msgstr "Typ padziei" msgid "Event type" msgstr "Typ padziei" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7369,7 +7369,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Apošniaja staronka" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7382,12 +7382,12 @@ msgstr "Apisańnie" msgid "On completion preserve" msgstr "Poŭnaja ŭstaŭka" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7435,7 +7435,7 @@ msgid "Returns" msgstr "Typ pracedury" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Čas" @@ -7451,7 +7451,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7473,103 +7473,103 @@ msgstr "Tablica %s była vydalenaja" msgid "Routine %1$s has been created." msgstr "Tablica %1$s stvoranaja." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Pracedury" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Pracedury" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Pramyja linii suviaziaŭ" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Daŭžynia/Značeńni*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Dadać novaje pole" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Pierajmienavać bazu dadzienych u" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Typ pracedury" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Daŭžynia/Značeńni*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcyi tablicy" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Typ zapytu" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7577,25 +7577,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Pracedury" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funkcyja" @@ -7752,7 +7752,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7762,7 +7762,7 @@ msgstr "Tablicy \"%s\" nie isnuje!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7770,9 +7770,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Kali łaska, skanfihurujcie kaardynaty dla tablicy %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7788,115 +7788,115 @@ msgstr "Fajł %s nia ŭtrymlivaje nijakaha identyfikatara kluča" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relacyjnaja schiema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Źmiest" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atrybuty" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Dadatkova" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Stvaryć novuju staronku" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Staronka:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Aŭtamatyčnaje raźmiaščeńnie" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Unutranyja suviazi" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Kali łaska, vybierycie staronku dla redagavańnia" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Vybrać usio" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Vybierycie tablicu(y)" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relacyjnaja schiema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Pakazać sietku" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Pakazać koler" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Pakazać raźmiernaść tablic" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Pakazać usie tablicy adnolkavaj šyryni?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Krajavid" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Partret" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Stvoranaja" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Pamier papiery" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7904,17 +7904,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Pakazać papiaredni prahlad" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Nieviadomaja mova: %1$s." @@ -7991,11 +7991,11 @@ msgstr "" msgid "Columns" msgstr "Nazvy kalonak" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" @@ -8492,7 +8492,7 @@ msgstr "Versija pratakołu" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Karystalnik" @@ -8700,7 +8700,7 @@ msgstr "Zharnuć/razharnuć adlustravańnie ŭsich tablic" msgid "Toggle small/big" msgstr "Pieraklučyć maleńki/vialiki" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Impartavać/Ekspartavać kaardynaty tablic ŭ PDF-schiemu" @@ -8794,49 +8794,49 @@ msgstr "" "adlustravanych paloŭ, naciśnicie ikonku «Vybierycie pole dla adlustravańnia» " "i naciśnicie na adpaviednaje imia pola." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "staronak" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Impartavać fajły" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Maštab" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Stvaryć novy indeks" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Imia karystalnika" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Maštab" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "rekamendavany" @@ -8947,12 +8947,12 @@ msgstr "Impartavać fajły" msgid "All" msgstr "Usie" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Tablica %s nia znojdzienaja abo nia vyznačanaja ŭ %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8966,13 +8966,13 @@ msgstr "Vyłučycie dvajkovy łog dla prahladu" msgid "Files" msgstr "Fajły" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Abrazać pakazanyja zapyty" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Pakazać poŭnyja zapyty" @@ -9806,8 +9806,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "u hadzinu" @@ -9828,42 +9828,42 @@ msgstr "Vyrazy" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9871,47 +9871,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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Atrymana" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Adpraŭlena" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "maksymum adnačasovych złučeńniaŭ" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Niaŭdałych sprobaŭ" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Spyniena" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Kamanda" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -9921,17 +9921,17 @@ msgstr "" "jakija pieravysili značeńnie binlog_cache_size i vykarystoŭvali časovy fajł " "dla zachoŭvańnia vyrazaŭ tranzakcyi." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9943,11 +9943,11 @@ msgstr "" "pavialičyć značeńnie tmp_table_size, kab časovyja tablicy zachoŭvalisia ŭ " "pamiaci, a nie na dysku." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Kolkaść časovych fajłaŭ, stvoranych mysqld." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9955,7 +9955,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:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9963,7 +9963,7 @@ msgstr "" "Kolkaść radkoŭ, zapisanych z INSERT DELAYED, z-za jakich adbylisia peŭnyja " "pamyłki (peŭna, dublavanyja klučy)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9972,23 +9972,23 @@ msgstr "" "Kožnaja tablica, na jakoj vykonvajecca INSERT DELAYED atrymlivaje svoj " "ułasny patok." -#: server_status.php:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Kolkaść zapisanych INSERT DELAYED radkoŭ." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Kolkaść vykananych FLUSH-vyrazaŭ." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Kolkaść unutranych COMMIT-vyrazaŭ." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Kolkaść razoŭ vydaleńnia radka z tablicy." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -9998,7 +9998,7 @@ msgstr "" "viedaje jana tablicu z dadzienym imiem. Heta nazyvajecca vyśviatleńniem. " "Handler_discover pakazvaje kolkaść vyśviatleńniaŭ tablic." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -10009,7 +10009,7 @@ msgstr "" "skanavańniaŭ; naprykład, SELECT col1 FROM foo, uličvajučy, što col1 " "indeksavanaja." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -10018,7 +10018,7 @@ msgstr "" "vialikaja, heta dobraja prykmieta taho, što zapyty i tablicy dobra " "indeksavanyja." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -10028,7 +10028,7 @@ msgstr "" "pavialičvajecca, kali vykonvajecca zapyt na indeksavanuju kalonku z šeraham " "abmiežavańniaŭ abo kali adbyvajecca skanavańnie indeksaŭ." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10036,7 +10036,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:1207 +#: server_status.php:1208 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 " @@ -10049,7 +10049,7 @@ msgstr "" "całkam abo vykonvajucca ab'jadnańni, jakija niapravilna vykarystoŭvajuć " "klučy." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -10061,37 +10061,37 @@ msgstr "" "aznačaje, što tablicy indeksavanyja niapravilna abo zapyty nie napisanyja " "tak, kab vykarystoŭvać pieravahi indeksaŭ." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Kolkaść unutranych vyrazaŭ ROLLBACK." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Kolkaść zapytaŭ abnaŭleńnia radka ŭ tablicy." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Kolkaść zapytaŭ ustaŭki radka ŭ tablicu." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Kolkaść staronak, jakija ŭtrymlivajuć dadzienyja (źmienienych abo " "niaźmienienych)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Kolkaść źmienienych staronak." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Kolkaść volnych staronak." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -10101,7 +10101,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:1217 +#: server_status.php:1218 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 " @@ -10114,11 +10114,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Ahulny pamier bufernaha pułu, u staronkach." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10127,7 +10127,7 @@ msgstr "" "adbyvajecca, kali zapyt prahladaje značnuju častku tablicy, ale ŭ vypadkovym " "paradku." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10135,11 +10135,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:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Kolkaść lagičnych zapytaŭ čytańnia, zroblenych InnoDB." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10147,7 +10147,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:1223 +#: server_status.php:1224 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 " @@ -10161,55 +10161,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:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Kolkaść zapisaŭ, zroblenych u buferny puł InnoDB." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Kolkaść aperacyjaŭ fsync() na biahučy momant." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Biahučaja kolkaść aperacyjaŭ fsync(), jakija čakajuć vykanańnia." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Biahučaja kolkaść čytańniaŭ, jakija čakajuć vykanańnia." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Biahučaja kolkaść zapisaŭ, jakija čakajuć vykanańnia." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Kolkaść pračytanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Ahulnaja kolkaść čytańniaŭ dadzienych." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Ahulnaja kolkaść zapisaŭ dadzienych." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Kolkaść zapisanych na biahučy momant dadzienych, u bajtach." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -10217,35 +10217,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Kolkaść zapisaŭ u łog." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Kolkaść fizyčna vykananych zapisaŭ u łog-fajł." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Kolkaść synchranizavynych zapisaŭ, zroblenych u łog-fajł." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Kolkaść synchranizavańniaŭ łog-fajła, jakija čakajuć vykanańnia." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Kolkaść zapisaŭ u łog-fajł, jakija čakajuć vykanańnia." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Kolkaść bajtaŭ, zapisanych u łog-fajł." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Kolkaść stvoranych staronak." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10254,54 +10254,54 @@ msgstr "" "vymiarajucca ŭ staronkach; pamier staronki dazvalaje chutka pieravieści jaho " "ŭ bajty." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Kolkaść pračytanych staronak." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Kolkaść zapisanych staronak." -#: server_status.php:1246 +#: server_status.php:1247 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:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Kolkaść radkoŭ, vydalenych z tablic InnoDB." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Kolkaść radkoŭ, ustaŭlenych u tablicy InnoDB." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Kolkaś radkoŭ, pračytanych z tablic InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Kolkaść radkoŭ, abnoŭlenych u tablicach InnoDB." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10309,7 +10309,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:1256 +#: server_status.php:1257 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." @@ -10317,7 +10317,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:1257 +#: server_status.php:1258 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 " @@ -10327,11 +10327,11 @@ msgstr "" "stupieńniu peŭnaści śviedčyć pra maksymalnuju za ŭvieś čas kolkaść blokaŭ, " "jakija vykarastoŭvalisia adnačasova." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10341,15 +10341,15 @@ 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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10360,17 +10360,17 @@ msgstr "" "Značeńnie pa zmoŭčańni 0 aznačaje, što nivodny zapyt jašče nia byŭ " "zkampilavany." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10378,39 +10378,39 @@ msgstr "" "Kolkaść tablic, jakija byli adkrytyja. Kali adkrytyja tablicy vialikija, " "značeńnie kešu tablic imavierna vielmi małoje." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Kolkaść adkrytych fajłaŭ." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Kolkaść adkrytych tablic." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Kolkaść volnaj pamiaci dla kešu zapytaŭ." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Kolkaść zvarotaŭ da kešu." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Kolkaść zapytaŭ, jakija byli dadanyja ŭ keš." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10423,7 +10423,7 @@ msgstr "" "vykarystoŭvaŭsia najmienš (LRU) dla vyznačeńnia, jakija zapyty treba vydalać " "z kešu." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10431,19 +10431,19 @@ msgstr "" "Kolkaść niekešavalnych zapytaŭ (niekešavalnych abo niekešavanych z-za " "značeńnia dyrektyvy query_cache_type)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Kolkaść zapytaŭ, jakija prysutničajuć u kešy." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Ahulnaja kolkaść blokaŭ u kešy zapytyŭ." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan abaronienaj ad pamyłak replikacyi (jašče nie realizavanaja)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10451,13 +10451,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10466,7 +10466,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:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10474,17 +10474,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10492,13 +10492,13 @@ msgstr "" "Ahulnaja (ad zahruzki) kolkaść razoŭ, kali zaležny SQL-patok replikacyi " "paŭtaraŭ tranzakcyi." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10506,14 +10506,14 @@ msgstr "" "Kolkaść patokaŭ, jakim spatrebiłasia bolš za slow_launch_time sekundaŭ dla " "stvareńnia." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10523,25 +10523,25 @@ msgstr "" "hetaje značeńnie vialikaje, varta razhledzić pavieličeńnie značeńnia " "systemnaj źmiennaj sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 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:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Kolkaść adsartavanych radkoŭ." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10553,7 +10553,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:1294 +#: server_status.php:1295 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 " @@ -10563,11 +10563,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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Kolkaść adkrytych na biahučy momant złučeńniaŭ." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10579,62 +10579,62 @@ 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:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Kolkaść patokaŭ, jakija nie źjaŭlajucca śpiačymi." -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Dadać novaje pole" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Abnavić" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dadać/vydalić kalonku kryteru" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10643,7 +10643,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10651,11 +10651,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10663,7 +10663,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10671,11 +10671,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11210,12 +11210,12 @@ msgstr "U vyhladzie SQL-zapytu" msgid "Validated SQL" msgstr "Pravieryć SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Prablemy z indeksami dla tablicy `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Mietka" diff --git a/po/bg.po b/po/bg.po index 589bec733e..5c841f6d99 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-07-19 14:58+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" @@ -21,10 +21,10 @@ msgstr "Показване всички" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Страница номер:" @@ -39,8 +39,8 @@ msgstr "" "един прозорец в друг от съображения за сигурност." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Търсене" @@ -48,25 +48,25 @@ msgstr "Търсене" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Име на ключ" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Описание" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Използване тази стойност" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Няма зададен BLOB поточен сървър!" @@ -128,7 +128,7 @@ msgstr "БД %1$s беше създадена." msgid "Database comment: " msgstr "Коментар към БД: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Коментари към таблицата" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Kолона" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Тип" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Празно" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "По подразбиране" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Свързана към" @@ -196,8 +196,8 @@ msgstr "Свързана към" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Коментари" @@ -208,7 +208,7 @@ msgstr "Коментари" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Не" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Редакция или експорт на релационна схе #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "зает" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Дата на създаване" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Последно обновление" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Последна проверка" @@ -497,7 +497,7 @@ msgstr "Изпълни заявката" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Отказан достъп" @@ -531,7 +531,7 @@ msgstr[0] "%s съвпадение в таблица %s" msgstr[1] "%s съвпадения в таблица %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Прелистване" @@ -543,10 +543,10 @@ msgstr "Изтриване на съвпаденията от таблицата #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -662,12 +662,12 @@ msgstr "Отмаркиране всички" msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Експорт" @@ -677,13 +677,13 @@ msgstr "Експорт" msgid "Print view" msgstr "Преглед за печат" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Изчистване" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -717,7 +717,7 @@ msgstr "Замяна на представката на таблица" msgid "Copy table with prefix" msgstr "Копиране на таблицата с представка" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Речник на данните" @@ -732,7 +732,7 @@ msgstr "Следени таблици" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -752,7 +752,7 @@ msgstr "Съвременен" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Състояние" @@ -858,14 +858,14 @@ msgstr "" "Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се " "към %sдокументацията%s за да намерите начин да избегнете това ограничение." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Файлът не може да бъде прочетен" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -898,7 +898,7 @@ msgstr "Белязката беше изтрита." msgid "Showing bookmark" msgstr "Показване на белязка" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Белязка %s беше създадена" @@ -926,7 +926,7 @@ msgstr "" "импорт, освен ако не бъдат увеличени времевите ограничения в PHP." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1042,9 +1042,9 @@ msgstr "Затваряне" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Редакция" @@ -1067,13 +1067,13 @@ msgstr "Статична информация" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Общо" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Друго" @@ -1103,7 +1103,7 @@ msgstr "Сървър трафик (в KiB)" msgid "Connections since last refresh" msgstr "Връзки след последното опресняване" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Процеси" @@ -1130,7 +1130,7 @@ msgstr "Статистика за заявките" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Неуспешно прочитане на конфигурацията" #: js/messages.php:94 @@ -1237,7 +1237,7 @@ msgstr "" msgid "Bytes received" msgstr "Получени" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Конекции" @@ -1248,12 +1248,12 @@ msgstr "Конекции" msgid "Questions" msgstr "Версии" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Трафик" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Настройки" @@ -1278,7 +1278,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Няма" @@ -1508,7 +1508,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Импорт" @@ -1681,7 +1681,7 @@ msgid "Query execution time" msgstr "Изпълняване на SQL" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2105,52 +2105,52 @@ msgstr "минута" msgid "Second" msgstr "секунда" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Размер шрифт" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Неизвестна грешка при качване." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "Качваният файл надвижава директивата upload_max_filesize от php.ini." -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Подаденият файл беше само частично качен." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Липсва временна папка." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Неуспешно записване на файл на диска." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Качването на файлът беше спряно от разширение." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Неизвестна грешка при качване." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2158,11 +2158,11 @@ msgstr "" "Грешка при преместване на качения файл, виж [a@./Documentation." "html#faq1_11@Documentation]ЧЗВ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2190,7 +2190,7 @@ msgid "Cardinality" msgstr "Кардиналност" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Коментар" @@ -2213,14 +2213,14 @@ msgstr "" "Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да " "бъде премахнат." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "БД" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2318,16 +2318,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Не открито изображение към тема %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Прегледът не е достъпен." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "тази ще е" @@ -2341,12 +2341,12 @@ msgstr "Темата по подразбиране %s не е намерена!" msgid "Theme %s not found!" msgstr "Тема %s не е намерена!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Не е открит път към тема %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Тема" @@ -2355,7 +2355,7 @@ msgid "Cannot connect: invalid settings." msgstr "Връзката не може да бъде осъществена: невалидни настройки." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Добре дошли в %s" @@ -2381,56 +2381,56 @@ msgstr "" "config.inc.php файла и да се уверите, че те отговарят на информацията " "предоставена от администратора на MySQL сървъра." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Вход" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документация" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Можете да въведете хост/IP адрес и порт, разделени с интервал." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Сървър:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Име:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Парола:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Избор на сървър" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Оттук нататък са необходими бисквитки." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Входът без парола е забранен от конфигурацията (виж AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Няма активност през последните %s секунди; моля влезте отново" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Невъзможен вход в MySQL сървъра" @@ -2461,41 +2461,41 @@ msgstr "" msgid "Authenticating..." msgstr "Удостоверяване..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "неуспешно получаване на типа на BLOB" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Преглед изображение" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Просвирване аудио" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Преглеждане видео" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Изтегляне файл" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Файлът %s не може да бъде отворен" @@ -2634,7 +2634,7 @@ msgid "Documentation" msgstr "Документация" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL заявка" @@ -2644,7 +2644,7 @@ msgstr "SQL заявка" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2693,7 +2693,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "На място" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Профилиране" @@ -2794,7 +2794,7 @@ msgid "Click to toggle" msgstr "Щракване за превключване" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2814,8 +2814,8 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Вмъкване" @@ -2826,25 +2826,25 @@ msgstr "Вмъкване" msgid "Operations" msgstr "Операции" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Разглеждане на компютъра:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Избор от директорията за качване %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Директорията която сте указали за upload не може да бъде достигната" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Няма файлве за качване" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Изпълнение" @@ -3009,7 +3009,7 @@ msgid "Allow users to customize this value" msgstr "Позволение на потребители да променят стойността" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Изчистване" @@ -5163,8 +5163,8 @@ msgstr "Създаване нова таблица в БД %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5459,7 +5459,7 @@ msgstr "Сортиране по ключ" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Настройки" @@ -5519,7 +5519,7 @@ msgid "The row has been deleted" msgstr "Редът беше изтрит" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Спиране" @@ -6045,7 +6045,7 @@ msgstr "Показване MIME типове" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Хост" @@ -6252,7 +6252,7 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерирано от" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." @@ -6348,7 +6348,7 @@ msgstr "" msgid "Table name" msgstr "Име на таблица" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Име на колона" @@ -6702,7 +6702,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "няма описание" @@ -6737,14 +6737,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Стойност" @@ -6804,7 +6804,7 @@ msgstr "Генериране на парола" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -6839,14 +6839,14 @@ msgstr "Една или повече грешки възникнаха при msgid "Edit event" msgstr "Редакция събитие" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Грешка при обработка на заявката" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Подробности" @@ -6859,7 +6859,7 @@ msgstr "Име на събитие" msgid "Event type" msgstr "Тип на събитието" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Промяна на %s" @@ -6886,7 +6886,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Край" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Описание" @@ -6895,12 +6895,12 @@ msgstr "Описание" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -6946,7 +6946,7 @@ msgid "Returns" msgstr "Връща" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Време" @@ -6966,7 +6966,7 @@ msgstr "" "разширение 'mysqli', за да избегнете проблеми." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Невалиден тип процедура: \"%s\"" @@ -6985,69 +6985,69 @@ msgstr "Процедурата%1$s беше променена." msgid "Routine %1$s has been created." msgstr "Процедура %1$s беше създадена." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Редактиране" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Име" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Параметри" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Посока" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Дължина/Стойности" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Нов параметър" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Изтриване на последен параметър" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Тип данни при изход" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Дължина/стойност на данни при изход" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Настройки на данни при изход" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Сигурност" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "Достъп до SQL данните" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "Трябва да дадете име на процедурата" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Невалидна посока \"%s\" подадена като параметър." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7055,41 +7055,41 @@ msgstr "" "Трябва да дадете дължина/стойност за параметрите на процедурата от тип ENUM, " "SET, VARCHAR и VARBINARY." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "Трябва да дадете име и тип за всеки параметър на процедурата." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "Трябва да дадете валиден тип на данните при изход на процедурата." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "Трябва да дадете дефиниция на процедурата." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d повлиян ред от съхранена процедура при последната заявка" msgstr[1] "%d повлияни реда от съхранена процедура при последната заявка" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Резултати от изпълнението на процедура %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Изпълнение на процедура" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Параметри на процедурата" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Функция" @@ -7216,7 +7216,7 @@ msgstr "Няма събития." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7225,7 +7225,7 @@ msgstr "Таблицата %s не съществува!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7233,9 +7233,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Моля конфигурирайте координатите за таблица %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Схема на БД %s - страница %s" @@ -7248,105 +7248,105 @@ msgstr "Тази страница не съдържа таблици!" msgid "SCHEMA ERROR: " msgstr "ГРЕШКА В СХЕМАТА: " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Релационна схема" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Съдържание" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Атрибути" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Допълнително" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Създаване нова страница" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Име на страница" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Автоматично оформление базирано на" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Вътрешни релации" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Моля изберете страница за редакция" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Избор на страница" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Избор на таблици" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Мрежата видима" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Показване свят" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Размери на таблиците видими" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Всички таблици да бъдат показвани с еднаква ширина" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Само ключовете видими" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Пейзажно" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Портретно" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Посока" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Размер на хартията" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7354,17 +7354,17 @@ msgstr "" "Текущата Страница има Референции към Таблици които вече не съществуват. " "Желаете ли да изтриете тези Референции?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Непознат език: %1$s." @@ -7437,11 +7437,11 @@ msgstr "Изчистване" msgid "Columns" msgstr "Колони" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Отбелязване SQL заявката" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Всеки потребител да има достъп до тази белязка" @@ -7861,7 +7861,7 @@ msgstr "Версия на протокола" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Потребител" @@ -8054,7 +8054,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8123,39 +8123,39 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Страница беше създадена" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Неуспешно създаване на страница" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Страница" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Импорт от избрания файл" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Експорт към избраната страница" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "създаване на страница и експорт към нея" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Име: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "препоръчително" @@ -8265,12 +8265,12 @@ msgstr "Импорт на файл" msgid "All" msgstr "Всички" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "таблица %s не е намерена или не е установена в %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Файлът не съществува" @@ -8282,13 +8282,13 @@ msgstr "Изберете двоичен дневник за преглед" msgid "Files" msgstr "Файлове" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Съкращаване на показаните заявки" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Показване на пълните заявки" @@ -9105,8 +9105,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Мрежови трафик от включването: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "на час" @@ -9127,102 +9127,102 @@ msgstr "Заявление" msgid "#" msgstr "№" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Мрежови трафик от включването: %s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Състояние на репликацията" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Получени" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Изпратени" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "максимален брой едновременни връзки" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Неуспешни опити" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Прекъснати" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Команда" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Броят неуспешни опити за връзка към MySQL сървъра." -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9230,78 +9230,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Броят създадени от mysqld временни файлове." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Броят вмъкнати посредством INSERT DELAYED редове." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9309,7 +9309,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9317,42 +9317,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Брой заявки за обновяване на ред в таблица." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Брой заявки за вмъкване на ред в таблица." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9360,33 +9360,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9395,227 +9395,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Броят на заявки за запис в дневника." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Броят изтрити редове от InnoDB таблици." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Броят вмъкнати редове в InnoDB таблици." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Броят прочетени редове от InnoDB таблици." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Броят обновени редове в InnoDB таблици." -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Броят отворени файлове." -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "Броят отворени потоци (използва се главно за дневници)." -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Броят отворени таблици." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Количеството свободна памет за буфер за заявки." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Броят попадения в кеш." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Броят заявки добавени към буфера." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9623,99 +9623,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Броят заявки регистрирани в буфера." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Общият брой блокове в буфера за заявки." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Брой временни таблици отворени от подчинена SQL нишка." -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Броят сортирани редове." -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9723,18 +9723,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Брой текущо отворени връзки." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9742,67 +9742,67 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Броят на нишките, които не са спящи." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start row" msgid "Start Monitor" msgstr "Начален ред" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add parameter" msgid "Add chart" msgstr "Нов параметър" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Скорост на опресняване" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "Колони в текство поле" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Обработка на грешки:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Стойност по подразбиране" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -9811,7 +9811,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -9819,11 +9819,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -9831,7 +9831,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -9839,11 +9839,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10374,12 +10374,12 @@ msgstr "" msgid "Validated SQL" msgstr "Валидиран SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем с индексите на таблица `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Етикет" diff --git a/po/bn.po b/po/bn.po index cb4562ce78..4eed5eca86 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" @@ -21,10 +21,10 @@ msgstr "সবগুলো দেখাও" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "পাতার সংখ্যাঃ" @@ -39,8 +39,8 @@ msgstr "" "দুটি উইন্ডোর এক সাথে হালনাগাদ করাকে বাধা দিবে।" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "খুঁজুন" @@ -48,25 +48,25 @@ msgstr "খুঁজুন" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "বর্ণনা" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "এই মান ব্যাবহার করুন" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "কোন blob ষ্ট্রিমিং সার্ভার কানফিগার করা নাই!" @@ -126,7 +126,7 @@ msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে" msgid "Database comment: " msgstr "ডাটাবেজ মন্তব্যসমূহঃ" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -135,8 +135,8 @@ msgstr "টেবিলের মন্তব্য সমূহ" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -148,11 +148,11 @@ msgstr "কলামের" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -163,8 +163,8 @@ msgstr "ধরন" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -174,8 +174,8 @@ msgstr "খালি" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -184,8 +184,8 @@ msgstr "ডিফল্ট" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "সংযুক্তি হবে" @@ -194,8 +194,8 @@ msgstr "সংযুক্তি হবে" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "মন্তব্যসমূহ" @@ -206,7 +206,7 @@ msgstr "মন্তব্যসমূহ" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -227,7 +227,7 @@ msgstr "না" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -366,7 +366,7 @@ msgstr "Relational schema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -390,21 +390,21 @@ msgstr "in use" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Creation" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "সর্বশেষ আপডেট" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Last check" @@ -508,7 +508,7 @@ msgstr "Submit Query" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "প্রবেশ নিষেধ" @@ -543,7 +543,7 @@ msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "ব্রাউজ করুন" @@ -556,10 +556,10 @@ msgstr "টেবিল এর জন্য ডাটা ডাম্পিং #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -684,12 +684,12 @@ msgstr "Uncheck All" msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Export" @@ -699,13 +699,13 @@ msgstr "Export" msgid "Print view" msgstr "Print view" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "খালি" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -744,7 +744,7 @@ msgstr "Replace table data with file" msgid "Copy table with prefix" msgstr "Replace table data with file" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "ডাটা অভিধান" @@ -760,7 +760,7 @@ msgstr "টেবিল পরীক্ষা কর" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -782,7 +782,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "অবস্থা" @@ -891,14 +891,14 @@ msgstr "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "ফাইল পড়া যায়নি" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -929,7 +929,7 @@ msgstr "বুকমার্কটি মুছে ফেলা হয়েছে msgid "Showing bookmark" msgstr "বুকমার্ক দেখান" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" @@ -956,7 +956,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1084,9 +1084,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "সম্পাদনা কর" @@ -1112,13 +1112,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "মোট" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1150,7 +1150,7 @@ msgstr "Server Choice" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Processes" @@ -1178,7 +1178,7 @@ msgstr "Row Statistics" #: js/messages.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" #: js/messages.php:94 @@ -1287,7 +1287,7 @@ msgstr "" msgid "Bytes received" msgstr "গৃহীত" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "সংযোগসমূহ" @@ -1297,12 +1297,12 @@ msgstr "সংযোগসমূহ" msgid "Questions" msgstr "পারসিয়ান" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Traffic" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1329,7 +1329,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "কোনটিই নয়" @@ -1554,7 +1554,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "ইম্পোর্ট কর" @@ -1753,7 +1753,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2231,60 +2231,60 @@ msgstr "in use" msgid "Second" msgstr "per second" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "ফন্ট এর আকার" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। " -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2312,7 +2312,7 @@ msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2334,14 +2334,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "ডাটাবেজসমূহ Databases" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2448,16 +2448,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "No preview available." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "take it" @@ -2471,12 +2471,12 @@ msgstr "Default theme %s not found!" msgid "Theme %s not found!" msgstr "Theme %s not found!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2485,7 +2485,7 @@ msgid "Cannot connect: invalid settings." msgstr "সংযোগ স্থাপন করা যায়নিঃ invalid settings." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Welcome to %s" @@ -2511,56 +2511,56 @@ msgstr "" "পরীক্ষা করুন এবং তা আপনার Mysql সার্ভারের অ্যাডমিনিষ্টেট্রররের দেওয়া তথ্যের অনুরুপ " "কিনা তা নিশ্চত করুন।" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "লগ ইন" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin documentation" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "সার্ভার" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "ব্যাবহারকারী" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "পাসওয়ার্ড" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Server Choice" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL সার্ভার এ লগ ইন করা যায়নি" @@ -2591,41 +2591,41 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "MySQL connection collation" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2769,7 +2769,7 @@ msgid "Documentation" msgstr "বর্ণনা" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL query" @@ -2779,7 +2779,7 @@ msgstr "SQL query" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2830,7 +2830,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ইঞ্জিনসমূহ" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2929,7 +2929,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2949,8 +2949,8 @@ msgstr "Structure" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insert" @@ -2961,26 +2961,26 @@ msgstr "Insert" msgid "Operations" msgstr "Operations" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3157,7 +3157,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "রিসেট করুন" @@ -5428,8 +5428,8 @@ msgstr "%s ডাটাবেজ় এ নতুন টেবিল তৈর #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5790,7 +5790,7 @@ msgstr "Sort by key" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5858,7 +5858,7 @@ msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Kill" @@ -6437,7 +6437,7 @@ msgstr "Available MIME types" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "হোষ্ট" @@ -6654,7 +6654,7 @@ msgstr "SQL result" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." @@ -6755,7 +6755,7 @@ msgstr "" msgid "Table name" msgstr "টেবিল এর নাম" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "কলামের নাম" @@ -7116,7 +7116,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "কোন বর্ণনা নাই" @@ -7153,14 +7153,14 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "চলক" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "মান" @@ -7220,7 +7220,7 @@ msgstr "পাসওয়ার্ড তৈরী কর" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7257,16 +7257,16 @@ msgstr "" msgid "Edit event" msgstr "Sent" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Processes" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7281,7 +7281,7 @@ msgstr "Event type" msgid "Event type" msgstr "Event type" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7310,7 +7310,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "End" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7323,12 +7323,12 @@ msgstr "বর্ণনা" msgid "On completion preserve" msgstr "Complete inserts" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7376,7 +7376,7 @@ msgid "Returns" msgstr "Table options" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "সময়" @@ -7393,7 +7393,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7414,122 +7414,122 @@ msgstr "Table %s has been dropped" msgid "Routine %1$s has been created." msgstr "Table %s has been dropped" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "কলামের নাম" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Creation" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Length/Values" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "ডাটাবেজ রিনেম কর" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Length/Values" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Table options" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Query type" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Allows executing stored routines." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "ফাংশন" @@ -7682,7 +7682,7 @@ msgstr "টেবিল পরীক্ষা কর" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7692,7 +7692,7 @@ msgstr "The \"%s\" table doesn't exist!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7700,9 +7700,9 @@ msgid "Please configure the coordinates for table %s" msgstr "দয়া করে %s টেবিল এর অবস্থান কনফিগার করুন" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7716,115 +7716,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relational schema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Table of contents" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Attributes" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "অতিরিক্ত" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "একটি নতুন পাতা তৈরী কর" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "পাতার সংখ্যাঃ" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatic layout" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Internal relations" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "অনুগ্রহ করে সম্পাদনা করার জন্য একটি পাতা নির্বাচন করুন" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "সব সিলেক্ট করুন" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "টেবিল সিলেক্ট করুন" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relational schema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Show grid" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "রং দেখান" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Show dimension of tables" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "সব টেবিল সমান প্রশস্থতাসহ প্রদর্শন করুন?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Landscape" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portrait" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Creation" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "পাতার আকার" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7833,17 +7833,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Unknown language: %1$s." @@ -7923,11 +7923,11 @@ msgstr "ক্যালেন্ডার" msgid "Columns" msgstr "কলামের নাম" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" @@ -8411,7 +8411,7 @@ msgstr "Protocol version" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "User" @@ -8617,7 +8617,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8702,50 +8702,50 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Table %s has been dropped" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "পাতাসমুহ" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "ফাইল ইম্পোর্ট কর" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "No rows selected" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "একটি নতুন ইন্ডেস্ক তৈরী কর" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "ব্যাভারকারীর নাম" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8858,12 +8858,12 @@ msgstr "ফাইল ইম্পোর্ট কর" msgid "All" msgstr "All" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8878,13 +8878,13 @@ msgstr "Select binary log to view" msgid "Files" msgstr "ক্ষেত্রসমূহ" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -9718,8 +9718,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "per hour" @@ -9740,43 +9740,43 @@ msgstr "Statements" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 "This MySQL server has been running for %s. It started up on %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 #, fuzzy msgid "Replication status" msgstr "Replication" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9784,47 +9784,47 @@ 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "গৃহীত" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Sent" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "বাদ দেওয়া হল" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "আইডি" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "নির্দেশ" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -9834,16 +9834,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9855,98 +9855,98 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:1195 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - #: server_status.php:1196 msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." #: server_status.php:1197 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:1198 +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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 -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 "" -"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." - #: server_status.php:1203 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 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 "" -"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 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." #: server_status.php:1204 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 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 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 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:1205 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." +"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 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." +"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:1206 msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." +"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 previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." +"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:1207 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 optimize ORDER BY ... DESC." + +#: server_status.php:1208 +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 " @@ -9957,7 +9957,7 @@ msgstr "" "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:1208 +#: server_status.php:1209 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 " @@ -9969,47 +9969,47 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "The number of free pages." -#: server_status.php:1216 -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:1217 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:1218 +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 - " @@ -10020,40 +10020,40 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:1219 -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:1220 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:1221 +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:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:1222 -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:1223 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:1224 +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 " @@ -10066,55 +10066,55 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -10122,35 +10122,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10158,68 +10158,68 @@ 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:1255 -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 "" -"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:1256 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 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 "" -"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 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:1257 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:1258 +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." @@ -10228,11 +10228,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10242,15 +10242,15 @@ msgstr "" "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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10260,17 +10260,17 @@ msgstr "" "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." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10278,70 +10278,70 @@ 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:1273 -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:1274 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:1275 +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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10349,35 +10349,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:1279 +#: server_status.php:1280 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:1280 -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:1281 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:1282 +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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10385,26 +10385,26 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." - #: server_status.php:1287 msgid "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." msgstr "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." #: server_status.php:1288 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:1289 +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." @@ -10413,36 +10413,36 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 -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 " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"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 " -"should first optimize your queries, and then either split your table or " -"tables or use replication." - #: server_status.php:1294 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 " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"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 " +"should first optimize your queries, and then either split your table or " +"tables or use replication." + +#: server_status.php:1295 +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." @@ -10451,11 +10451,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10467,64 +10467,64 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "শনিবার" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Refresh" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Add/Delete Field Columns" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10533,7 +10533,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10541,11 +10541,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10553,7 +10553,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10561,11 +10561,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11103,12 +11103,12 @@ msgstr "Show Full Queries" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "লেবেল" diff --git a/po/br.po b/po/br.po index 258225869c..108672e325 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-10 22:33+0200\n" "Last-Translator: Fulup \n" "Language-Team: LANGUAGE \n" @@ -25,10 +25,10 @@ msgstr "Diskouez pep tra" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Pajenn niv. : " @@ -43,8 +43,8 @@ msgstr "" "prenestroù gant ho merdeer evit abegoù surentez." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Klask" @@ -52,25 +52,25 @@ msgstr "Klask" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -92,7 +92,7 @@ msgstr "Anv ar meneger" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Deskrivadur" @@ -102,7 +102,7 @@ msgid "Use this value" msgstr "Ober gant an talvoud-mañ" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "N'eus bet kefluniet servijer blob streaming ebet !" @@ -132,7 +132,7 @@ msgstr "Krouet eo bet an diaz roadennoù %1$s." msgid "Database comment: " msgstr "Evezhiadenn diwar-benn an diaz roadennoù : " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -141,8 +141,8 @@ msgstr "Evezhiadennoù diwar-benn an daolenn" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -154,11 +154,11 @@ msgstr "Bann" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -169,8 +169,8 @@ msgstr "Seurt" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -180,8 +180,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -190,8 +190,8 @@ msgstr "Dre ziouer" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Liammet ouzh" @@ -200,8 +200,8 @@ msgstr "Liammet ouzh" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Evezhiadennoù" @@ -212,7 +212,7 @@ msgstr "Evezhiadennoù" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -233,7 +233,7 @@ msgstr "Ket" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -364,7 +364,7 @@ msgstr "Embann pe ezporzhiañ ur chema kar" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -388,21 +388,21 @@ msgstr "en implij" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Krouiñ" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Hizivadenn ziwezhañ" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Gwiriadenn ziwezhañ" @@ -501,7 +501,7 @@ msgstr "Kas ar reked" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Moned nac'het" @@ -535,7 +535,7 @@ msgstr[0] "%s glotadenn en daolenn %s " msgstr[1] "%s klotadenn en daolenn %s " #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Furchal" @@ -547,10 +547,10 @@ msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -668,12 +668,12 @@ msgstr "Diaskañ pep tra" msgid "Check tables having overhead" msgstr "Askañ an taolennoù gant dilerc'hioù" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Ezporzhiañ" @@ -683,13 +683,13 @@ msgstr "Ezporzhiañ" msgid "Print view" msgstr "Stumm da voullañ" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Goullonderiñ" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -723,7 +723,7 @@ msgstr "Erlec'hiañ rakger an daolenn" msgid "Copy table with prefix" msgstr "Eilañ an daolenn enni ur rakger" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Geriadur roadennoù" @@ -738,7 +738,7 @@ msgstr "Taolennoù heuliet-pizh" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -758,7 +758,7 @@ msgstr "Hizivaet" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Statud" @@ -863,14 +863,14 @@ 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." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "N'haller ket lenn ar restr" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -903,7 +903,7 @@ msgstr "Diverket eo bet ar sined." msgid "Showing bookmark" msgstr "O tiskouez ar sined" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Krouet eo bet ar sined %s" @@ -931,7 +931,7 @@ msgstr "" "ne vez ket kresket ganeoc'h bevenn amzer PHP." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1048,9 +1048,9 @@ msgstr "Serriñ" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Kemmañ" @@ -1073,13 +1073,13 @@ msgstr "Roadennoù stadegel" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Hollad" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Udb all" @@ -1109,7 +1109,7 @@ msgstr "Tremenerezh war ar servijer (e Kio)" msgid "Connections since last refresh" msgstr "Kevreadennoù abaoe ar freskadenn ziwezhañ" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Argerzhioù" @@ -1134,7 +1134,7 @@ msgstr "Stadegoù war ar rekedoù" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Dibosupl lenn ar restr keluniañ" #: js/messages.php:94 @@ -1229,7 +1229,7 @@ msgstr "Oktedoù kaset" msgid "Bytes received" msgstr "Oktedoù resevet" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Kevreadennoù" @@ -1238,12 +1238,12 @@ msgstr "Kevreadennoù" msgid "Questions" msgstr "Goulennoù" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Tremenerezh" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Arventennoù" @@ -1266,7 +1266,7 @@ msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Hini" @@ -1492,7 +1492,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Enporzhiañ" @@ -1664,7 +1664,7 @@ msgid "Query execution time" msgstr "Pad seveniñ hirañ" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2088,27 +2088,27 @@ msgstr "Munut" msgid "Second" msgstr "Eilenn" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Ment an destenn" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Fazi dianav en ur bellgargañ ar restr." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2116,27 +2116,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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Hanter bellgarget eo bet ar restr nemetken." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Mankout a ra ur c'havlec'h padennek." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Fazi en ur skrivañ ar restr war ar bladenn." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Harzet eo bet ar pellgargañ gant an astenn." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Fazi dianav en ur bellgargañ ar restr." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2144,11 +2144,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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2176,7 +2176,7 @@ msgid "Cardinality" msgstr "Kardinalegezh" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Evezhiadenn" @@ -2199,14 +2199,14 @@ msgstr "" "Evit doare eo kevatal an menegerioù %1$s ha %2$s hag unan anezho a c'hallfe " "bezañ dilamet." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Diazoù roadennoù" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2302,16 +2302,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "N'eus ket eus un hent reizh evit skeudennoù an tem %s !" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "N'haller ket rakwelet." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "tapit-eñ" @@ -2325,12 +2325,12 @@ msgstr "N'eo ket bet kavet an tem dre ziouer %s !" msgid "Theme %s not found!" msgstr "N'eo ket bet kavet an tem %s !" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "N'eo ket bet kavet an hent evit an tem %s !" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tem" @@ -2339,7 +2339,7 @@ msgid "Cannot connect: invalid settings." msgstr "Dibosupl kevreañ : arventennoù direizh." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Degemer mat e %s" @@ -2365,45 +2365,45 @@ msgstr "" "ger-tremen en ho kefluniadur ha bezit sur e klotont gant an titouroù " "pourchaset gant merour ar servijer MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Kevreañ" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Teuliadur phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Gallout a rit merkañ anv ar servijer pe e chomlec'h IP, gant ar porzh " "dispartiet dre un esaouenn." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Servijer : " -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Anv implijer : " -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Ger-tremen : " -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Dibab ar servijer" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Evit gallout kenderc'hel e rankit gweredekaat an toupinoù." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2411,14 +2411,14 @@ msgstr "" "Berzet eo kevreañ hep ger-tremen gant ar c'hefluniadur (gwelet " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Tamm obererezh ebet abaoe %s eilenn; kevreit en-dro" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Dibosupl kevreañ ouzh ar servijer MySQL" @@ -2449,41 +2449,41 @@ msgstr "N'eus bet luget alc'hwez dilesa reizh ebet" msgid "Authenticating..." msgstr "O tilesa..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "Fazi PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "C'hwitet eo bet ar gevreadenn PBMS :" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "C'hwitet eo bet moned PBMS ouzh an titouroù BLOB :" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "C'hwitet eo bet ar moned ouzh Content-Type ar BLOB" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Gwelet ar skeudenn" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Lenn ar son" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Lenn ar video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Pellgargañ" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "N'eus ket bet gallet digeriñ ar restr : %s" @@ -2622,7 +2622,7 @@ msgid "Documentation" msgstr "Teuliadur" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "Reked SQL" @@ -2632,7 +2632,7 @@ msgstr "Reked SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2681,7 +2681,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Enlinenn" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "O profilañ" @@ -2780,7 +2780,7 @@ msgid "Click to toggle" msgstr "Klikañ evit gwintañ" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2800,8 +2800,8 @@ msgstr "Framm" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Ensoc'hañ" @@ -2812,25 +2812,25 @@ msgstr "Ensoc'hañ" msgid "Operations" msgstr "Oberiadennoù" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Furchal en hoc'h urzhiataer" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Ar c'havlec'h treuzkas n'hall ket bezañ diraezet." -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "N'eus restr ebet da enporzhiañ" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Seveniñ" @@ -2996,7 +2996,7 @@ msgid "Allow users to customize this value" msgstr "Aotren an implijerien da bersonelaat an talvoud-mañ" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Adderaouekaat" @@ -5185,8 +5185,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5479,7 +5479,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "" @@ -5539,7 +5539,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "" @@ -6065,7 +6065,7 @@ msgstr "" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "" @@ -6268,7 +6268,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)." @@ -6364,7 +6364,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "" @@ -6716,7 +6716,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "" @@ -6751,14 +6751,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "" @@ -6818,7 +6818,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -6857,14 +6857,14 @@ msgstr "Ur fazi, pe meur a hini, zo bet en ur seveniñ ho koulenn :" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Fazi en ur seveniñ ar reked" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -6877,7 +6877,7 @@ msgstr "" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "" @@ -6908,7 +6908,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "" @@ -6919,12 +6919,12 @@ msgstr "" msgid "On completion preserve" msgstr "Ensoc'hadennoù sevenet" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -6970,7 +6970,7 @@ msgid "Returns" msgstr "" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "" @@ -6989,7 +6989,7 @@ msgstr "" "c'hwitañ ! Grit gant an astenn 'mysqli' gwellaet, kuit da gaout kudennoù." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Seurt argerzh faziek : \"%s\"" @@ -7008,109 +7008,109 @@ msgstr "Kemmet eo bet an argerzh %1s." msgid "Routine %1$s has been created." msgstr "Krouet eo bet an argerzh %1s." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Kemmañ un argerzh" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "Tizhet ez eus bet %d linenn dre embannadenn ziwezhañ an argerzh" msgstr[1] "Tizhet ez eus bet %d linenn dre embannadenn ziwezhañ an argerzh" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Disoc'hoù seveniñ an argerzh %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Seveniñ an argerzh" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "" @@ -7254,7 +7254,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7263,7 +7263,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7271,9 +7271,9 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -7286,121 +7286,121 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7473,11 +7473,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -7835,7 +7835,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "" @@ -8017,7 +8017,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8086,39 +8086,39 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8225,12 +8225,12 @@ msgstr "" msgid "All" msgstr "" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "" @@ -8242,13 +8242,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "" @@ -9033,8 +9033,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Personelaat ar bajenn deraouiñ" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "" @@ -9055,101 +9055,101 @@ msgstr "" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Urzhiad" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9157,78 +9157,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9236,7 +9236,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9244,42 +9244,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9287,33 +9287,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9322,227 +9322,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9550,99 +9550,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9650,18 +9650,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9669,63 +9669,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Freskaat" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "Bannoù evit an takadoù skrid CHAR" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Adlakaat an talvoud dre ziouer" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -9734,7 +9734,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -9742,13 +9742,13 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Paouez gant an evezhiañ" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -9756,7 +9756,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -9764,11 +9764,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10289,12 +10289,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "" diff --git a/po/bs.po b/po/bs.po index 4588fbcc64..0b8942d867 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" @@ -20,10 +20,10 @@ msgstr "Prikaži sve" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Broj strane:" @@ -38,8 +38,8 @@ msgstr "" "prozorima zbog sigurnosnih podešavanja" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Pretraživanje" @@ -47,25 +47,25 @@ msgstr "Pretraživanje" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "Ime ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Opis" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "Koristi ovu vrijednost" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -125,7 +125,7 @@ msgstr "Baza %s je odbačena." msgid "Database comment: " msgstr "Komentar baze:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -134,8 +134,8 @@ msgstr "Komentari tabele" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -149,11 +149,11 @@ msgstr "Imena kolona" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -164,8 +164,8 @@ msgstr "Tip" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -175,8 +175,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -185,8 +185,8 @@ msgstr "Podrazumjevano" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Veze ka" @@ -195,8 +195,8 @@ msgstr "Veze ka" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Komentari" @@ -207,7 +207,7 @@ msgstr "Komentari" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -228,7 +228,7 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -370,7 +370,7 @@ msgstr "Relaciona shema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -394,21 +394,21 @@ msgstr "se koristi" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Napravljeno" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Posljednja izmjena" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Posljednja provjera" @@ -512,7 +512,7 @@ msgstr "Izvrši SQL upit" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Ulaz nije dozvoljen" @@ -547,7 +547,7 @@ msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Pregled" @@ -560,10 +560,10 @@ msgstr "Prikaz podataka tabele" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -689,12 +689,12 @@ msgstr "nijedno" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Izvoz" @@ -704,13 +704,13 @@ msgstr "Izvoz" msgid "Print view" msgstr "Za štampu" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Isprazni" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -748,7 +748,7 @@ msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" msgid "Copy table with prefix" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Rečnik podataka" @@ -763,7 +763,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -784,7 +784,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -891,14 +891,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -924,7 +924,7 @@ msgstr "Obilježivač je upravo obrisan." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -947,7 +947,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1070,9 +1070,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Promeni" @@ -1098,13 +1098,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1136,7 +1136,7 @@ msgstr "Izbor servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Procesi" @@ -1162,7 +1162,7 @@ msgid "Query statistics" msgstr "Statistike reda" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1264,7 +1264,7 @@ msgstr "" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Konekcije" @@ -1274,12 +1274,12 @@ msgstr "Konekcije" msgid "Questions" msgstr "Operacije" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Saobraćaj" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1305,7 +1305,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "nema" @@ -1528,7 +1528,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1725,7 +1725,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2202,59 +2202,59 @@ msgstr "se koristi" msgid "Second" msgstr "u sekundi" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2282,7 +2282,7 @@ msgid "Cardinality" msgstr "Kardinalnost" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2304,14 +2304,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Baze" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2410,16 +2410,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2433,12 +2433,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2447,7 +2447,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Dobrodošli na %s" @@ -2471,57 +2471,57 @@ msgstr "" "php i uvjerite se da odgovaraju podacima koje ste dobili od administratora " "MySQL servera." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Prijavljivanje" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 #, fuzzy msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Korisničko ime:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Lozinka:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Izbor servera" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivirani." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Ne mogu da se prijavim na MySQL server" @@ -2552,39 +2552,39 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2723,7 +2723,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL upit" @@ -2733,7 +2733,7 @@ msgstr "SQL upit" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2782,7 +2782,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2883,7 +2883,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2903,8 +2903,8 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Novi zapis" @@ -2915,26 +2915,26 @@ msgstr "Novi zapis" msgid "Operations" msgstr "Operacije" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direkcija za slanje web servera " -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Direkcija koju ste izabrali za slanje nije dostupna" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3112,7 +3112,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Resetuj" @@ -5346,8 +5346,8 @@ msgstr "Napravi novu tabelu u bazi %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5685,7 +5685,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5753,7 +5753,7 @@ msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Obustavi" @@ -6308,7 +6308,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6521,7 +6521,7 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generirao" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." @@ -6619,7 +6619,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Imena kolona" @@ -6984,7 +6984,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "nema opisa" @@ -7019,14 +7019,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Promjenljiva" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Vrijednost" @@ -7087,7 +7087,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7124,16 +7124,16 @@ msgstr "" msgid "Edit event" msgstr "Poslato" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7148,7 +7148,7 @@ msgstr "Vrsta upita" msgid "Event type" msgstr "Vrsta upita" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7177,7 +7177,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Kraj" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7190,12 +7190,12 @@ msgstr "Opis" msgid "On completion preserve" msgstr "Kompletan INSERT (sa imenima polja)" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7243,7 +7243,7 @@ msgid "Returns" msgstr "Opcije tabele" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Vrijeme" @@ -7260,7 +7260,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7280,122 +7280,122 @@ msgstr "Tabela %s je odbačena" msgid "Routine %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Imena kolona" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Napravljeno" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Dužina/Vrijednost*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Dodaj novo polje" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy msgid "Remove last parameter" msgstr "Promjeni ime tabele u " -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Dužina/Vrijednost*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcije tabele" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vrsta upita" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funkcija" @@ -7543,7 +7543,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7553,7 +7553,7 @@ msgstr "Tabela \"%s\" ne postoji!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7561,9 +7561,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Podesite koordinate za tabelu %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7577,115 +7577,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relaciona shema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Sadržaj" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atributi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Dodatno" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Napravi novu stranu" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj strane:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatski raspored" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Izaberite stranu koju menjate" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Izaberi sve" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Izaberi tabele" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relaciona shema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Prikaži mrežu" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Prikaži boju" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Prikaži dimenzije tabele" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "prikaz svih tabela iste širine?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Položeno" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Uspravno" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Napravljeno" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Dimenzije papira" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7693,17 +7693,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Uključuje/isključuje scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7783,11 +7783,11 @@ msgstr "" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Obilježi SQL-upit" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -8238,7 +8238,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Korisnik" @@ -8436,7 +8436,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8520,48 +8520,48 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Tabela %s je odbačena" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Zauzeće" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Uvoz fajlova" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Napravi novi ključ" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Ime korisnika" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8672,12 +8672,12 @@ msgstr "Uvoz fajlova" msgid "All" msgstr "Sve" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela nije pronađena ili nije postavljena u %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8692,13 +8692,13 @@ msgstr "" msgid "Files" msgstr "Polja" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -9527,8 +9527,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "na sat" @@ -9549,103 +9549,103 @@ msgstr "Ime" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Primljeno" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Poslato" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Naredba" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9653,78 +9653,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9732,7 +9732,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9740,42 +9740,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9783,33 +9783,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9818,227 +9818,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10046,99 +10046,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10146,18 +10146,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10165,64 +10165,64 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Dodaj novo polje" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Generirao" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/obriši kolonu" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10231,7 +10231,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10239,11 +10239,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10251,7 +10251,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10259,11 +10259,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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,12 +10795,12 @@ msgstr "" msgid "Validated SQL" msgstr "Provjeri SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Naziv" diff --git a/po/ca.po b/po/ca.po index 3326871231..413245aa11 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" @@ -21,10 +21,10 @@ msgstr "Mostra tot" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Número de pàgina:" @@ -39,8 +39,8 @@ msgstr "" "finestres per la teva configuració de seguretat." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Cerca" @@ -48,25 +48,25 @@ msgstr "Cerca" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Nom de clau" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Descripció" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Fes servir aquest valor" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "No s'ha configurat un servidor d'emissió binari -blob streaming-!" @@ -128,7 +128,7 @@ msgstr "S'ha creat la base de dades %1$s." msgid "Database comment: " msgstr "Comentaris de la base de dades: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Comentaris de la taula" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Columna" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Tipus" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Nul" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Defecte" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Enllaços a" @@ -196,8 +196,8 @@ msgstr "Enllaços a" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Comentaris" @@ -208,7 +208,7 @@ msgstr "Comentaris" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "No" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Edita o exporta l'esquema relacional" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "en ús" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Creació" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Darrera actualització" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Darrera comprovació" @@ -497,7 +497,7 @@ msgstr "Executa consulta" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Accés denegat" @@ -531,7 +531,7 @@ msgstr[0] "%s resultat a la taula %s" msgstr[1] "%s resultats a la taula %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Navega" @@ -543,10 +543,10 @@ msgstr "Esborrar les coincidències per a la taula %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -667,12 +667,12 @@ msgstr "Desmarcar tot" msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exporta" @@ -682,13 +682,13 @@ msgstr "Exporta" msgid "Print view" msgstr "Imprimeix vista" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Buida" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -728,7 +728,7 @@ msgstr "Canviar les dades de la taula per l'arxiu " msgid "Copy table with prefix" msgstr "Canviar les dades de la taula per l'arxiu " -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Diccionari de Dades" @@ -743,7 +743,7 @@ msgstr "Taules seguides" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -763,7 +763,7 @@ msgstr "Actualitzat" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Estat" @@ -868,14 +868,14 @@ msgstr "" "Probablement has triat d'enviar un arxiu massa gran. Consulta la " "%sdocumentació%s per trobar formes de modificar aquest límit." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "No es pot llegir l'arxiu" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -907,7 +907,7 @@ msgstr "S'ha esborrat la consulta desada." msgid "Showing bookmark" msgstr "Mostrant consultes desades" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "%s creat com a Consulta desada" @@ -935,7 +935,7 @@ msgstr "" "incrementeu els límits de temps de php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1060,9 +1060,9 @@ msgstr "Tanca" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Edita" @@ -1089,13 +1089,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "Elecció de Servidor" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Processos" @@ -1154,7 +1154,7 @@ msgstr "Consulta d'estadístiques" #: js/messages.php:93 #, fuzzy #| msgid "Could not save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "No es pot desar la configuració" #: js/messages.php:94 @@ -1263,7 +1263,7 @@ msgstr "" msgid "Bytes received" msgstr "Rebut" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Connexions" @@ -1274,12 +1274,12 @@ msgstr "Connexions" msgid "Questions" msgstr "Versions" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Tràfic" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Configuració" @@ -1306,7 +1306,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Res" @@ -1536,7 +1536,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importa" @@ -1723,7 +1723,7 @@ msgid "Query execution time" msgstr "Màxim temps d'execució" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2151,26 +2151,26 @@ msgstr "Minut" msgid "Second" msgstr "Segon" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Tamany de lletra" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Error desconegut al pujar l'arxiu." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2178,27 +2178,27 @@ msgstr "" "El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al " "formulari HTML." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Només s'ha pujat parcialment l'arxiu." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "No es troba la carpeta temporal." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Error en gravar l'arxiu al disc." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Pujada de l'arxiu aturada per l'extensió." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Error desconegut al pujar l'arxiu." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2206,11 +2206,11 @@ msgstr "" "Error movent l'arxiu pujat, consulta la [a@./Documentation." "html#faq1_11@Documentation]PCF -FAQ- 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2238,7 +2238,7 @@ msgid "Cardinality" msgstr "Cardinalitat" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Comentari" @@ -2261,14 +2261,14 @@ msgstr "" "Els indexos %1$s i %2$s semblen iguals i un d'ells possiblement es podria " "esborrar." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Bases de dades" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2376,16 +2376,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "El camí de les imatges del tema %s és incorrecte!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "No hi ha vista prèvia disponible." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "agafa" @@ -2399,12 +2399,12 @@ msgstr "Tema per defecte %s no trobat!" msgid "Theme %s not found!" msgstr "Tema %s no trobat!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "No s'ha trobat el camí de les imatges del tema %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2413,7 +2413,7 @@ msgid "Cannot connect: invalid settings." msgstr "No puc connectar: paràmetres incorrectes." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Benvingut a %s" @@ -2439,44 +2439,44 @@ msgstr "" "a l'arxiu config.inc.php i mira que es correspongui amb l'informació " "facilitada per l'administrador del servidor de MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Identificació" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Documentació de phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Pots entrar un nom d'amfitrió/adreça IP i port separat per espai." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Servidor:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Nom d'usuari:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Contrasenya:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Elecció de Servidor" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "" "A partir d'aquest punt és necessari tenir les galetes -cookies- activades." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2484,14 +2484,14 @@ msgstr "" "La configuració prohibeix la connexió sense contrasenya (veure " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Sense activitat des de fa %s segons o més, entra de nou" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "No podem connectar amb el servidor MySQL" @@ -2524,41 +2524,41 @@ msgstr "Cap clau d'autenticació vàlida endollada" msgid "Authenticating..." msgstr "Autenticant..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "Error de PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "Error en la connexió PBMS:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "Ha fallat l'obtenció d'ínformació BLOB per a PBMS:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "Ha fallat l'obtenció del Content-Type BLOB" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Veure imatge" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Escolta audio" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Veure video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Descarrega arxiu" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "No es pot obrir l'arxiu: %s" @@ -2698,7 +2698,7 @@ msgid "Documentation" msgstr "Documentació" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "Consulta SQL" @@ -2708,7 +2708,7 @@ msgstr "Consulta SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2757,7 +2757,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "En línia" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Perfils" @@ -2860,7 +2860,7 @@ msgid "Click to toggle" msgstr "Clica per seleccionar" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2880,8 +2880,8 @@ msgstr "Estructura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insereix" @@ -2892,26 +2892,26 @@ msgstr "Insereix" msgid "Operations" msgstr "Operacions" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Navega al teu ordinador:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, 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/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "No està disponible el directori indicat per pujar arxius" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "No hi ha cap arxiu per pujar" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3078,7 +3078,7 @@ msgid "Allow users to customize this value" msgstr "Permet als usuaris configurar aquest valor" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Reinicia" @@ -5442,8 +5442,8 @@ msgstr "Crear una taula nova a la base de dades %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5763,7 +5763,7 @@ msgstr "Classifica per la clau" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Opcions" @@ -5823,7 +5823,7 @@ msgid "The row has been deleted" msgstr "S'ha esborrat la fila" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Finalitzar" @@ -6420,7 +6420,7 @@ msgstr "Mostra tipus MIME" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Servidor" @@ -6651,7 +6651,7 @@ msgstr "Resultat SQL" msgid "Generated by" msgstr "Generat per" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." @@ -6761,7 +6761,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Nom de taula" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Nom de les columnes" @@ -7128,7 +7128,7 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-entra a phpMyAdmin per a carregar l'arxiu de configuració actualitzat." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "sense descripció" @@ -7165,14 +7165,14 @@ msgid "Slave status" msgstr "Estat de l'esclau" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valor" @@ -7236,7 +7236,7 @@ msgstr "Genera una Contrasenya" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7276,16 +7276,16 @@ msgstr "" msgid "Edit event" msgstr "Editar servidor" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Error a la petició de procés" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7302,7 +7302,7 @@ msgstr "Tipus d'event" msgid "Event type" msgstr "Tipus d'event" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7330,7 +7330,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Final" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7343,12 +7343,12 @@ msgstr "Descripció" msgid "On completion preserve" msgstr "completa insercions" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7396,7 +7396,7 @@ msgid "Returns" msgstr "Tipus de retorn" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Temps" @@ -7412,7 +7412,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7434,128 +7434,128 @@ msgstr "S'ha esborrat la columna %s" msgid "Routine %1$s has been created." msgstr "S'ha creat la taula %1$s." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Mode d'edició" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutines" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Enllaços directes" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Longitud/Valors*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add index" msgid "Add parameter" msgstr "Afegir índex" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Elimina la base de dades" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Tipus de retorn" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Longitud/Valors*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcions de taula" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Seguretat" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Permet executar rutines enmagatzemades." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Rutines" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funció" @@ -7720,7 +7720,7 @@ msgstr "No hi ha cap arxiu per pujar" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7729,7 +7729,7 @@ msgstr "La taula %s no existeix!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7737,9 +7737,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Configura les coordinades per la taula %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Esquema de la base de dades %s - Pàgina %s" @@ -7752,105 +7752,105 @@ msgstr "Aquesta pàgina no conté taules!" msgid "SCHEMA ERROR: " msgstr "ERROR D'ESQUEMA:" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Esquema relacional" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Taula de continguts" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atributs" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Crea una nova pàgina" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Nom de pàgina" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Disseny automàtic basat en" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Relacions internes" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "CLAU EXTERNA" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Tria una pàgina per editar" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Selecciona la pàgina" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Tria Taules" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Mostra l'esquema relacional" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Selecciona el tipus d'Exportació Relacional" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Mostra graella" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Mostra color" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Mostra dimensió de les taules" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Mostrar totes les taules amb la mateixa amplada" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Només mostrar claus" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Horitzontal" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Vertical" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Orientació" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Tamany de paper" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7858,17 +7858,17 @@ msgstr "" "La pàgina actual té referències a taules que no existeixen. Vols esborrar " "aquestes referències?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Canvia l' scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Idioma desconegut: %1$s." @@ -7941,11 +7941,11 @@ msgstr "Neteja" msgid "Columns" msgstr "Columnes" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Desa aquesta consulta SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Deixa accedir a cada usuari a aquesta consulta desada" @@ -8380,7 +8380,7 @@ msgstr "Versió del protocol" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Usuari" @@ -8595,7 +8595,7 @@ msgstr "Tot Petit/Gran" msgid "Toggle small/big" msgstr "Canviar petit/gran" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Importa/Exporta coordenades per a esquema PDF" @@ -8667,39 +8667,39 @@ msgstr "" "a camp de visualització, clica la icona \"Tria camp a visualitzar\" , i " "clica també en el nom de camp adient." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "S'ha creat una pàgina" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Ha fallat la creació de pàgina" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "pàgina" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Importar des de la pàgina seleccionada" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Exporta a la pàgina seleccionada" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Crea una pàgina i exporta en ella" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Nou nom de pàgina:" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Exporta/Importa a escala" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "recomanat" @@ -8809,12 +8809,12 @@ msgstr "Importa arxius" msgid "All" msgstr "Tot" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "taula %s no trobada o no definida a %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "L'arxiu no existeix" @@ -8826,13 +8826,13 @@ msgstr "Tria el registre binari per veure" msgid "Files" msgstr "Arxius" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Talla les consultes mostrades" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Mostra Consultes completes" @@ -9671,8 +9671,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Configura la pàgina d'inici" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "per hora" @@ -9693,18 +9693,18 @@ msgstr "Sentències" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 "Aquest servidor MySQL és en marxa durant %s. Es va iniciar en %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9712,19 +9712,19 @@ msgstr "" "Aquest servidor MySQL treballa com a mestre i esclau en un " "procés de replicació ." -#: server_status.php:963 +#: server_status.php:964 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:965 +#: server_status.php:966 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:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9732,11 +9732,11 @@ msgstr "" "Per obtenir més informació sobre l'estat de replicació al servidor, visita " "la secció de replicació." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Estat de la replicació" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9744,47 +9744,47 @@ 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Rebut" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Enviat" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "max. connexions a la vegada" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Intents erronis" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Avortat" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Ordre" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "No es pot connectar al servidor MySQL" -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -9794,17 +9794,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:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9816,11 +9816,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:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Arxius temporals creats per mysqld." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9828,7 +9828,7 @@ msgstr "" "El nombre de taules temporals creades en memòria per el servidor mentre " "executa instruccions." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9836,7 +9836,7 @@ msgstr "" "El nombre de files escrites amb INSERT DELAYED en les que s'ha detectat " "quelcom error (possile clau duplicada)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9844,23 +9844,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "El nombre de files escrites amb INSERT DELAYED." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "El nombre d'instruccions FLUSH executades." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "El nombre d'instruccions COMMIT internes." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9870,7 +9870,7 @@ msgstr "" "coneix quelcom taula amb el nom especificat. Aixó s'anomena descobriment. " "Handler_discover indica el nombre de taules descobertes." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9880,7 +9880,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:1204 +#: server_status.php:1205 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." @@ -9889,7 +9889,7 @@ msgstr "" "és una bona indicació de que les consultes i taules estàn indexades " "acuradament." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9899,7 +9899,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:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9908,7 +9908,7 @@ msgstr "" "Aquest mètode de lectura s'utilitza principalment per optimizar ORDER BY ... " "DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9920,7 +9920,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:1208 +#: server_status.php:1209 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 " @@ -9932,37 +9932,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:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "El nombre d'instruccions ROLLBACK." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "El nombre de pàgines contenint dades (brutes o netes)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "El nombre de pàgines actualment brutes." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "El nombre de pàgines lliures." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9972,7 +9972,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:1217 +#: server_status.php:1218 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 " @@ -9984,11 +9984,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:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Tamany total de la memòria cau, en pàgines." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9996,7 +9996,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10004,11 +10004,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:1221 +#: server_status.php:1222 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:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10016,7 +10016,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:1223 +#: server_status.php:1224 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 " @@ -10030,55 +10030,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:1224 +#: server_status.php:1225 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:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "El nombre d'operacions fsync() aproximades." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "El nombre actual d'operacions fsync() pendents." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "El nombre actual de lectures pendents." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "El nombre actual d'escritures pendents." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "La quantitat aproximada de dades llegides, en bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "El nombre total de dades llegides." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "El nombre total de dades escrites." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "La quantitat aproximada de dades escrites, en bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -10086,35 +10086,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "El nombre de peticions d'escriptura al registre." -#: server_status.php:1237 +#: server_status.php:1238 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:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "El nombre d'operacions fsync pendents a l'arxiu de registre." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Escriptures pendents a l'arxiu de registre." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "El nombre de bytes escrits a l'arxiu de registre." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "El nombre de pàgines creades." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10123,51 +10123,51 @@ msgstr "" "comptabilitzen en pàgines; el tamany de pàgina permet convertir-lo fàcilment " "a bytes." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "El nombre de pàgines llegides." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "El nombre de pàgines escrites." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "El nombre de bloquejos de files actualment en espera." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "El nombre de files esborrades de taules InnoDB." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "El nombre de files afegides a taules InnoDB." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "El nombre de files llegides de taules InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "El nombre de files actualitzades en taules InnoDB." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10176,7 +10176,7 @@ msgstr "" "però que encara no han estat actualitzades a disc. Es coneix com a " "Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10184,7 +10184,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:1257 +#: server_status.php:1258 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 " @@ -10193,11 +10193,11 @@ 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:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10207,16 +10207,16 @@ 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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10227,17 +10227,17 @@ msgstr "" "de consulta per a la mateixa consulta. El valor 0 vol dr que encara no s'ha " "compilat cap consulta." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10245,39 +10245,39 @@ 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "El nombre d'arxius que estàn oberts." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "El nombre de taules que estàn obertes." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 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:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "El nombre d'encerts a memòria cau." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "El nombre de consultes afegides a la memòria cau." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10290,7 +10290,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:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10298,19 +10298,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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "El nombre de consultes registrades a la memòria cau." -#: server_status.php:1276 +#: server_status.php:1277 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:1277 +#: server_status.php:1278 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:1278 +#: server_status.php:1279 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." @@ -10318,12 +10318,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10332,7 +10332,7 @@ msgstr "" "cada fila. (Si aquiest valor no és 0, s'haurien de comprovar acuradament els " "indexs de les taules.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10340,16 +10340,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10357,25 +10357,25 @@ msgstr "" "Nombre total (des de l'arrencada) de vegades que el fil esclau de replicació " "de SQL ha recuperat transaccions." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 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:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10385,23 +10385,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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "El nombre de classificacions fetes amb rangs." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "El nombre de files classificades." -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "El nombre de classificacions fetes cercant la taula." -#: server_status.php:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10414,7 +10414,7 @@ msgstr "" "consultes, o també dividir la taula o taules en vàries o bé utilitzar la " "replicació." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10424,11 +10424,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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "El nombre de connexions obertes simultàniament." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10439,69 +10439,69 @@ 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:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "El nombre de fils que no estàn dormint." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" msgstr "Files per a textareas" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "Afegir índex" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Refresca" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "Columnes per a textareas" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Gestió d'errors:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Restaura el valor per defecte" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy msgid "Monitor Instructions" msgstr "Informació" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10510,7 +10510,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10518,11 +10518,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10530,7 +10530,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10538,11 +10538,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11130,12 +11130,12 @@ msgstr "Mostrant consulta SQL" msgid "Validated SQL" msgstr "SQL validat" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemes amb els indexs de la taula `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Etiqueta" diff --git a/po/cs.po b/po/cs.po index 354fabe743..40f1eb195c 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 09:43+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-11 11:38+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" @@ -24,10 +24,10 @@ msgstr "Zobrazit vše " #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Strana číslo:" @@ -42,8 +42,8 @@ msgstr "" "bezpečnostních nastavení." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Vyhledávání" @@ -51,25 +51,25 @@ msgstr "Vyhledávání" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -91,7 +91,7 @@ msgstr "Název klíče" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Popis" @@ -101,7 +101,7 @@ msgid "Use this value" msgstr "Použít tuto hodnotu" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Není nastaven žádný streamovací server!" @@ -130,7 +130,7 @@ msgstr "Byla vytvořena databáze %1$s." msgid "Database comment: " msgstr "Komentář k databázi: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -139,8 +139,8 @@ msgstr "Komentář k tabulce" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -152,11 +152,11 @@ msgstr "Pole" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -167,8 +167,8 @@ msgstr "Typ" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -178,8 +178,8 @@ msgstr "Nulový" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -188,8 +188,8 @@ msgstr "Výchozí" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Odkazuje na" @@ -198,8 +198,8 @@ msgstr "Odkazuje na" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Komentáře" @@ -210,7 +210,7 @@ msgstr "Komentáře" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -231,7 +231,7 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -362,7 +362,7 @@ msgstr "Upravit nebo exportovat relační schéma" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -386,21 +386,21 @@ msgstr "právě se používá" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Vytvořeno" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Poslední změna" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Poslední kontrola" @@ -499,7 +499,7 @@ msgstr "Provést dotaz" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Přístup odepřen" @@ -534,7 +534,7 @@ msgstr[1] "%s odpovídající záznamy v tabulce %s" msgstr[2] "%s odpovídajících záznamů v tabulce %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Projít" @@ -546,10 +546,10 @@ msgstr "Odstranit nalezené záznamy z tabulky %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -667,12 +667,12 @@ msgstr "Odškrtnout vše" msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Export" @@ -682,13 +682,13 @@ msgstr "Export" msgid "Print view" msgstr "Náhled pro tisk" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Vyprázdnit" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -722,7 +722,7 @@ msgstr "Změnit tabulce předponu" msgid "Copy table with prefix" msgstr "Zkopírovat tabulku s předponou" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Datový slovník" @@ -737,7 +737,7 @@ msgstr "Sledované tabulky" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -757,7 +757,7 @@ msgstr "Aktualizováno" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Stav" @@ -862,14 +862,14 @@ msgstr "" "Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si " "prosím %sdokumentaci%s, jak toto omezení obejít." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Soubor nelze přečíst" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -901,7 +901,7 @@ msgstr "Položka byla smazána z oblíbených." msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Vytvořen oblíbený dotaz %s" @@ -929,7 +929,7 @@ msgstr "" "časové limity v PHP." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1043,9 +1043,9 @@ msgstr "Ukončit" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Upravit" @@ -1068,13 +1068,13 @@ msgstr "Statická data" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Celkem" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Ostatní" @@ -1104,7 +1104,7 @@ msgstr "Síťový provoz (v KiB)" msgid "Connections since last refresh" msgstr "Spojení od posledního obnovaní" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Procesy" @@ -1127,8 +1127,9 @@ msgid "Query statistics" msgstr "Statistika dotazů" #: js/messages.php:93 -#| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +#, fuzzy +#| msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Lokální nastavení monitoru není kompatibilní" #: js/messages.php:94 @@ -1140,17 +1141,14 @@ msgid "" msgstr "" #: js/messages.php:96 -#| msgid "Query cache" msgid "Query cache efficiency" msgstr "Úspěšnost vyrovnávací paměti dotazů" #: js/messages.php:97 po/advisory_rules.php:70 -#| msgid "Query cache" msgid "Query cache usage" msgstr "Využití vyrovnávací paměti dotazů" #: js/messages.php:98 -#| msgid "Query cache" msgid "Query cache used" msgstr "Využito vyrovnávací paměti dotazů" @@ -1224,7 +1222,7 @@ msgstr "Odesláno bajtů" msgid "Bytes received" msgstr "Přijato bajtů" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Připojení" @@ -1233,12 +1231,12 @@ msgstr "Připojení" msgid "Questions" msgstr "Dotazy" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Provoz" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Nastavení" @@ -1261,7 +1259,7 @@ msgstr "Prosím přidejte do série alespoň jednu hodnotu" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Žádná" @@ -1478,7 +1476,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" @@ -1641,7 +1639,7 @@ msgid "Query execution time" msgstr "Doba běhu dotazu" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2058,24 +2056,24 @@ msgstr "Minuty" msgid "Second" msgstr "Sekundy" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Velikost písma" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "Soubor nebyl nahrán." -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "Neznámá chyba při nahrávání souboru." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2083,27 +2081,27 @@ msgstr "" "Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla " "zadána v HTML formuláři." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Soubor byl nahrán jen částečně." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Chybějící adresář pro dočasné soubory." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Chyba při zapisování souboru na disk." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Nahrávání souboru zastaveno rozšířením." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Neznámá chyba při nahrávání souboru." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2111,11 +2109,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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "Chyba při přesouvání nahraného souboru." -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "Nahraný soubor nelze přečíst (přesunout)." @@ -2143,7 +2141,7 @@ msgid "Cardinality" msgstr "Mohutnost" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Komentář" @@ -2166,14 +2164,14 @@ msgstr "" "Indexy %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být " "odstraněn." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Databáze" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2272,16 +2270,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Náhled není k dispozici." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "zvolit" @@ -2295,12 +2293,12 @@ msgstr "Výchozí vzhled %s nebyl nalezen!" msgid "Theme %s not found!" msgstr "Vzhled %s nebyl nalezen!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Nebyla nalezena platná cesta k vzhledu %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Vzhled" @@ -2309,7 +2307,7 @@ msgid "Cannot connect: invalid settings." msgstr "Nepodařilo se připojit: chybné nastavení." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Vítejte v %s" @@ -2335,49 +2333,49 @@ msgstr "" "php a ujistěte se, že jsou totožné s těmi, které máte od administrátora " "MySQL serveru." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Přihlášení" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Dokumentace phpMyAdmina" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Můžete zadat jméno počítače nebo IP adresu a port oddělené mezerou." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Jméno:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Heslo:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Přihlášení vyžaduje povolené cookies." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Přihlášení bez hesla je zakázáno v konfiguraci (viz AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2385,8 +2383,8 @@ msgstr "" "Nebyla zaznamenána žádná aktivita po dobu %s sekund, prosím přihlaste se " "znovu" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Nepodařilo se přihlášení k MySQL serveru" @@ -2417,39 +2415,39 @@ msgstr "Nebyl připojen přihlašovací klíč" msgid "Authenticating..." msgstr "Authentizuji..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "Chyba PDMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "Připojení k PBMS selhalo:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "Načtení informací o BLOBu z PBMS selhalo:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "Získání Content-Type BLOBu z PBMS selhalo" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Zobrazit obrázek" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Přehrát zvuk" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Přehrát video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Stáhnout soubor" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Chyba při otevírání souboru: %s" @@ -2588,7 +2586,7 @@ msgid "Documentation" msgstr "Dokumentace" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-dotaz" @@ -2598,7 +2596,7 @@ msgstr "SQL-dotaz" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2647,7 +2645,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Upravit zde" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profilování" @@ -2738,7 +2736,7 @@ msgid "Click to toggle" msgstr "Klikněte pro přepnutí" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2758,8 +2756,8 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Vložit" @@ -2770,25 +2768,25 @@ msgstr "Vložit" msgid "Operations" msgstr "Úpravy" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Procházet váš počítač:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvolte soubor z adresáře pro upload na serveru %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Adresář určený pro upload souborů nemohl být otevřen" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Nebyl zvolen žádný soubor pro nahrání" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Spustit" @@ -2953,7 +2951,7 @@ msgid "Allow users to customize this value" msgstr "Povolit uživatelům změnit tuto hodnotu" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Původní" @@ -5263,8 +5261,8 @@ msgstr "Vytvořit novou tabulku v databázi %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5574,7 +5572,7 @@ msgstr "Seřadit podle klíče" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Nastavení" @@ -5634,7 +5632,7 @@ msgid "The row has been deleted" msgstr "Řádek byl smazán" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Ukončit" @@ -6220,7 +6218,7 @@ msgstr "Zobrazit MIME typy" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Počítač" @@ -6443,7 +6441,7 @@ msgstr "Výsledek SQL dotazu" msgid "Generated by" msgstr "Vygeneroval" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." @@ -6544,7 +6542,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Jméno tabulky" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Názvy polí" @@ -6906,7 +6904,7 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Prosím přihlašte se znovu , aby se projevily změny v konfiguračním souboru." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "žádný popisek" @@ -6943,14 +6941,14 @@ msgid "Slave status" msgstr "Stav podřízeného" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Proměnná" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Hodnota" @@ -7014,7 +7012,7 @@ msgstr "Vytvořit heslo" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7049,14 +7047,14 @@ msgstr "Při zpracování požadavku došlo k několika chybám:" msgid "Edit event" msgstr "Upravit událost" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Chyba při zpracování požadavku" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Podrobnosti" @@ -7069,7 +7067,7 @@ msgstr "Název události" msgid "Event type" msgstr "Typ události" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Změnit na %s" @@ -7092,7 +7090,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Konec" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Definice" @@ -7101,12 +7099,12 @@ msgstr "Definice" msgid "On completion preserve" msgstr "Při dokončení zachovat" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "Zadavatel" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "Zadavatel musí být ve tvaru \"uživatel@počítač\"" @@ -7152,7 +7150,7 @@ msgid "Returns" msgstr "Vrací" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Čas" @@ -7171,7 +7169,7 @@ msgstr "" "problémům vyhnout, začněte, prosím, používat nové rozšíření „mysqli“." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Chybný typ rutiny: „%s“" @@ -7190,69 +7188,69 @@ msgstr "Byla změněna rutina %1$s." msgid "Routine %1$s has been created." msgstr "Byla vytvořena rutina %1$s." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Upravit rutinu" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Jméno rutiny" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Parametry" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Směr" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Délka/Množina" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Přidat parametr" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Odstranit poslední parametr" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Návratový typ" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Návratová délka/hodnoty" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Možnosti návratové hodnoty" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "je deterministická" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Typ zabezpečení" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "Přístup k SQL datům" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "Musíte zadat jméno rutiny" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "„%s“ je chybný směr parametru." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7260,19 +7258,19 @@ msgstr "" "Musíte zadat parametr „Délka/Hodnoty“ pro parametry typu ENUM, SET, VARCHAR " "nebo VARBINARY." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "Pro každý parametr musíte zadat jeho jméno a typ." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "Musíte zadat platný návratový typ rutiny." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "Musíte zadat definici rutiny." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7280,22 +7278,22 @@ msgstr[0] "Posledním příkazem v proceduře byla ovlivněna %d řádka" msgstr[1] "Posledním příkazem v proceduře byly ovlivněny %d řádky" msgstr[2] "Posledním příkazem v proceduře bylo ovlivněno %d řádek" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Výsledek spuštění rutiny %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Spustit rutinu" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Parametry rutiny" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funkce" @@ -7422,7 +7420,7 @@ msgstr "Nejsou zde žádné události k zobrazení." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7431,7 +7429,7 @@ msgstr "Tabulka %s neexistuje!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7439,9 +7437,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Prosím, nastavte souřadnice pro tabulku %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schéma databáze %s - Strana %s" @@ -7454,105 +7452,105 @@ msgstr "Tato stránka neobsahuje žádné tabulky!" msgid "SCHEMA ERROR: " msgstr "Chyba při vytváření schéma: " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relační schéma" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Obsah" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Vlastnosti" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Vytvořit novou stránku" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Jméno stránky" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Automatické rozvržení podle" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Interní relace" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Zvolte stránku, kterou chcete změnit" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Zvolte stránku" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Vybrat tabulky" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Zobrazit relační schéma" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Zvolte typ výstupu relací" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Zobrazit mřížku" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Barevné šipky" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Rozměry tabulek" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Použít pro všechny tabulky stejnou šířku" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Jen zobrazit klíče" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Na šířku" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Na výšku" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Orientace" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Velikost stránky" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7560,17 +7558,17 @@ msgstr "" "Aktuální stránka se odkazuje na tabulky, které již neexistují. Chcete " "odstranit tyto odkazy?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Zobrazit grafický návrh" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Neznámý jazyk: %1$s." @@ -7643,11 +7641,11 @@ msgstr "Vyčistit" msgid "Columns" msgstr "Pole" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Přidat tento SQL dotaz do oblíbených" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku" @@ -8073,7 +8071,7 @@ msgstr "Verze protokolu" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Uživatel" @@ -8282,7 +8280,7 @@ msgstr "Vše malé/velké" msgid "Toggle small/big" msgstr "Přepnout malé/velké" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export souřadnic pro PDF schéma" @@ -8353,39 +8351,39 @@ msgstr "" "Zobrazované pole je zvýrazněno růžovou barvou. Pro jeho změnu klikněte na " "ikonu „Zvolte které pole zobrazit“ a poté zvolte odpovídající pole." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Stránka byla vytvořena" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Vytvoření stránky selhalo" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Stránka" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Importovat ze zvolené stránky" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Exportovat na zvolenou stránku" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Vytvořit novou stránku a exportovat na ní" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Název nové stránky: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Exportovat/Importovat v měřítku" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "doporučené" @@ -8494,12 +8492,12 @@ msgstr "Importovat soubory" msgid "All" msgstr "Všechno" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabulka nenalezena nebo není nastavena v %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Soubor neexistuje" @@ -8511,13 +8509,13 @@ msgstr "Zvolte binární log pro zobrazení" msgid "Files" msgstr "Soubory" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Zobrazit zkrácené dotazy" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Zobrazit celé dotazy" @@ -9333,8 +9331,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Dotazů od spuštění: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "za hodinu" @@ -9355,17 +9353,17 @@ msgstr "Údaj" msgid "#" msgstr "#" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Síťový provoz od spuštění: %s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9373,17 +9371,17 @@ msgstr "" "Tento server pracuje jako nadřízený i podřízený v " "replikačním procesu." -#: server_status.php:963 +#: server_status.php:964 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:965 +#: server_status.php:966 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:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9391,11 +9389,11 @@ msgstr "" "Pro více informací o stavu replikace se podívejte do sekce replikace." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Stav replikace" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9403,45 +9401,45 @@ 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Přijato" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Odesláno" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Maximum současných připojení" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Nepovedených pokusů" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Přerušené" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Příkaz" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 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:1190 +#: server_status.php:1191 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 " @@ -9451,16 +9449,16 @@ msgstr "" "binlog_cache_size a musely použít dočasný soubor pro uložení příkazů " "transakce." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 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:1193 +#: server_status.php:1194 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 " @@ -9471,18 +9469,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:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Počet vytvořených dočasných souborů." -#: server_status.php:1195 +#: server_status.php:1196 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:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9490,7 +9488,7 @@ msgstr "" "Počet řádků provedených pomocí INSERT DELAYED, u kterých se vyskytla chyba " "(pravděpodobně duplicitní klíč)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9498,23 +9496,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Počet řádků zapsaných pomocí INSERT DELAYED." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Počet provedených příkazů FLUSH." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Počet interních příkazů COMMIT." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Počet požadavků na smazání řádku." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -9523,7 +9521,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:1203 +#: server_status.php:1204 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, " @@ -9533,7 +9531,7 @@ msgstr "" "server provádí mnoho kompletních procházení indexu. Na příklad SELECT col1 " "FROM foo, pokud je col1 indexována." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -9541,7 +9539,7 @@ msgstr "" "Počet požadavků na přečtení řádku vycházející z indexu. Vysoká hodnota " "znamená, že dotazy správně využívají indexy." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9551,7 +9549,7 @@ msgstr "" "zvětšuje pokud provádíte dotaz na indexované pole s omezením rozsahu nebo " "prohledáváte index." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9559,7 +9557,7 @@ msgstr "" "Počet požadavků na přečtení předchozího řádku z indexu. Používané pro " "optimalizaci dotazů ORDER BY ... DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9571,7 +9569,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í indexů." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9582,35 +9580,35 @@ msgstr "" "pokud dotazy procházejí celé tabulky, pravděpodobně tedy nemají vhodné " "indexy." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Počet interních příkazů ROLLBACK." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Počet požadavků na aktualizaci řádku." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Počet požadavků na vložení řádku." -#: server_status.php:1212 +#: server_status.php:1213 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:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Počet změněných stránek." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Počet volných stránek." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9619,7 +9617,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:1217 +#: server_status.php:1218 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 " @@ -9631,11 +9629,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Celková velikost InnoDB bufferů, ve stránkách." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9643,7 +9641,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9651,11 +9649,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:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Počet provedených logických čtení." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9663,7 +9661,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:1223 +#: server_status.php:1224 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 " @@ -9676,55 +9674,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:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisů provedených do InnoDB bufferu." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Počet provedených synchronizací fsync()." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Počet nevyřízených synchronizací fsync()." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Počet nevyřízených čtení." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Počet nevyřízených zápisů." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Velikost přečtených dat, v bajtech." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Počet provedených čtení dat." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Počet provedených zápisů dat." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Velikost zapsaných dat, v bajtech." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -9732,35 +9730,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Počet požadavků na zápis do logovacího souboru." -#: server_status.php:1237 +#: server_status.php:1238 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:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Počet nevyřízených synchronizací logovacích souborů." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Počet nevyřízených zápisů do logovacích souborů." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Počet bajtů zapsaných do logovacího souboru." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Počet vytvořených stránek." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9768,51 +9766,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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Počet přečtených stránek." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Počet zapsaných stránek." -#: server_status.php:1246 +#: server_status.php:1247 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:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet řádků odstraněných z InnoDB tabulek." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet řádků vložených do InnoDB tabulek." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Počet řádků přečtených z InnoDB tabulek." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Počet řádků aktualizovaných v InnoDB tabulkách." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -9820,7 +9818,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:1256 +#: server_status.php:1257 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." @@ -9828,7 +9826,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:1257 +#: server_status.php:1258 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 " @@ -9837,11 +9835,11 @@ 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:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -9851,15 +9849,15 @@ 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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -9869,17 +9867,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:1263 +#: server_status.php:1264 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:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9887,19 +9885,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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Počet otevřených souborů." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Počet aktuálně otevřených tabulek." -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -9909,19 +9907,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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Velikost volné paměti ve vyrovnávací paměti dotazů." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Počet zásahů vyrovnávací paměti dotazů." -#: server_status.php:1272 +#: server_status.php:1273 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:1273 +#: server_status.php:1274 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 " @@ -9933,7 +9931,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:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9941,19 +9939,19 @@ msgstr "" "Počet necachovaných dotazů (necachovatelných nebo necachovaných kvůli " "nastavení query_cache_type)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Počet dotazů ve vyrovnávací paměti dotazů." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Celkový počet bloků ve vyrovnávací paměti dotazů." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikace." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -9961,12 +9959,12 @@ msgstr "" "Počet spojení, které nevyužívaly indexy. Pokud tato hodnota není 0, měli " "byste zkontrolovat indexy tabulek." -#: server_status.php:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -9974,7 +9972,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 indexy tabulek.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9982,38 +9980,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 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:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 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:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10022,23 +10020,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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Počet řazení, které byly omezeny rozsahem." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Počet řazených řádek." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10049,7 +10047,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:1294 +#: server_status.php:1295 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 " @@ -10059,11 +10057,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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Počet aktuálně otevřených připojení." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10074,57 +10072,57 @@ 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:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Počet vláken, která nespí." -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "Spustit monitor" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "Návod/Nastavení" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "Ukončit upravování grafů" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "Přidat graf" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "Upravit/Uspořádat grafy" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Obnovovací frekvence" -#: server_status.php:1467 +#: server_status.php:1468 msgid "Chart columns" msgstr "Sloupce grafu" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "Uspořádání grafů" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "Obnovit na výchozí hodnotu" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "Instrukce monitoru" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10133,7 +10131,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10141,13 +10139,13 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Přerušit monitor" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10155,7 +10153,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10163,11 +10161,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10736,12 +10734,12 @@ msgstr "Zobrazuji SQL dotaz" msgid "Validated SQL" msgstr "Proběhlo zkontrolování SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexy v tabulce „%s\"" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Název" diff --git a/po/cy.po b/po/cy.po index 877191e819..5f8c8f9695 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-05-19 21:21+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" @@ -24,10 +24,10 @@ msgstr "Dangos pob" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Rhif tudalen:" @@ -42,8 +42,8 @@ msgstr "" "caniatáu diweddariadau traws-ffenest." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Chwilio" @@ -51,25 +51,25 @@ msgstr "Chwilio" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -91,7 +91,7 @@ msgstr "Enw allweddol" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Disgrifiad" @@ -101,7 +101,7 @@ msgid "Use this value" msgstr "Defnyddiwch y gwerth hwn" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Dim gweinydd ffrydio blob wedi'i ffurfweddu!" @@ -131,7 +131,7 @@ msgstr "Cafodd y gronfa ddata %1$s ei chreu." msgid "Database comment: " msgstr "Sylw cronfa ddata:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -140,8 +140,8 @@ msgstr "Sylwadau tabl" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -153,11 +153,11 @@ msgstr "Colofn" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -168,8 +168,8 @@ msgstr "Math" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -179,8 +179,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -189,8 +189,8 @@ msgstr "Diofyn" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Cysylltu i" @@ -199,8 +199,8 @@ msgstr "Cysylltu i" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Sylwadau" @@ -211,7 +211,7 @@ msgstr "Sylwadau" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -232,7 +232,7 @@ msgstr "Na" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -363,7 +363,7 @@ msgstr "Golygu neu allforio sgema perthynol" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -387,21 +387,21 @@ msgstr "ar ddefnydd" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Cread" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Diweddariad diwethaf" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Gwiriad diwethaf" @@ -500,7 +500,7 @@ msgstr "Cyflwyno Ymholiad" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Mynediad wedi'i wrthod" @@ -535,7 +535,7 @@ msgstr[0] "%s ergyd mewn tabl %s" msgstr[1] "%s ergyd mewn tabl %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Pori" @@ -547,10 +547,10 @@ msgstr "Dileu'r cydweddau ar gyfer tabl %s" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -671,12 +671,12 @@ msgstr "Dad-ddewis Pob" msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Allforio" @@ -686,13 +686,13 @@ msgstr "Allforio" msgid "Print view" msgstr "Argraffu golwg" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Gwagu" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -728,7 +728,7 @@ msgstr "Ailenwi tabl i" msgid "Copy table with prefix" msgstr "" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Geiriadur Data" @@ -743,7 +743,7 @@ msgstr "Tablau a draciwyd" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -763,7 +763,7 @@ msgstr "Diweddarwyd" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Statws" @@ -868,14 +868,14 @@ msgstr "" "Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth" "%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Nid oedd modd darllen y ffeil hon." #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -907,7 +907,7 @@ msgstr "Cafodd y clustnod ei ddileu." msgid "Showing bookmark" msgstr "Dangos clustnod" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Clustnodi %s a grëwyd" @@ -931,7 +931,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1058,9 +1058,9 @@ msgstr "Cau" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Golygu" @@ -1087,13 +1087,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Cyfanswm" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1125,7 +1125,7 @@ msgstr "Dewis Gweinydd" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Prosesau" @@ -1152,7 +1152,7 @@ msgstr "Dangos ystadegau" #: js/messages.php:93 #, fuzzy #| msgid "Failed to write file to disk." -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Methu ag ysgrifennu i'r ddisg." #: js/messages.php:94 @@ -1259,7 +1259,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "" @@ -1270,12 +1270,12 @@ msgstr "" msgid "Questions" msgstr "Fersiynau" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1304,7 +1304,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Dim" @@ -1535,7 +1535,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Mewnforio" @@ -1744,7 +1744,7 @@ msgid "Query execution time" msgstr "Gweithrediad SQL" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2180,61 +2180,61 @@ msgstr "Munud" msgid "Second" msgstr "Eiliad" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Maint ffont" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Gwall anhysbys wrth lanlwytho ffeil." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Ffolder dros dro ar goll." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Methu ag ysgrifennu i'r ddisg." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Cafodd y lanlwythiad ei atal gan estyniad." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Gwall anhysbys wrth lanlwytho ffeil." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2262,7 +2262,7 @@ msgid "Cardinality" msgstr "" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Sylw" @@ -2285,14 +2285,14 @@ msgstr "" "Mae'n edrych fel bod yr indecsau %1$s a %2$s yn hafal. Gallwch chi dynnu un " "ohonyn nhw." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Cronfeydd Data" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2393,16 +2393,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Dim llwybr delwedd dilys ar gael ar gyfer thema %s." -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Dim rhagolwg ar gael" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "cymerwch e" @@ -2416,12 +2416,12 @@ msgstr "Thema diofyn %s heb ei darganfod!" msgid "Theme %s not found!" msgstr "Heb ddarganfod thema ddiofyn %s!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Heb ddarganfod llwybr thema ar gyfer thema %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2430,7 +2430,7 @@ msgid "Cannot connect: invalid settings." msgstr "Methu â chysylltu: gosodiadau annilys" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Croeso i %s" @@ -2456,45 +2456,45 @@ msgstr "" "ffurfwedd a scirhau eu bod nhw'n cyfateb i'r wybodaeth a roddwyd gan " "weinyddwr y gweinydd MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Mewngofnodwch" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Dogfennaeth phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Gallwch gyflwyno enw'r gwesteiwr / cyfeiriad IP a'r porth gan eu gwahanu gan " "fwlch." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Gweinydd:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Enw defnyddiwr:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Cyfrinair:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Dewis Gweinydd" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Mae'n rhaid bod cwcis wedi'u galluogi heibio'r pwynt hwn." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2502,14 +2502,14 @@ msgstr "" "Nid oes hawl mewngofnodi heb gyfrinair. Dyma'r gosodiad yn eich ffurfwedd " "(gweler AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Dim gweithredoedd o fewn %s eiliad; mewngofnodwch eto." -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Methu â mewngofnodi i'r gweinydd MySQL" @@ -2542,41 +2542,41 @@ msgstr "" msgid "Authenticating..." msgstr "Yn dilysu..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "Coladiad cysylltiad MySQL" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Gweld delwedd" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Chwarae sain" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Gwylio fideo" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Lawrlwytho ffeil" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2716,7 +2716,7 @@ msgid "Documentation" msgstr "Dogfennaeth" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "Ymholiad SQL" @@ -2726,7 +2726,7 @@ msgstr "Ymholiad SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2777,7 +2777,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Mewnol" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Proffilio" @@ -2880,7 +2880,7 @@ msgid "Click to toggle" msgstr "Pwyso i ddewis" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2900,8 +2900,8 @@ msgstr "Strwythur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Mewnosod" @@ -2912,28 +2912,28 @@ msgstr "Mewnosod" msgid "Operations" msgstr "Gweithrediadau" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 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/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3108,7 +3108,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Ailosod" @@ -5336,8 +5336,8 @@ msgstr "Creu tabl mewn cronfa ddata %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5679,7 +5679,7 @@ msgstr "Trefnu gan allwedd" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Opsiynau" @@ -5743,7 +5743,7 @@ msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Lladd" @@ -6301,7 +6301,7 @@ msgstr "Mathau MIME ar gael" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Gwesteiwr" @@ -6510,7 +6510,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6608,7 +6608,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "" @@ -6964,7 +6964,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "" @@ -6999,14 +6999,14 @@ msgid "Slave status" msgstr "Statws y caeth" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Newidyn" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Gwerth" @@ -7066,7 +7066,7 @@ msgstr "Generadu Cyfrinair" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7105,16 +7105,16 @@ msgstr "" msgid "Edit event" msgstr "Golygu gweinydd" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prosesau" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7131,7 +7131,7 @@ msgstr "Math y digwyddiad" msgid "Event type" msgstr "Math y digwyddiad" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7159,7 +7159,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Diwedd" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7170,12 +7170,12 @@ msgstr "Disgrifiad" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7223,7 +7223,7 @@ msgid "Returns" msgstr "Dychwelyd math" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Amser" @@ -7239,7 +7239,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7261,123 +7261,123 @@ msgstr "Cafodd golwg %s ei ollwng" msgid "Routine %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit server" msgid "Edit routine" msgstr "Golygu gweinydd" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rheolweithiau" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Cysylltiadau uniongyrchol" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Tynnwch y gronfa ddata" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Dychwelyd math" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Actions" msgid "Return options" msgstr "Gweithredoedd" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Return type" msgid "Security type" msgstr "Dychwelyd math" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Rheolweithiau" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Swyddogaeth" @@ -7536,7 +7536,7 @@ msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7545,7 +7545,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7553,9 +7553,9 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -7570,127 +7570,127 @@ msgstr "Nid yw ffeil %s yn cynnwys unrhyw id allwedd" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Sgema perthynol" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Tabl cynnwys" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Ychwanegol" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Crëwch dudalen" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Enw'r dudalen" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Perthnasau mewnol" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Dewis Tablau" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Dewis Tablau" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Sgema perthynol" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Dangos grid" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Dangos lliw" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Dangos dimensiynau'r tabl" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Dangos pob tabl gyda'r un lled" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Dangos allweddau'n unig" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Tirlun" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portread" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Cread" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Maint papur" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Iaith anhysbys: %1$s." @@ -7765,11 +7765,11 @@ msgstr "Clirio" msgid "Columns" msgstr "Colofnau" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -8137,7 +8137,7 @@ msgstr "Fersiwn protocol" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Defnyddiwr" @@ -8326,7 +8326,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8411,47 +8411,47 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "tudalennau" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Mewnforiwch ffeiliau" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a page" msgid "Create a page and export to it" msgstr "Crëwch dudalen" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "Page name" msgid "New page name: " msgstr "Enw'r dudalen" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8560,12 +8560,12 @@ msgstr "Mewnforiwch ffeiliau" msgid "All" msgstr "Pob" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabl %s heb ei ddarganfod neu heb ei osod mewn %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "" @@ -8577,13 +8577,13 @@ msgstr "" msgid "Files" msgstr "Ffeiliau" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "" @@ -9381,8 +9381,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "" @@ -9403,103 +9403,103 @@ msgstr "" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Gorchymyn" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9507,78 +9507,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9586,7 +9586,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9594,42 +9594,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9637,33 +9637,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9672,227 +9672,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9900,99 +9900,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10000,18 +10000,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10019,64 +10019,64 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Routines" msgid "Add chart" msgstr "Rheolweithiau" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Adfywio" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "Ychwanegu/Dileu colofnau" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Adfer gwerth diofyn" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10085,7 +10085,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10093,11 +10093,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10105,7 +10105,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10113,11 +10113,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10648,12 +10648,12 @@ msgstr "" msgid "Validated SQL" msgstr "Dilysu SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "" diff --git a/po/da.po b/po/da.po index 13d6622fbf..489c6f1398 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-07-23 21:27+0200\n" "Last-Translator: Jørgen Thomsen \n" "Language-Team: danish \n" @@ -21,10 +21,10 @@ msgstr "Vis alle" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Side nummer:" @@ -39,8 +39,8 @@ msgstr "" "i sikkerhedsindstillingerne." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Søg" @@ -48,25 +48,25 @@ msgstr "Søg" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Nøglenavn" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Beskrivelse" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Brug denne værdi" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Ingen blob streaming server konfigureret!" @@ -127,7 +127,7 @@ msgstr "Database %1$s er oprettet." msgid "Database comment: " msgstr "Databasekommentar: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -136,8 +136,8 @@ msgstr "Tabel kommentarer" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -149,11 +149,11 @@ msgstr "Kolonnenavn" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -164,8 +164,8 @@ msgstr "Datatype" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -175,8 +175,8 @@ msgstr "Nulværdi" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -185,8 +185,8 @@ msgstr "Standardværdi" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Linker til" @@ -195,8 +195,8 @@ msgstr "Linker til" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Kommentarer" @@ -207,7 +207,7 @@ msgstr "Kommentarer" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -228,7 +228,7 @@ msgstr "Nej" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -358,7 +358,7 @@ msgstr "Editer eller eksporter relations skema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -382,21 +382,21 @@ msgstr "i brug" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Oprettelse" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Sidste opdatering" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Sidste check" @@ -495,7 +495,7 @@ msgstr "Send forespørgsel" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Adgang nægtet" @@ -529,7 +529,7 @@ msgstr[0] "%s sammenfald i tabel %s" msgstr[1] "%s sammenfald i tabel %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Vis" @@ -541,10 +541,10 @@ msgstr "Slet sammenfald for %s tabellen?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -661,12 +661,12 @@ msgstr "Fravælg alle" msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksporter" @@ -677,13 +677,13 @@ msgid "Print view" msgstr "Udskriv" # By "Empty", if this is an action, it should translate to "Tøm" but if it's a state it should translate to "Tom". -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Tøm" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -717,7 +717,7 @@ msgstr "Erstat tabel præfiks" msgid "Copy table with prefix" msgstr "Kopier tabel med præfiks" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -732,7 +732,7 @@ msgstr "Sporede tabeller" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -752,7 +752,7 @@ msgstr "Opdateret" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -858,14 +858,14 @@ msgstr "" "%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne " "begrænsning." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Filen kunne ikke læses" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -898,7 +898,7 @@ msgstr "Bogmærket er fjernet." msgid "Showing bookmark" msgstr "Viser bogmærke" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Bogmærke %s oprettet" @@ -926,7 +926,7 @@ msgstr "" "mindre du forøger PHP-tidsbegrænsningerne." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1042,9 +1042,9 @@ msgstr "Luk" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Ret" @@ -1067,13 +1067,13 @@ msgstr "Statiske data" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Andet" @@ -1103,7 +1103,7 @@ msgstr "Server-trafik (i KiB)" msgid "Connections since last refresh" msgstr "Forbindelser siden sidste visning" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Processer" @@ -1128,7 +1128,7 @@ msgstr "Statistik over forespørgsler" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Kunne ikke indlæse konfigurationsfilen" #: js/messages.php:94 @@ -1243,7 +1243,7 @@ msgstr "" msgid "Bytes received" msgstr "Modtaget" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Forbindelser" @@ -1252,12 +1252,12 @@ msgstr "Forbindelser" msgid "Questions" msgstr "Spørgsmål" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Trafik" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Indstillinger" @@ -1282,7 +1282,7 @@ msgstr "Tilføj mindst en variabel til serien" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Ingen" @@ -1521,7 +1521,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importer" @@ -1699,7 +1699,7 @@ msgid "Query execution time" msgstr "Maksimal eksekveringstid" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2125,23 +2125,23 @@ msgstr "Minut" msgid "Second" msgstr "Sekund" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Skriftstørrelse" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "Filen var ikke en uploaded fil." -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "Ukendt fejl i filupload." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2149,27 +2149,27 @@ msgstr "" "Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-" "formularen." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Den uploadede fil blev kun delvist uploaded." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Kunne ikke skrive fil til disk." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Filupload stoppet af udvidelse." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Ukendt fejl i filupload." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2177,11 +2177,11 @@ msgstr "" "Fejl ved flytning af den uploadede fil, se [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "Fejl under flytning af uploaded fil." -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "Kan ikke læse (flyttet) uploaded fil." @@ -2209,7 +2209,7 @@ msgid "Cardinality" msgstr "Kardinalitet" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Kommentar" @@ -2232,14 +2232,14 @@ msgstr "" "Indeks %1$s ser ud til at være identisk med indeks %2$s, så et af dem kan " "sikkert fjernes." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Databaser" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2341,16 +2341,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Ingen gyldig billedsti for tema %s fundet!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Intet billede til rådighed." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "vælg dette" @@ -2364,12 +2364,12 @@ msgstr "Standardtema %s ikke fundet!" msgid "Theme %s not found!" msgstr "Tema %s ikke fundet!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Sti til tema ikke fundet for tema %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2378,7 +2378,7 @@ msgid "Cannot connect: invalid settings." msgstr "Kan ikke forbinde: ugyldige indstillinger." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Velkommen til %s" @@ -2404,45 +2404,45 @@ msgstr "" "og sikre dig at de svarer til den information du har fået af administratoren " "af MySQL-serveren." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Login" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentation" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Du kan angive værtsnavn/IP adresse og port ved at adskille dem med et " "mellemrum." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Brugernavn:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Adgangskode:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Servervalg" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Herefter skal cookies være slået til." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2450,15 +2450,15 @@ msgstr "" "Det er ifølge konfigurationen ikke tilladt at logge ind uden en adgangskode " "(se AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Ingen aktivitet i de seneste %s sekunder eller mere, log venligst ind igen" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Kan ikke logge ind på MySQL-serveren" @@ -2489,41 +2489,41 @@ msgstr "Ingen gyldig autorisations-nøgle indkoblet" msgid "Authenticating..." msgstr "Godkender..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS-fejl" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "Det lykkedes ikke at oprette forbindelse til PBMS:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS hent BLOB info mislykkedes:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "hent BLOB Content-Type mislykkedes" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Se billede" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Afspil lyd" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Se video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Download fil" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Kunne ikke åbne filen %s" @@ -2663,7 +2663,7 @@ msgid "Documentation" msgstr "Dokumentation" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-forespørgsel" @@ -2673,7 +2673,7 @@ msgstr "SQL-forespørgsel" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2722,7 +2722,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "I linje" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profilering" @@ -2821,7 +2821,7 @@ msgid "Click to toggle" msgstr "Klik for at skifte" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2841,8 +2841,8 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Indsæt" @@ -2853,25 +2853,25 @@ msgstr "Indsæt" msgid "Operations" msgstr "Operationer" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Gennemse din computer:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vælg fra %s - webserverens upload-mappe:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Mappen du har sat til upload-arbejde kan ikke findes" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Der er ikke nogen filer at uploade" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Udfør" @@ -3040,7 +3040,7 @@ msgid "Allow users to customize this value" msgstr "Tillad brugerdefinerede indstillinger for værdien" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Nulstil" @@ -5358,8 +5358,8 @@ msgstr "Opret ny tabel i database %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5668,7 +5668,7 @@ msgstr "Sorteringsnøgle" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Indstillinger" @@ -5728,7 +5728,7 @@ msgid "The row has been deleted" msgstr "Rækken er slettet" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Dræb (Kill)" @@ -6317,7 +6317,7 @@ msgstr "Vis MIME-typer" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Vært" @@ -6546,7 +6546,7 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Genereret af" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." @@ -6654,7 +6654,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Tabelnavn" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Kolonnenavne" @@ -7014,7 +7014,7 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-login til phpMyAdmin for at indlæse den opdaterede konfigurationsfil." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "ingen beskrivelse" @@ -7051,14 +7051,14 @@ msgid "Slave status" msgstr "Slavestatus" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Værdi" @@ -7120,7 +7120,7 @@ msgstr "Generer adgangskode" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7155,14 +7155,14 @@ msgstr "Der er opstået fejl under behandling af anmodningen:" msgid "Edit event" msgstr "Rediger hændelse" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Fejl i udførsel af forespørgsel" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Detaljer" @@ -7175,7 +7175,7 @@ msgstr "Hændelsesnavn" msgid "Event type" msgstr "Hændelsestype" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Ændr til %s" @@ -7202,7 +7202,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Slut" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Definition" @@ -7211,12 +7211,12 @@ msgstr "Definition" msgid "On completion preserve" msgstr "Efter udførsel bevar" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "Opretter" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "Opretter skal være i formatet \"brugernavn@værtsnavn\" " @@ -7262,7 +7262,7 @@ msgid "Returns" msgstr "Returværdier" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Tid" @@ -7282,7 +7282,7 @@ msgstr "" "eventuelle problemer." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Invalid rutinetype: \"%s\"" @@ -7301,69 +7301,69 @@ msgstr "Rutine \"%1$s\" er blevet ændret." msgid "Routine %1$s has been created." msgstr "Rutine %1$s er oprettet." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Rediger rutine" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Rutinenavn" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Parametre" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Retning" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Længde/Værdi*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Tilføj parameter" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Fjern den sidste parameter" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Retur type" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Retur-længde/-værdier" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Retur-indstillinger" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "Er deterministisk" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Sikkerhedstype" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "SQL dataadgang" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "Du skal angive et rutinenavn" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ugyldig retning \"%s\" givet for parameter." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7371,41 +7371,41 @@ msgstr "" "Du skal angive længde/værdier for rutineparametre af typen ENUM, SET, " "VARCHAR og VARBINARY." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "Du skal angive et navn og en type for hver rutineparameter." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "Du skal angive en gyldig returtype for rutinen." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "Du skal angive en rutinedefinition." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d række påvirket af den sidste SQL-sætning inde i proceduren" msgstr[1] "%d rækker påvirket af den sidste SQL-sætning inde i proceduren" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Udførelsesresultater af rutine %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Udfør rutine" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Rutineparametre" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funktion" @@ -7532,7 +7532,7 @@ msgstr "Der er ingen hændelser at vise." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7541,7 +7541,7 @@ msgstr "Tabellen \"%s\" findes ikke!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7549,9 +7549,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Konfigurér venligst koordinaterne for tabel %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Skema for databasen \"%s\" - Side %s" @@ -7564,105 +7564,105 @@ msgstr "Denne side indeholder ingen tabeller!" msgid "SCHEMA ERROR: " msgstr "SCHEMA ERROR: " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relationel skematik" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Indholdsfortegnelse" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Attributter" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Opret en ny side" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Sidenavn" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Automatisk layout baseret på" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Interne relationer" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Vælg en side, der skal redigeres" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Vælg side" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Vælg tabeller" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Vis relationel skema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Vælg Export Relational Type" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Vis gitter" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Vis farve" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Vis tabellernes dimensioner" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Vis alle tabeller med samme bredde" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Vis kun nøgler" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Liggende" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Stående" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Orientering" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Papirstørrelse" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7670,17 +7670,17 @@ msgstr "" "Nuværende side har referencer til tabeller der ikke længere eksisterer. Vil " "du slette disse referencer?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Tegnebræt til/fra" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Ukendt sprog: %1$s." @@ -7753,11 +7753,11 @@ msgstr "Ryd" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Lav bogmærke til denne SQL-forespørgsel" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Lad alle brugere bruge dette bogmærke" @@ -8188,7 +8188,7 @@ msgstr "Protokolversion" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Bruger" @@ -8399,7 +8399,7 @@ msgstr "Små/store alle" msgid "Toggle small/big" msgstr "Skift mellem små/store" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Eksporter koordinater for PDF-opstilling" @@ -8471,39 +8471,39 @@ msgstr "" "visningsfelt, klik på \"Vælg kolonne, der skal vises\" ikonet, og klik " "derefter på det pågældende kolonnenavn." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Side er blevet oprettet" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Sideoprettelse fejlede" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Side" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Importer fra valgt side" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Eksporter til valgt side" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Opret en side og eksporter til den" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Nyt sidenavn: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "anbefalet" @@ -8613,12 +8613,12 @@ msgstr "Importer filer" msgid "All" msgstr "Alle" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabel %s findes ikke eller er ikke sat i %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Filen eksisterer ikke" @@ -8630,13 +8630,13 @@ msgstr "Vælg binærlog til gennemsyn" msgid "Files" msgstr "Filer" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Trunkér viste forespørgsler" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Vis fuldstændige forespørgsler" @@ -9462,8 +9462,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Forespørgsler siden startup: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "pr. time" @@ -9484,17 +9484,17 @@ msgstr "Forespørgsler" msgid "#" msgstr "#" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Netværkstrafik siden startup: %s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9502,17 +9502,17 @@ msgstr "" "Denne MySQL server fungerer som master og slave i en " "replikationsproces." -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" "Denne MySQL server fungerer som master i en replikationsproces." -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" "Denne MySQL server fungerer som slave i en replikationsproces." -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9520,11 +9520,11 @@ msgstr "" "For yderligere information om replikationsstatus på serveren gå til replication section." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Status for replikation" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9532,35 +9532,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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Modtaget" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Sendt" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Maks. samtidige forbindelser" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Mislykkede forsøg" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Afbrudt" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Kommando" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -9568,11 +9568,11 @@ msgstr "" "Antallet af forbindelser, som blev aborteret, fordi klienten døde uden at " "lukke forbindelsen rigtigt." -#: server_status.php:1189 +#: server_status.php:1190 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:1190 +#: server_status.php:1191 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 " @@ -9582,17 +9582,17 @@ msgstr "" "overskred værdien for binlog_cache_size og brugte en midlertidig fil til at " "gemme statements fra transaktionen." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 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:1193 +#: server_status.php:1194 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 " @@ -9604,11 +9604,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:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Hvor mange midlertidige filer mysqld har oprettet." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9616,7 +9616,7 @@ msgstr "" "Antal i-hukommelsen midlertidige tabeller oprettet automatisk af serveren " "under udførelse af statements." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9624,7 +9624,7 @@ msgstr "" "Antal rækker skrevet med INSERT DELAYED (forsinket indsættelse) under hvilke " "der opstod fejl (sandsynligvis dublerede nøgler)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9632,23 +9632,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Antallet af INSERT DELAYED rækker skrevet." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Antallet af udførte FLUSH statements." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Antallet af interne COMMIT statements." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9658,7 +9658,7 @@ msgstr "" "tabel med et givent navn. Dette kaldes opdagelse. Handler_discover indikerer " "antallet af gange tabeller er blevet opdaget." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9668,7 +9668,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:1204 +#: server_status.php:1205 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." @@ -9677,7 +9677,7 @@ msgstr "" "er høj, er det en god indikation af at dine forespørgsler og tabeller er " "ordentligt indekserede." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9687,7 +9687,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:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9695,7 +9695,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:1207 +#: server_status.php:1208 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 " @@ -9707,7 +9707,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:1208 +#: server_status.php:1209 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 " @@ -9719,35 +9719,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:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Antallet af interne ROLLBACK statements." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Antallet af sider der indeholder data (beskidte eller rene)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Antallet af såkaldt beskidte sider." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Antallet af frie sider." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9757,7 +9757,7 @@ msgstr "" "sider, der i øjeblikket læses eller skrives eller som ikke kan flushes eller " "fjernes af andre årsager." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9769,11 +9769,11 @@ msgstr "" "også beregnes som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på buffer pool, i sider." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9782,7 +9782,7 @@ msgstr "" "forespørgsel skal scanne en større del af en tabel men i tilfældig " "rækkefølge." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9790,11 +9790,11 @@ msgstr "" "Antallet af sekventielle read-aheads InnoDB initierede. Dette sker når " "InnoDB laver en sekventiel fuld tabelscanning." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Antallet af logiske read anmodninger InnoDB har lavet." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9802,7 +9802,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:1223 +#: server_status.php:1224 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 " @@ -9816,55 +9816,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:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antallet af skrivninger til InnoDB buffer poolen." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Antallet af fsync() operationer indtil nu." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Nuværende antal ventende fsync() operationer." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Nuværende antal af ventende reads." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Nuværende antal af ventende writes." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Mængden af data læst indtil nu, i bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Det totale antal af data reads." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Det totale antal af data writes." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Mængden af data skrevet indtil nu, i bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -9872,35 +9872,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Antallet af log write anmodninger." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Antallet af fysiske skrivninger til log filen." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Antallet af fsyncs skrivninger lavet til logfilen." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Antallet af ventende log fil fsyncs." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Ventende log fil skrivninger." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Antallet af bytes skrevet til log filen." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Antallet af sider oprettet." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9908,51 +9908,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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Antallet af sider læst." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Antallet af sider skrevet." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Antallet af rækkelåse der ventes på i øjeblikket." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Antallet af rækker slettet fra InnoDB tabeller." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Antallet af rækker indsat i InnoDB tabeller." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Antallet af rækker læst fra InnoDB tables." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Antallet af rækker opdateret i InnoDB tabeller." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -9961,7 +9961,7 @@ msgstr "" "endnu ikke er blevet flushet til disk. Det hed tidligere " "Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -9969,7 +9969,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:1257 +#: server_status.php:1258 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 " @@ -9979,11 +9979,11 @@ msgstr "" "mærke der indikerer det maksimale antal blokke der på noget tidspunkt har " "været i brug på en gang." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -9993,15 +9993,15 @@ 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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10013,7 +10013,7 @@ msgstr "" "standardværdi på 0 betyder at der ikke er kompileret nogen forespørgsler " "endnu." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10021,12 +10021,12 @@ msgstr "" "Det maksimale antal forbindelser, som har været i brug samtidigt, siden " "serveren startede." -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10034,19 +10034,19 @@ msgstr "" "Antallet af tabeller der er blevet åbnet. Hvis åbnede tabeller er stor, er " "dit tabelmellemlager sandsynligvis for lille." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Antallet af filer der er åbne." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Antallet af tabeller der er åbne." -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -10056,19 +10056,19 @@ msgstr "" "kan indikere fragmenteringsproblemer, som kan løses ved en FLUSH QUERY CACHE " "kommando." -#: server_status.php:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Mængden af fri hukommelse til forespørgselsmellemlageret." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Antallet af mellemlager hits." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Antallet af forespørgsler tilføjet til mellemlageret." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10081,7 +10081,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:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10089,19 +10089,19 @@ msgstr "" "Antallet af ikke-mellemlagrede forespørgsler (ikke mulige at mellemlagre " "eller ikke mellemlagret grundet query_cache_type indstillingen)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Antallet af forespørgsler registreret i mellemlageret." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Totalt antal blokke i forespørgsels-mellemlageret." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status på fejlsikker replikation (endnu ikke implementeret)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10109,11 +10109,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10121,7 +10121,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:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10129,15 +10129,15 @@ msgstr "" "Antallet af joins der brugte ranges på den første tabel. (Normalt ikke " "kritisk selvom tallet er stort.)" -#: server_status.php:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10145,12 +10145,12 @@ msgstr "" "Totalt (siden opstart) antal gange replikationsslave SQL tråden har gen-" "forsøgt transaktioner." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10158,13 +10158,13 @@ msgstr "" "Antallet af tråde der har taget mere end slow_launch_time sekunder at " "oprette." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10174,23 +10174,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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Antallet af sorteringer lavet med ranges." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Antallet af sorterede rækker." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10202,7 +10202,7 @@ msgstr "" "optimere dine forespørgsler, og derefter enten opdele din tabel eller " "tabeller, eller bruge replikation." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10212,11 +10212,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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Antallet af i øjeblikket åbne forbindelser." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10228,63 +10228,63 @@ msgstr "" "(Normalt giver dette ingen nævneværdig ydelsesforbedring hvis du har god " "tråd-implementering.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Antallet af tråde, der ikke sover." -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "Start Monitor" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "Instruktioner/Opsætning" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "Færdig med at omordne/redigere diagrammer" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "Tilføj diagram" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "Omordne/rediger diagrammer" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Opdateringsfrekvens" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Chart columns:" msgid "Chart columns" msgstr "Diagramkolonner:" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Fejlhåndtering:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Gendan standardværdi" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "Monitorinstruktioner" -#: server_status.php:1489 +#: server_status.php:1490 #, fuzzy #| msgid "" #| "The phpMyAdmin Monitor can assist you in optimizing the server " @@ -10307,7 +10307,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:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10315,13 +10315,13 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Sæt monitor på pause" -#: server_status.php:1509 +#: server_status.php:1510 #, fuzzy #| msgid "" #| "Using the monitor:
\n" @@ -10352,7 +10352,7 @@ msgstr "" " nede og køre hen over diagrammet. Dette vill hente statistik fra " "logs og hjælpe dig til at finde årsagen.

til aktivitetsforøgelsen.

" -#: server_status.php:1511 +#: server_status.php:1512 #, fuzzy #| msgid "" #| "Using the monitor:
\n" @@ -10383,11 +10383,11 @@ msgstr "" " nede og køre hen over diagrammet. Dette vill hente statistik fra " "logs og hjælpe dig til at finde årsagen.

til aktivitetsforøgelsen.

" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 #, fuzzy #| msgid "" #| "Please note:\n" @@ -10978,12 +10978,12 @@ msgstr "Viser SQL-forespørgsel" msgid "Validated SQL" msgstr "Valideret SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene på tabel `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Mærke" diff --git a/po/de.po b/po/de.po index b1bd55893e..2c037fcb29 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-13 02:00+0200\n" "Last-Translator: Sven Strickroth \n" "Language-Team: german \n" @@ -21,10 +21,10 @@ msgstr "Alles anzeigen" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Seite:" @@ -39,8 +39,8 @@ msgstr "" "Zugriff aufgrund von Ihren Sicherheitseinstellungen." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Suche" @@ -48,25 +48,25 @@ msgstr "Suche" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Schlüsselname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Beschreibung" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Diesen Wert verwenden" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Kein BLOB-Streaming-Server konfiguriert!" @@ -128,7 +128,7 @@ msgstr "Die Datenbank %1$s wurde erzeugt." msgid "Database comment: " msgstr "Datenbankkommentar: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Tabellen-Kommentar" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Spalte" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Typ" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Standard" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Verweise" @@ -196,8 +196,8 @@ msgstr "Verweise" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Kommentare" @@ -208,7 +208,7 @@ msgstr "Kommentare" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Nein" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Beziehungsschema bearbeiten oder exportieren" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "in Benutzung" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Erzeugt am" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Aktualisiert am" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Letzter Check am" @@ -497,7 +497,7 @@ msgstr "SQL-Befehl ausführen" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Zugriff verweigert" @@ -531,7 +531,7 @@ msgstr[0] "%s Treffer in der Tabelle %s" msgstr[1] "%s Treffer in der Tabelle %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Anzeigen" @@ -543,10 +543,10 @@ msgstr "Treffer für Tabelle %s löschen?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -666,12 +666,12 @@ msgstr "Auswahl entfernen" msgid "Check tables having overhead" msgstr "Tabellen mit Überhang auswählen" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportieren" @@ -681,13 +681,13 @@ msgstr "Exportieren" msgid "Print view" msgstr "Druckansicht" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Leeren" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -721,7 +721,7 @@ msgstr "Tabellenprefix ersetzen" msgid "Copy table with prefix" msgstr "Tabelle mit Prefix kopieren" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Strukturverzeichnis" @@ -736,7 +736,7 @@ msgstr "Verfolgte Tabellen" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -756,7 +756,7 @@ msgstr "Aktualisiert" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -862,14 +862,14 @@ msgstr "" "Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die " "%sDokumentation%s zur Lösung diese Problems." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Die Datei konnte nicht gelesen werden" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -904,7 +904,7 @@ msgstr "SQL-Abfrage wurde gelöscht." msgid "Showing bookmark" msgstr "Bookmark wird angezeigt" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s wurde gespeichert" @@ -933,7 +933,7 @@ msgstr "" "nicht die Ausführungszeitbeschränkungen von php gelockert werden." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1048,9 +1048,9 @@ msgstr "Schliesse" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Bearbeiten" @@ -1073,13 +1073,13 @@ msgstr "Statische Daten" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Insgesamt" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Weitere" @@ -1109,7 +1109,7 @@ msgstr "Server Traffic (in KiB)" msgid "Connections since last refresh" msgstr "Verbindungen seit der letzten Aktualisierung" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Prozesse" @@ -1132,7 +1132,9 @@ msgid "Query statistics" msgstr "Abfrage-Statistiken" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +#, fuzzy +#| msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Lokale Monitor-Konfiguration ist inkompatibel" #: js/messages.php:94 @@ -1235,7 +1237,7 @@ msgstr "Bytes gesendet" msgid "Bytes received" msgstr "Bytes empfangen" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Verbindungen" @@ -1244,12 +1246,12 @@ msgstr "Verbindungen" msgid "Questions" msgstr "Anfragen" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Netzwerkverkehr" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Einstellungen" @@ -1272,7 +1274,7 @@ msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "keine" @@ -1500,7 +1502,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importieren" @@ -1669,7 +1671,7 @@ msgid "Query execution time" msgstr "Ausführungszeit der Abfrage" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2090,25 +2092,25 @@ msgstr "Minute" msgid "Second" msgstr "Sekunde" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Schriftgröße" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "Bei der Datei handelt es sich um keine hochgeladene Datei." -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "Unbekannter Fehler beim Dateihochladen." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2116,27 +2118,27 @@ msgstr "" "Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML " "Formulars angegebene Wert." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Die Datei wurde teilweise übertragen." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Datei konnte gespeichert werden." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Dateihochladen durch eine Erweiterung gestoppt." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Unbekannter Fehler beim Dateihochladen." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2144,11 +2146,11 @@ msgstr "" "Fehler beim Verschieben der hochgeladenen Datei, siehe [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "Fehler beim Verschieben der hochgeladenen Datei." -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "Die hochgeladene und verschobene Datei kann nicht gelesen werden." @@ -2176,7 +2178,7 @@ msgid "Cardinality" msgstr "Kardinalität" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Kommentar" @@ -2199,14 +2201,14 @@ msgstr "" "Die Indizes %1$s und %2$s scheinen gleich zu sein und einer könnte " "möglicherweise entfernt werden." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Datenbanken" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2302,16 +2304,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Keinen gültigen Pfad für Grafiken des Oberflächendesigns %s gefunden!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Keine Vorschau verfügbar." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "auswählen" @@ -2325,12 +2327,12 @@ msgstr "Standard-Oberflächendesign %s nicht gefunden!" msgid "Theme %s not found!" msgstr "Oberflächendesign %s nicht gefunden!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Pfad für das Oberflächendesign %s nicht gefunden!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Theme" @@ -2341,7 +2343,7 @@ msgstr "" "hergestellt werden." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Willkommen bei %s" @@ -2369,52 +2371,52 @@ msgstr "" "vergewissern, dass diese den Informationen, welche Sie vom Administrator " "erhalten haben, entsprechen." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Anmeldung" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-Dokumentation" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Sie können einen Rechnernamen oder eine IP Adresse und einen Port durch " "Leerzeichen getrennt eingeben." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Benutzername:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Passwort:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Server auswählen" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Ab diesem Punkt müssen Cookies aktiviert sein." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Login ohne Passwort ist verboten (siehe AllowNoPassword in der Konfiguration)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2422,8 +2424,8 @@ msgstr "" "Da Sie seit mindestens %s Sekunden inaktiv waren, wurden Sie automatisch " "abgemeldet. Bitte melden Sie sich erneut an" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Die Anmeldung am MySQL-Server ist fehlgeschlagen" @@ -2454,39 +2456,39 @@ msgstr "Kein gültiger Authentisierungsschlüssel angeschlossen" msgid "Authenticating..." msgstr "Authentifiziere..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS Fehler" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS Verbindung fehlgeschlagen:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS: Infos über BLOB nicht erhalten:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "PBMS konnte den Content-Typ des BLOBs nicht bestimmen" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Bild anzeigen" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Tonaufnahme abspielen" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Filmaufnahme abspielen" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Datei herunterladen" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Die Datei %s konnte nicht geöffnet werden" @@ -2627,7 +2629,7 @@ msgid "Documentation" msgstr "Dokumentation" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-Befehl" @@ -2637,7 +2639,7 @@ msgstr "SQL-Befehl" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2686,7 +2688,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Messen" @@ -2786,7 +2788,7 @@ msgid "Click to toggle" msgstr "Zum Umschalten anklicken" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2806,8 +2808,8 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Einfügen" @@ -2818,25 +2820,25 @@ msgstr "Einfügen" msgid "Operations" msgstr "Operationen" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Durchsuchen Sie ihren Computer:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Es sind keine Dateien zum Upload vorhanden" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Ausführen" @@ -3001,7 +3003,7 @@ msgid "Allow users to customize this value" msgstr "Erlaube den Benutzern diesen Wert anzupassen" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Zurücksetzen" @@ -5344,8 +5346,8 @@ msgstr "Neue Tabelle in Datenbank %s erstellen" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5658,7 +5660,7 @@ msgstr "Nach Schlüssel sortieren" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Optionen" @@ -5719,7 +5721,7 @@ msgid "The row has been deleted" msgstr "Der Datensatz wurde gelöscht" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Beenden" @@ -6314,7 +6316,7 @@ msgstr "MIME-Typen anzeigen" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6543,7 +6545,7 @@ msgstr "SQL-Abfrageergebnis" msgid "Generated by" msgstr "Erstellt von" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)." @@ -6650,7 +6652,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Tabellenname" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Spaltennamen" @@ -7014,7 +7016,7 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Erneut in phpMyAdmin anmelden um die neue Konfigurationsdatei zu laden." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "keine Beschreibung" @@ -7052,14 +7054,14 @@ msgid "Slave status" msgstr "Slave-Status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Wert" @@ -7123,7 +7125,7 @@ msgstr "Passwort generieren" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7160,14 +7162,14 @@ msgstr "" msgid "Edit event" msgstr "Event bearbeiten" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Fehler beim Bearbeiten der Anfrage" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Details" @@ -7180,7 +7182,7 @@ msgstr "Ereignis-Name" msgid "Event type" msgstr "Ereignistyp" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Wechseln zu %s" @@ -7207,7 +7209,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Ende" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Beschreibung" @@ -7216,12 +7218,12 @@ msgstr "Beschreibung" msgid "On completion preserve" msgstr "Nach Abschluss erhalten" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "Ersteller" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "Der Ersteller muss im \"benutzername@hostname\" Format sein" @@ -7267,7 +7269,7 @@ msgid "Returns" msgstr "Rückgabe-Wert" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Zeit" @@ -7287,7 +7289,7 @@ msgstr "" "Bitte verwenden Sie die neuere 'mysqli'-Erweiterung um Probleme zu vermeiden." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ungültiger Prozeduren-Typ: \"%s\"" @@ -7306,69 +7308,69 @@ msgstr "Prozedur %1$s wurde geändert." msgid "Routine %1$s has been created." msgstr "Die Prozedur %1$s wurde erstellt." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Bearbeite Prozedur" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Prozeduren-Name" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Parameter" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Richtung" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Länge/Werte" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Parameter hinzufügen" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Letzten Parameter entfernen" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Rückgabe-Typ" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Rückgabe Länge/Werte" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Rückgabe der Optionen" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "Ist plangesteuert" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Sicherheits-Typ" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "SQL-Daten Zugriff" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "Sie müssen einen Prozeduren-Namen angeben" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ungültige Richtung \"%s\" für Parameter angegeben." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7376,21 +7378,21 @@ msgstr "" "Sie müssen Länge/Werte Angaben für Prozeduren Parameter des Typs ENUM, SET, " "VARCHAR und VARBINARY angeben." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" "Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" "Sie müssen einen Namen und einen Typ für jeden Prozeduren-Parameter angeben." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "Sie müssen die Definition der Prozedur angeben." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7399,22 +7401,22 @@ msgstr[0] "" msgstr[1] "" "%d Datensätze betroffen aufgrund des letzten Befehls innerhalb der Prozedur" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Ergebnisse der ausgeführten Prozedur %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Führe Prozedur aus" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Prozeduren-Parameter" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funktion" @@ -7545,7 +7547,7 @@ msgstr "Es sind keine Ereignisse vorhanden, die angezeigt werden könnten." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7554,7 +7556,7 @@ msgstr "Die Tabelle %s existiert nicht!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7562,9 +7564,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Bitte konfigurieren Sie die Koordinaten für die Tabelle %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schema der Datenbank %s - Seite %s" @@ -7577,105 +7579,105 @@ msgstr "Diese Seite enthält keine Tabellen!" msgid "SCHEMA ERROR: " msgstr "SCHEMA-FEHLER: " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Beziehungsschema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Inhalt" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Attribute" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Neue Seite erstellen" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Seitenname" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Automatische Anordnung basierend auf" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Interne Beziehungen" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Bitte wählen Sie die zu bearbeitende Seite" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Seite auswählen" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Tabellenauswahl" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Beziehungsschema anzeigen" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Beziehungsschema exportieren auswählen" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Gitterlinien anzeigen" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "mehrfarbig" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Tabellendimensionen anzeigen" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Alle Tabellen mit der selben Breite anzeigen" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Nur Schlüssel anzeigen" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Querformat" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Hochformat" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Ausrichtung" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Papiergröße" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7683,17 +7685,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Klemmbrett anzeigen" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Unbekannte Sprache: %1$s." @@ -7767,11 +7769,11 @@ msgstr "Werte löschen" msgid "Columns" msgstr "Spalten" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "SQL-Abfrage speichern" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" @@ -8213,7 +8215,7 @@ msgstr "Protokoll-Version" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Benutzer" @@ -8426,7 +8428,7 @@ msgstr "Alles klein/groß" msgid "Toggle small/big" msgstr "Wechseln klein/groß" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export Koordinaten für das PDF Schema" @@ -8498,39 +8500,39 @@ msgstr "" "anzeigen zu lassen oder nicht, klicken Sie auf das Symbol \"Anzeigespalte " "wählen\", dann auf den passenden Spaltennamen." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Seite wurde erstellt" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Seitenerstellung fehlgeschlagen" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Seite" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Import von ausgewählter Seite" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Export zu der ausgewählten Seite" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Eine Seite anlegen und dahin exportieren" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Name der neuen Seite: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Export/Import skalieren" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "empfohlen" @@ -8641,14 +8643,14 @@ msgstr "Dateiimport" msgid "All" msgstr "Alle" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "" "Die Tabelle %s wurde entweder nicht gefunden oder in der " "Kofigurationsdatei %s nicht gesetzt" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Datei existiert nicht" @@ -8660,13 +8662,13 @@ msgstr "Binäres Protokoll zur Anzeige auswählen" msgid "Files" msgstr "Dateien" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Zeige die SQL-Abfragen verkürzt an" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Zeige die SQL-Abfragen vollständig an" @@ -9503,8 +9505,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Verbindungen seit Start: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "pro Stunde" @@ -9525,17 +9527,17 @@ msgstr "Angaben" msgid "#" msgstr "#" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Netzwerk-Datenverkehr seit Start: %s" -#: server_status.php:951 +#: server_status.php:952 #, 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 um %2$s gestartet." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9543,18 +9545,18 @@ msgstr "" "Dieser MySQL Server arbeitet als Master und Slave im " "Replikations-Prozess." -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" "Dieser MySQL Server arbeitet als Master im Replikations-" "Prozess." -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" "Dieser MySQL Server arbeitet als Slave im Replikations-Prozess." -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9562,11 +9564,11 @@ msgstr "" "Für weitere Informationen über den Replikations-Status auf dem Server siehe " "Abschnitt Replikation." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Replikations-Status" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9575,35 +9577,35 @@ msgstr "" "wieder bei 0 beginnen, deshalb können diese Werte, wie sie vom MySQL Server " "ausgegeben werden, falsch sein." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Empfangen" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Gesendet" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "max. gleichzeitige Verbindungen" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Fehlversuche" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Abgebrochen" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Befehl" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -9611,12 +9613,12 @@ msgstr "" "Die Anzahl der Verbindungen die aufgrund einer nicht richtig geschlossenen " "Verbindung zu einem nicht mehr erreichbaren Client abgebrochen wurden." -#: server_status.php:1189 +#: server_status.php:1190 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:1190 +#: server_status.php:1191 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 " @@ -9626,19 +9628,19 @@ msgstr "" "des Binarylog-Caches (binlog_cache_size) überschritten und eine temporäre " "Datei verwendet haben um die Statements der Transaktion zu speichern." -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Anzahl der Transaktionen, die den temporären Binarylog-Cache verwendet haben." -#: server_status.php:1192 +#: server_status.php:1193 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:1193 +#: server_status.php:1194 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 " @@ -9650,11 +9652,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:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Anzahl der temporären Dateien, die mysqld erzeugt hat." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9662,7 +9664,7 @@ msgstr "" "Anzahl der (implizit) im Arbeitsspeicher erzeugten temporären Tabellen bei " "der Ausführung von Statements." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9670,7 +9672,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:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9678,23 +9680,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Anzahl der Datensätze, die mit INSERT DELAYED geschrieben wurden." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Anzahl der ausgeführten FLUSH-Befehle." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Anzahl der Anfragen, ein COMMIT auszuführen." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9704,7 +9706,7 @@ msgstr "" "kann die NDB-Cluster-Storage-Engine fragen, ob sie eine bestimmte Tabelle " "kennt. Dieser Vorgang wird "discovery" genannt." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9715,7 +9717,7 @@ msgstr "" "Beispiel SELECT spalte1 FROM foo, unter der Annahme, dass spalte1 indiziert " "ist)." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -9724,7 +9726,7 @@ msgstr "" "dieser Wert hoch ist, ist das ein gutes Indiz dafür, dass Ihre Anfragen und " "Tabellen korrekt indiziert sind." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9735,7 +9737,7 @@ msgstr "" "Bereichsbeschränkung (Limit) abfragen. Er wird ebenfalls herauf gezählt, " "wenn Sie einen Index-Scan durchführen." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9744,7 +9746,7 @@ msgstr "" "Schlüssels zu lesen. Diese Lese-Methode ist hauptsächlich zur Optimierung " "von ORDER BY ... DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9757,7 +9759,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:1208 +#: server_status.php:1209 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 " @@ -9770,36 +9772,36 @@ msgstr "" "sind, oder dass Ihre Anfragen nicht so geschrieben sind, dass Sie Vorteile " "aus den Indexen ziehen, die Sie haben." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Anzahl der Anfragen, ein ROLLBACK auszuführen." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Anzahl der Seiten, die Daten enthalten (ob "dirty" oder nicht)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Anzahl der als "dirty" markierten Seiten." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Anzahl der unbenutzten Seiten." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9809,7 +9811,7 @@ msgstr "" "beschrieben oder können aus einem anderen Grund nicht zurückgeschrieben oder " "entfernt werden können." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9821,11 +9823,11 @@ msgstr "" "aus Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Die Größe des Puffer-Pools in Seiten." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9833,7 +9835,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9841,11 +9843,11 @@ msgstr "" "Anzahl sequentieller read-aheads durch InnoDB. Dies geschieht wenn InnoDB " "eine Tabelle komplett sequentiell durchsucht." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Anzahl angeforderter Lesevorgängen durch InnoDB." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9853,7 +9855,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:1223 +#: server_status.php:1224 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 " @@ -9868,53 +9870,53 @@ msgstr "" "geschehen ist. Wenn die Zwischenspeicher-Größe korrekt eingestellt ist " "sollte dieser Wert klein sein." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Anzahl der Schreibvorgänge im InnoDB Zwischenspeicher." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Bisher ausgeführte fsync()-Operationen." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Momentan anstehende fsync()-Operationen." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Momentan anstehende Lesezugriffe." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Momentan anstehende Schreizugriffe." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Wieviel Daten bisher gelesen wurden, in Byte." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Wie oft Daten gelesen wurden." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Wie oft Daten geschrieben wurden." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Wieviel Daten bisher geschrieben wurden, in Byte." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "Anzahl der ausgeführten doublewrite Zugriffe." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -9922,35 +9924,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Anzahl der Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Anzahl der tatsächlichen Schreibvorgänge der Protokoll-Datei." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Getätigte fsync() Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Anstehende fsyncs für die Protokoll-Datei." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Anstehende Schreibzugriffe für die Protokoll-Datei." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Anzahl an Byte die in die Protokoll-Datei geschrieben wurden." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Anzahl erstellter Seiten." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9959,55 +9961,55 @@ msgstr "" "werden in Seiten gezählt; die Seitengröße erlaubt es diese einfach in Byte " "umzurechnen." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Anzahl gelesener Seiten." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Anzahl geschriebener Seiten." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Momentan anstehende Zeilen-Sperren." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Anzahl gelöschter Datensätze aller InnoDB Tabellen." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Anzahl der eingefügten Datensätze in alle InnoDB Tabellen." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Anzahl der Datensätze, die aus InnoDB-Tabellen gelesen wurden." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Anzahl der Datensätze, die in InnoDB-Tabellen aktualisiert wurden." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10016,7 +10018,7 @@ msgstr "" "auf die Platte zurück geschrieben (flush) wurden; auch bekannt als " "Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10024,7 +10026,7 @@ msgstr "" "Die Anzahl der unbenutzten Schlüssel-Blöcke im Schlüssel-Cache. Dieser Wert " "kann dazu dienen die Auslastung des Schlüssel-Cache zu bestimmen." -#: server_status.php:1257 +#: server_status.php:1258 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 " @@ -10032,11 +10034,11 @@ msgid "" msgstr "" "Die Anzahl der maximal gleichzeitig benutzten Blocks im Schlüssel-Cache." -#: server_status.php:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "Die Anzahl der Anfragen, einen Schlüssel-Block aus dem Cache zu lesen." -#: server_status.php:1259 +#: server_status.php:1260 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 " @@ -10047,17 +10049,17 @@ msgstr "" "Die Cache-Zugriffsrate kann mit key_reads / key_read_requests berechnet " "werden." -#: server_status.php:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" "Die Anzahl der Anfragen, einen Schlüssel-Block in den Cache zu schreiben." -#: server_status.php:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10067,7 +10069,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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10075,13 +10077,13 @@ msgstr "" "Die maximale Anzahl an Verbindungen die seit Serverstart gleichzeitig " "benutzt wurden." -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10089,20 +10091,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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Anzahl der geöffneten Dateien." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Anzahl der geöffneten Tabellen." -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -10112,19 +10114,19 @@ msgstr "" "Werte können Fragmentierungsprobleme aufzeigen, die durch eine FLUSH QUERY " "CACHE - Abfrage beseitigt werden können." -#: server_status.php:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Freier Speicher im Abfragen-Cache." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Abfrage-Cache-Zugriffsrate." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Die Anzahl der Abfragen die dem Cache hinzugefügt wurden." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10137,7 +10139,7 @@ msgstr "" "recently used), d. h. es wird stets die Abfrage gelöscht, die am " "längsten unbenutzt im Cache lag." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10145,19 +10147,19 @@ msgstr "" "Die Anzahl der nicht im Cache eingetragenen Abfragen (nicht möglich, oder " "aufgrund der query_cache_type Einstellung)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Die Anzahl der Abfragen im Cache." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Die Anzahl aller Speicherblöcke im Abfrage-Cache." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Der Status der ausfallsicheren Replikation." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10165,13 +10167,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10180,7 +10182,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:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10188,16 +10190,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10205,13 +10207,13 @@ msgstr "" "Gesamtzahl (seit Start des Servers) der vom Replikations-Slave-SQL-Thread " "wiederversuchten Transaktionen." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10219,12 +10221,12 @@ msgstr "" "Anzahl der Prozesse, die länger als slow_launch_time brauchten, um sich zu " "verbinden." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10234,25 +10236,25 @@ msgstr "" "wurden. Wenn dieser Wert hoch ist, sollten Sie in Betracht ziehen, " "sort_buffer herauf zu setzen." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Anzahl der Sortiervorgänge, die mit Bereichen durchgeführt wurden." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Anzahl der sortierten Datensätze." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "Wie oft eine Tabellensperre sofort erlangt wurde." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10264,7 +10266,7 @@ msgstr "" "sollten Sie zunächst Ihre Anfragen optimieren und dann entweder Ihre Tabelle" "(n) zerteilen oder Replikation benutzen." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10274,11 +10276,11 @@ msgstr "" "Threads_created / Connections berechnet werden. Wenn dieser Wert rot ist, " "sollte der thread_cache_size erhöht werden." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Anzahl der momentan offenen Verbindungen." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10290,43 +10292,43 @@ msgstr "" "Variable herauf setzen. (Normalerweise ergibt sich daraus keine bemerkbare " "Performance-Steigerung wenn eine gute Prozess-Implementierung vorliegt.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Anzahl der Prozesse, die nicht schlafen." -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "Überwachung starten" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "Einführung/Einrichtung" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "Umordnen/bearbeiten der Schaubilder beendet" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "Schaubild hinzufügen" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "Schaubilder umordnen/bearbeiten" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Aktualisierungs-Intervall" -#: server_status.php:1467 +#: server_status.php:1468 msgid "Chart columns" msgstr "Schaubild-Spalten" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "Schaubild-Anordnung" -#: server_status.php:1483 +#: server_status.php:1484 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." @@ -10335,15 +10337,15 @@ msgstr "" "Es empfiehlt sich dieses zu exportieren, wenn Sie eine aufwändige Anordnung " "eingerichtet haben." -#: server_status.php:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "Zurücksetzen" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "Einführung zur Überwachung" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10358,7 +10360,7 @@ msgstr "" "general_log viele Daten produzieren und die Serverauslastung um bis zu 15% " "erhöhen kann." -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10366,13 +10368,13 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Überwachung pausieren" -#: server_status.php:1509 +#: server_status.php:1510 #, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " @@ -10401,7 +10403,7 @@ msgstr "" "Statistiken aus den Protokollen laden um Sie bei der Auffindung der " "Aktivitätsspitze zu unterstützen.

" -#: server_status.php:1511 +#: server_status.php:1512 #, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " @@ -10430,11 +10432,11 @@ msgstr "" "Statistiken aus den Protokollen laden um Sie bei der Auffindung der " "Aktivitätsspitze zu unterstützen.

" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 #, fuzzy #| msgid "" #| "Please note: Enabling the general_log may increase the server load " @@ -11030,12 +11032,12 @@ msgstr "Ansicht als SQL Abfrage" msgid "Validated SQL" msgstr "Geprüftes SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Warnungen bei den Indizes der Tabelle `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Titel" diff --git a/po/el.po b/po/el.po index 5422dbdbc8..6dfd1fbf44 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-07-29 14:17+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" @@ -21,10 +21,10 @@ msgstr "Εμφάνιση όλων" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Σελίδα:" @@ -39,8 +39,8 @@ msgstr "" "ανανεώσεις μεταξύ παραθύρων λόγω ρυθμίσεων ασφαλείας." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Αναζήτηση" @@ -48,25 +48,25 @@ msgstr "Αναζήτηση" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Όνομα κλειδιού" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Περιγραφή" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Χρήση αυτής της τιμής" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Δεν ρυθμίστηκε διακομιστής ροής blob!" @@ -128,7 +128,7 @@ msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." msgid "Database comment: " msgstr "Σχόλιο βάσης: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Σχόλια πίνακα" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Στήλη" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Τύπος" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Κενό" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Προεπιλογή" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Σύνδεση με" @@ -196,8 +196,8 @@ msgstr "Σύνδεση με" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Σχόλια" @@ -208,7 +208,7 @@ msgstr "Σχόλια" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Όχι" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματ #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "σε χρήση" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Δημιουργία" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Τελευταία ενημέρωση" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Tελευταίος έλεγχος" @@ -497,7 +497,7 @@ msgstr "Υποβολή ερωτήματος" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Άρνηση πρόσβασης" @@ -531,7 +531,7 @@ msgstr[0] "%s απατέλεσμα στον πίνακα %s" msgstr[1] "%s αποτελέσματα στον πίνακα %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Περιήγηση" @@ -543,10 +543,10 @@ msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τ #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -665,12 +665,12 @@ msgstr "Απεπιλογή όλων" msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Εξαγωγή" @@ -680,13 +680,13 @@ msgstr "Εξαγωγή" msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Άδειασμα" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -720,7 +720,7 @@ msgstr "Αντικατάσταση προθέματος πίνακα" msgid "Copy table with prefix" msgstr "Αντιγραφή πίνακα με πρόθεμα" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Περιληπτικός πίνακας δεδομένων" @@ -735,7 +735,7 @@ msgstr "Παρακολουθούμενοι πίνακες" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Ενημερώθηκε" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Κατάσταση" @@ -860,14 +860,14 @@ msgstr "" "Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην " "%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Δεν ήταν δυνατή η ανάγνωση του αρχείου" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -901,7 +901,7 @@ msgstr "Η ετικέτα διεγράφη." msgid "Showing bookmark" msgstr "Εμφάνιση σελιδοδείκτη" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε" @@ -929,7 +929,7 @@ msgstr "" "και αν αυξήσετε τα χρονικά όρια της php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1046,9 +1046,9 @@ msgstr "Κλείσιμο" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Επεξεργασία" @@ -1071,13 +1071,13 @@ msgstr "Στατικά δεδομένα" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Σύνολο" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Άλλα" @@ -1107,7 +1107,7 @@ msgstr "Κυκλοφορία Διακομιστή (σε KB)" msgid "Connections since last refresh" msgstr "Συνδέσεις από την τελευταία ανανέωση" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Διεργασίες" @@ -1132,7 +1132,7 @@ msgstr "Στατιστικά ερωτήματος" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Αδύνατη η ανάγνωση του αρχείου ρυθμίσεων" #: js/messages.php:94 @@ -1247,7 +1247,7 @@ msgstr "" msgid "Bytes received" msgstr "Ελήφθησαν" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Συνδέσεις" @@ -1256,12 +1256,12 @@ msgstr "Συνδέσεις" msgid "Questions" msgstr "Ερωτήσεις" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Κίνηση" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Ρυθμίσεις" @@ -1286,7 +1286,7 @@ msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στι #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Καμία" @@ -1522,7 +1522,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Εισαγωγή" @@ -1696,7 +1696,7 @@ msgid "Query execution time" msgstr "Χρόνος εκτέλεσης ερωτήματος" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2120,25 +2120,25 @@ msgstr "Λεπτό" msgid "Second" msgstr "Δευτερόλεπτο" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "Το αρχείο δεν ήταν αρχείο αποστολής." -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "Άγνωστο σφάλμα κατά την αποστολή αρχείου." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php." "ini." -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2146,27 +2146,27 @@ msgstr "" "Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε " "στη φόρμα HTML." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Χάθηκε ένας προσωρινός φάκελος." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2174,11 +2174,11 @@ msgstr "" "Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις [a@./Documentation." "html#faq1_11@Documentation]ΣΑΕ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "Σφάλμα κατά τη μετακίνηση αρχείου αποστολής." -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "Αδύνατη η ανάγνωση (μετακίνηση) του αρχείου αποστολής." @@ -2206,7 +2206,7 @@ msgid "Cardinality" msgstr "Μοναδικότητα" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Σχόλιο" @@ -2229,14 +2229,14 @@ msgstr "" "Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να " "απομακρυνθεί." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Βάσεις δεδομένων" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2338,16 +2338,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Βρέθηκε μη έγκυρη διαδρομή εικόνας για το θέμα %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Προεπισκόπηση μη διαθέσιμη." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "πάρτε το" @@ -2361,12 +2361,12 @@ msgstr "Το προεπιλεγμένο θέμα %s δεν βρέθηκε!" msgid "Theme %s not found!" msgstr "Το θέμα %s δεν βρέθηκε!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θέμα %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Θέμα" @@ -2375,7 +2375,7 @@ msgid "Cannot connect: invalid settings." msgstr "Αδύνατη η σύνδεση: άκυρες ρυθμίσεις." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Καλωσήρθατε στο %s" @@ -2402,45 +2402,45 @@ msgstr "" "και να βεβαιωθείτε ότι αντιστοιχούν σε αυτά που σας έχει δώσει ο " "διαχειρηστής του διακομιστή MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Σύνδεση" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Τεκμηρίωση phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Μπορείτε να εισάγετε όνομα διακομιστή/διεύθυνση ΙΡ και θύρα χωρισμένα με " "κενό." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Διακομιστής:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Όνομα χρήστη:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Κωδικός πρόσβασης:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Επιλογή Διακομιστή" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Από αυτό το σημείο πρέπει να έχετε ενεργοποιημένα cookies." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2448,7 +2448,7 @@ msgstr "" "Η σύνδεση χωρίς κωδικό πρόσβασης απαγορεύεται από τις ρυθμίσεις (δείτε τη " "μεταβλητή AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2456,8 +2456,8 @@ msgstr "" "Καμιά δραστηριότητα εδώ και %s δευτερόλεπτα τουλάχιστον, για αυτό " "ξανασυνδεθείτε" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Δεν ήταν δυνατή η σύνδεση με τον διακομιστή MySQL" @@ -2488,41 +2488,41 @@ msgstr "Δεν τοποθετήθηκε κανένα έγκυρο κλειδί msgid "Authenticating..." msgstr "Επικύρωση..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "Σφάλμα PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "Η σύνδεση PBMS απέτυχε:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "Η λήψη πληροφοριών BLOB από την PBMS απέτυχε:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "η λήψη Τύπου-Περιεχομένου του BLOB απέτυχε" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Προβολή εικόνας" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Αναπαραγωγή ήχου" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Προβολή βίντεο" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Λήψη αρχείου" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Αδύνατο το άνοιγμα αρχείου: %s" @@ -2663,7 +2663,7 @@ msgid "Documentation" msgstr "Τεκμηρίωση" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "Εντολή SQL" @@ -2673,7 +2673,7 @@ msgstr "Εντολή SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2722,7 +2722,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Εσωτερικό" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Δημιουργία προφίλ" @@ -2822,7 +2822,7 @@ msgid "Click to toggle" msgstr "Πατήστε για εναλλαγή" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2842,8 +2842,8 @@ msgstr "Δομή" msgid "SQL" msgstr "Κώδικας SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Προσθήκη" @@ -2854,26 +2854,26 @@ msgstr "Προσθήκη" msgid "Operations" msgstr "Λειτουργίες" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Περιηγηθείτε στον υπολογιστή σας:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Επιλογή από το φάκελο αποστολής του διακοιμίστή ιστού %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "" "Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Δεν υπάρχουν αρχεία προς αποστολή" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Εκτέλεση" @@ -3041,7 +3041,7 @@ msgid "Allow users to customize this value" msgstr "Επιτρέπεται στους χρήστες να προσαρμόσουν αυτή την τιμή" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Επαναφορά" @@ -5408,8 +5408,8 @@ msgstr "Δημιουργία νέου πίνακα στη βάση %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5722,7 +5722,7 @@ msgstr "Ταξινόμηση ανά κλειδί" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Επιλογές" @@ -5782,7 +5782,7 @@ msgid "The row has been deleted" msgstr "Η εγγραφή έχει διαγραφεί" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Τερματισμός" @@ -6382,7 +6382,7 @@ msgstr "Διαθέσιμοι τύποι MIME" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Φιλοξενητής" @@ -6612,7 +6612,7 @@ msgstr "αποτέλεσμα SQL" msgid "Generated by" msgstr "Δημιουργήθηκε από" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6716,7 +6716,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Ονομασία πίνακας" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Ονόματα στηλών" @@ -7079,7 +7079,7 @@ msgstr "" "Επανασυνδεθείτε στο phpMyAdmin για να φορτωθεί το ενημερωμένο αρχείο " "ρυθμίσεων." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "χωρίς περιγραφή" @@ -7116,14 +7116,14 @@ msgid "Slave status" msgstr "Κατάσταση δευτερεύοντος" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Μεταβλητή" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Τιμή" @@ -7187,7 +7187,7 @@ msgstr "Παραγωγή Κωδικού Πρόσβασης" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7224,14 +7224,14 @@ msgstr "" msgid "Edit event" msgstr "Επεξεργασία συμβάντος" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Σφάλμα στην προώθηση αιτημάτος" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Λεπτομέρειες" @@ -7244,7 +7244,7 @@ msgstr "Όνομα συμβάντος" msgid "Event type" msgstr "Τύπος συμβάντος" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Αλλαγή σε %s" @@ -7271,7 +7271,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Τέλος" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Προσδιορισμός" @@ -7280,12 +7280,12 @@ msgstr "Προσδιορισμός" msgid "On completion preserve" msgstr "Διατήρηση με την ολοκλήρωση" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "Προσδιοριστής" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "Ο οριστής πρέπει να είναι της μορφής «username@hostname»" @@ -7331,7 +7331,7 @@ msgid "Returns" msgstr "Επιστροφές" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Χρόνος" @@ -7351,7 +7351,7 @@ msgstr "" "επέκταση «mysqli» για να αποφύγετε προβλήματα." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Μη έγκυρος τύπος ρουτίνας: «%s»" @@ -7370,69 +7370,69 @@ msgstr "Η ρουτίνα %1$s έχει αλλαχτεί." msgid "Routine %1$s has been created." msgstr "Η ρουτίνα %1$s έχει δημιουργηθεί." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Επεξεργασία ρουτίνας" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Όνομα ρουτίνας" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Παράμετροι" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Κατεύθυνση" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Μήκος/Τιμές*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Προσθήκη παραμέτρου" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Μετακίνηση τελευταίας παραμέτρου" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Τύπος επιστροφής" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Επιστροφή μήκους/τιμών" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Επιλογές επιστροφής" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "Είναι προσδιοριστικό" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Τύπος ασφάλειας" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "Πρόσβαση δεδομένων SQL" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "Πρέπει να δώσετε ένα όνομα στη ρουτίνα" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Εσφαλμένη κατεύθυνση «%s» δόθηκε για την παράμετρο." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7440,20 +7440,20 @@ msgstr "" "Πρέπει να δώσετε μήκος/τιμές για τις παραμέτρους της ρουτίνας του τύπου " "ENUM, SET, VARCHAR και VARBINARY." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" "Πρέπει να δώσετε ένα όνομα και ένα τύπο για κάθε παράμετρος της ρουτίνας." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "Πρέπει να δώσετε ένα έγκυρο τύπο επιστροφής για τη ρουτίνα." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "Πρέπει να δώσετε ένα προσδιορισμό ρουτίνας." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7461,22 +7461,22 @@ msgstr[0] "%d εγγραφή επηρεάστηκε από την τελευτα msgstr[1] "" "%d εγγραφές επηρεάστηκαν από την τελευταία δήλωση μέσα στη διαδικασία" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Αποτελέσματα εκτέλεσης της ρουτίνας %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Εκτέλεση ρουτίνας" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Παράμετροι ρουτίνας" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Συνάρτηση" @@ -7604,7 +7604,7 @@ msgstr "Δεν υπάρχουν συμβάντα για εμφάνιση." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7613,7 +7613,7 @@ msgstr "Ο πίνακας «%s» δεν υπάρχει!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7621,9 +7621,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Παρακαλώ ορίστε τις συντεταγμένες για τον πίνακα %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Σχήμα της βάσης δεδομένων %s - Σελίδα %s" @@ -7636,105 +7636,105 @@ msgstr "Αυτή η σελίδα δεν περιέχει κανένα πίνακ msgid "SCHEMA ERROR: " msgstr "ΣΦΑΛΜΑ ΣΧΗΜΑΤΟΣ: " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Σχεσιακό σχήμα" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Πίνακας περιεχομένων" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Χαρακτηριστικά" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Πρόσθετα" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Δημιουργία νέας σελίδας" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Όνομα σελίδας" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Αυτόματη διάταξη με βάση το" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Εσωτερικές συσχετίσεις" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Παρακαλώ επιλέξτε σελίδα για επεξεργασία" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Επιλογή σελίδας" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Επιλογή Πινάκων" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Προβολή σχεσιακού σχήματος" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Επιλογή Τύπου Συσχέτισης Εξαγωγής" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Εμφάνιση πλέγματος" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Εμφάνιση χρωμάτων" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Εμφάνιση διαστάσεων πινάκων" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Εμφάνιση όλων των πινάκων με το ίδιο πλάτος;" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Μόνο ερφάνιση κλειδιών" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Οριζόντια διάταξη" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Κάθετη διάταξη" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Προσανατολισμός" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Μέγεθος χαρτιού" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7742,17 +7742,17 @@ msgstr "" "Η τρέχουσα σελίδα έχει αναφορές σε πίνακες που δεν υπάρχουν πια. Θέλετε να " "διαγραφές αυτές οι αναφορές;" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Εναλλαγή πίνακα σχεδιασμού" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Άγνωστη γλώσσα: %1$s." @@ -7825,11 +7825,11 @@ msgstr "Καθάρισμα" msgid "Columns" msgstr "Στήλες" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Αποθήκευση αυτού του ερωτήματος SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" @@ -8264,7 +8264,7 @@ msgstr "Έκδοση πρωτοκόλλου" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Χρήστης" @@ -8480,7 +8480,7 @@ msgstr "Όλα Μικρά/Μεγάλα" msgid "Toggle small/big" msgstr "Εναλλαγή μικρά/μεγάλα" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Εισαγωγή/Εξαγωγή συντεταγμένων για σχέδιο PDF" @@ -8552,39 +8552,39 @@ msgstr "" "εμφανιζόμενη στήλη, πατήστε το εικονίδιο «Επιλογή στήλης για προβολή» και " "μετά πατήστε το κατάλληλο όνομα στήλης." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Η σελίδα δημιουργήθηκε" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Η δημιουργία σελίδας απέτυχε" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Σελίδα" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Εισαγωγή από επιλεγμένη σελίδα" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Εξαγωγή σε επιλεγμένη σελίδα" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Δημιουργία μιας σελίδας και εξαγωγή σε αυτή" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Νέο όνομα σελίδα: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Εξαγωγή/Εισαγωγή σε κλίμακα" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "προτείνεται" @@ -8697,12 +8697,12 @@ msgstr "Εισαγωγή αρχείων" msgid "All" msgstr "Όλα" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Ο πίνακας %s δεν βρέθηκε ή δεν ορίστηκε στη %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Το αρχείο δεν υπάρχει" @@ -8714,13 +8714,13 @@ msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για msgid "Files" msgstr "Αρχεία" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Αποκοπή εμφανιζόμενων ερωτημάτων" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Πλήρης εμφάνιση ερωτημάτων" @@ -9563,8 +9563,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Ερωτήσεις από την εκκίνηση: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "ανά ώρα" @@ -9585,17 +9585,17 @@ msgstr "Δηλώσεις" msgid "#" msgstr "#" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Κυκλοφορία δικτύου από την εκκίνηση: %s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9603,19 +9603,19 @@ msgstr "" "Αυτός ο διακομιστής λειτουργεί ως πρωτεύων και δευτερεύων σε " "μια αναπαραγωγική διαδικασία." -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" "Αυτός ο διακομιστής λειτουργεί ως πρωτεύων σε μια αναπαραγωγική διαδικασία." -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" "Αυτός ο διακομιστής έχει ρυθμιστεί ως πρωτεύων σε μια " "αναπαραγωγική διαδικασία." -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9623,11 +9623,11 @@ msgstr "" "Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο διακομιστή, " "επισκεφτείτε τον τομέα αναπαραγωγής." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Κατάσταση αναπαραγωγής" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9636,35 +9636,35 @@ msgstr "" "έτσι αυτές οι στατιστικές όπως αναφέρονται από τον διακομιστή μπορεί να " "είναι εσφαλμένες." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Ελήφθησαν" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Εστάλησαν" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "μέγιστος αριθμός ταυτόχρονων συνδέσεων" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Αποτυχημένες προσπάθειες" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Ακυρωμένες συνδέσεις" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "Κωδικός" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Εντολή" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -9672,12 +9672,12 @@ msgstr "" "Ο αριθμός των συνδέσεων που διακόπηκαν επειδή ο πελάτης παρετήθηκε χωρίς να " "κλείσει σωστά τη σύνδεση." -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Ο αριθμός των αποτυχημένων προσπαθειών για σύνδεση στο διακομιστή MySQL." -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -9687,20 +9687,20 @@ msgstr "" "μνήμη καταγραφής που υπερβαίνει την τιμή binlog_cache_size και χρησιμοποιούν " "ένα προσωρινό αρχείο για αποθήκευση δηλώσεων από τη συναλλαγή." -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Ο αριθμός των συναλλαγών που χρησιμοποίησαν την προσωρινή δυαδική λανθάνουσα " "μνήμη καταγραφής." -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" "Ο αριθμός των προσπαθειών για σύνδεση (επιτυχημένων ή όχι) στο διακομιστή " "MySQL." -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9712,11 +9712,11 @@ msgstr "" "είναι μεγάλο, ίσως θέλετε να αυξήσετε την τιμή tmp_table_size ώστε οι " "προσωρινοί πίνακες να είναι στη μνήμη και όχι στο δίσκο." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Πόσα προσωρινά αρχεία δημιούργησε το mysqld." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9724,7 +9724,7 @@ msgstr "" "Ο αριθμός των προσωρινών πινάκων στη μνήμη που δημιουργήθηκαν αυτόματα από " "τον διακομιστή κατά την εκτέλεσε δηλώσεων." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9732,7 +9732,7 @@ msgstr "" "Ο αριθμός των εγεγγραμμένων γραμμών με την εντολή INSERT DELAYED για τις " "οποίες υπήρξε κάποιο σφάλμα (πιθανόν διπλό κλειδί)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9741,23 +9741,23 @@ msgstr "" "διαφορετικός πίνακας στον οποίο κάποιος χρησιμοποιεί την εντολή INSERT " "DELAYED χρησιμοποιεί της δική του διεργασία." -#: server_status.php:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Ο αριθμός των INSERT DELAYED γραμμών που εγγράφτηκαν." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Ο αριθμός των εκτελεσθέντων δηλώσεων FLUSH." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων COMMIT." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Οι φορές που διαγράφτηκε μια γραμμή από έναν πίνακα." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -9768,7 +9768,7 @@ msgstr "" "ανακάλυψη. Το Handler_discover δείχνει τον αριθμό των πινάκων χρόνου που " "βρέθηκαν." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9779,7 +9779,7 @@ msgstr "" "ευρετηρίου. Παράδειγμα: SELECT col1 FROM foo, υποθέτοντας ότι το col1 έχει " "ευρετήριο." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -9788,7 +9788,7 @@ msgstr "" "είναι υψηλός, είναι ένας καλός δείκτης ότι τα ερωτήματά σας και οι πίνακές " "σας έχουν κάνει σωστά ευρετήρια." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9798,7 +9798,7 @@ msgstr "" "κλειδιού. Αυτό αυξάνετε αν κάνετε ερώτημα σε μια στήλη ευρετηρίου με ένα " "περιορισμό ευρετηρίου ή αν κάνετε μια σάρωση ευρετηρίου." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9807,7 +9807,7 @@ msgstr "" "η μέθοδος ανάγνωσης χρησιμοποιείτε κυρίως για βελτιστοποίηση της εντολής " "ORDER BY ... DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9820,7 +9820,7 @@ msgstr "" "σαρώνει ολόκληρους πίνακες ή έχετε ενώσεις που δεν χρησιμοποιούν σωστά τα " "κλειδιά." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9832,37 +9832,37 @@ msgstr "" "ότι οι πίνακες σας δεν έχουν σωστά ευρετήρια ή ότι τα ερωτήματά σας δεν " "έχουν γραφτεί ώστε να λαμβάνουν υπόψη τα ευρετήρια που έχετε." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Ο αριθμός των εσωτερικών δηλώσεων ROLLBACK." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Ο αριθμός των αιτήσεων για ενημέρωση μιας γραμμής σε έναν πίνακα." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Ο αριθμός των αιτήσεων για εισαγωγή μιας γραμμής σε έναν πίνακα." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Ο αριθμός των σελίδων που περιέχουν δεδομένα (καθαρά και μη)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Ο αριθμός των μη καθαρώ σελίδων." -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Ο αριθμός των σελίδων του buffer pool για τις οποίες υπήρξε αίτηση για " "εκκαθάριση." -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Ο αριθμός των ελεύθερων σελίδων." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9872,7 +9872,7 @@ msgstr "" "σελίδες που έχουν ήδη αναγνωστεί ή εγγραφεί ή που δεν μπορούν να " "εκκαθαριστούν ή απομακρυνθούν για κάποιο άλλο λόγο." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9884,11 +9884,11 @@ msgstr "" "τιμή μπορεί να υπολογιστεί ως Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Συνολικό μέγεθος του buffer pool, σε σελίδες." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9897,7 +9897,7 @@ msgstr "" "συμβαίνει όταν ένα ερώτημα πρόκειται να σαρώσει ένα μεγάλο τμήμα πίνακα αλλά " "με τυχαία σειρά." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9905,11 +9905,11 @@ msgstr "" "Ο αριθμός των διαδοχικών αναγνώσεων κεφαλίδων της InnoDB που ξεκίνησαν. Αυτό " "συμβείναι όταν η InnoDB εκτελεί μια διαδοχική πλήρη σάρωση πίνακα." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Ο αριθμός των λογικών αιτήσεων ανάγνωσης που έκαν η InnoDB." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9917,7 +9917,7 @@ msgstr "" "Ο αριθμός των λογικών αναγνώσεων που η InnoDB δεν μπόρεσε να ικανοποιήσει " "από το buffer pool και έπρεπε να κάνει ανάγνωση μονής σελίδας." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -9932,55 +9932,55 @@ msgstr "" "αναμονών. Αν το μέγεθος του buffer pool έχει οριστεί σωστά, αυτή η τιμή " "πρέπει να είναι μικρή." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Ο αριθμός των εγγραφών που έγιναν στο buffer pool της InnoDB." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Ο αριθμός των λειτουργιών του fsync() μέχρι στιγμής." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Ο τρέχων αριθμός των εκκρεμών λειτουργιών του fsync()." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Ο τρέχων αριθμός των εκκρεμών αναγνώσεων." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Ο τρέχων αριθμός των εκκρεμών εγγραφών." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Το πλήθος των δεδομένων που αναγνώστηκε μέχρι στιγμής σε bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Ο συνολικός αριθμός των αναγνώσεων δεδομένων." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Ο συνολικός αριθμός των εγγραφών δεδομένων." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Το πλήθος των εγεγγραμμένων δεδομένων μέχρι στιγμής, σε bytes." -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" "Ο αριθμός των εγγραφών διπλοεγγραφής που έγιναν και ο αριθμός των σελίδων " "που γράφτηκαν για αυτό το σκοπό." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -9988,36 +9988,36 @@ msgstr "" "Ο αριθμός των αναμονών που έγιναν εξαιτίας του μικρού μεγέθος του buffer " "καταγραφής και έπρεπε να αναμένεται να εκκαθαριστεί πριν συνεχίσει." -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Ο αριθμός των αιτήσεων εγγραφής καταγραφής." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Ο αριθμός των φυσικών εγγραφών στο αρχείο καταγραφής." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" "Ο αριθμός των εγγραφών fsync() που ολοκληρώθηκαν στο αρχείο καταγραφής." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Ο αριθμός των εκκρεμών fsyncs στο αρχείο καταγραφής." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Εκκρεμείς εγγραφές αρχείου καταγραφής." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Ο αριθμός των εγεγγραμμένων bytes στο αρχείο καταγραφής." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Ο αριθμός των δημιουργηθέντων σελίδων." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10026,55 +10026,55 @@ msgstr "" "υπολογίζονται σε σελίδες. Το μέγεθος της σελίδας επιτρέπει την εύκολη " "μετατροπή σε bytes." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Ο αριθμός των αναγνωσμένων σελίδων." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Ο αριθμός των εγεγγραμμένων σελίδων." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Ο αριθμός των κλειδωμάτων γραμμής που είναι τώρα σε αναμονή." -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Ο μέσος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" "Ο συνολικός απαιτούμενος χρόνος απόκτησης κλειδώματος γραμμής σε " "χιλιοστοδευτερόλεπτα." -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" "Ο μέγιστος χρόνος απόκτησης ενός κλειδώματος γραμμής σε χιλιοστοδευτερόλεπτα." -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "Οι φορές που πρέπει να αναμένεται ένα κλείδωμα γραμμής." -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Ο αριθμός των διαγραμμένων γραμμών από πίνακες InnoDB." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Ο αριθμός των εισαχθέντων γραμμών σε πίνακες InnoDB." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Ο αριθμός των αναγνωσμένων γραμμών από πίνακες InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Ο αριθμός των ενημερωμένων γραμμών σε πίνακες InnoDB." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10083,7 +10083,7 @@ msgstr "" "αλλά δεν έχει ακόμα εκκαθαριστεί στο δίσκο. Ήταν γνωστός ως " "Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10092,7 +10092,7 @@ msgstr "" "Μπορείτε να χρησιμοποιήσετε αυτή τη τιμή για να προσδιορίσετε πόση " "λανθάνουσα μνήμη κλειδιού χρησιμοποιείται." -#: server_status.php:1257 +#: server_status.php:1258 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 " @@ -10102,12 +10102,12 @@ msgstr "" "τιμή είναι ένα έντονο σημάδι που δείχνει τον μέγιστο αριθμό μπλοκς που είναι " "σε χρήση με μια φορά." -#: server_status.php:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" "Ο αριθμός των αιτήσεων ανάγνωσης ενός μπλοκ κλειδιού από τη λανθάνουσα μνήμη." -#: server_status.php:1259 +#: server_status.php:1260 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 " @@ -10118,16 +10118,16 @@ msgstr "" "μικρή. Ο βαθμό απώλειας λανθάνουσας μνήμης μπορεί να υπολογιστεί ως " "Key_reads/Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" "Ο αριθμός των αιτήσεων εγγραφής ενός μπλοκ κλειδιού στη λανθάνουσα μνήμη." -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "Ο αριθμός των φυσικών εγγραφών ενός κλειδιού στο δίσκο." -#: server_status.php:1262 +#: server_status.php:1263 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 " @@ -10138,7 +10138,7 @@ msgstr "" "διαφορετικών σχεδίων ερωτημάτων για το ίδιο ερώτημα. Η προεπιλεγμένη τιμή 0 " "σημαίνει ότι κανένα ερώτημα δεν μεταφράστηκε ακόμα." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10146,12 +10146,12 @@ msgstr "" "Ο μέγιστος αριθμός συνδέσεων που ήταν σε σύνδεση ταυτόχρονα από την εκκίνηση " "του διακομιστή." -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Ο αριθμός των γραμμών σε αναμονή για εγγραφή στις σειρές INSERT DELAYED." -#: server_status.php:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10159,21 +10159,21 @@ msgstr "" "Ο αριθμός των πινάκων που ανοίχτηκαν. Αν οι ανοιγμένοι πίνακες είναι " "μεγάλοι, η τιμή λανθάνουσας μνήμης πινάκων είναι πιθανον μικρή." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Ο αριθμός των αρχείων που είναι ανοιχτά." -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Ο αριθμός των ροών που είναι ανοιχτές (χρησιμοποιούνται κυρίως για " "καταγραφή)." -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Ο αριθμός των πινάκων που είναι ανοιχτοί." -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -10183,19 +10183,19 @@ msgstr "" "ίσως κρύβουν θέματα συγκρότησης, που μπορούν να διορθωθούν χρησιμοποιώντας " "την εντολή FLUSH QUERY CACHE." -#: server_status.php:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Το μέγεθος της ελεύθερης μνήμης για λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Ο αριθμός των προσπελάσεων λανθάνουσας μνήμης." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Ο αριθμός των ερωτημάτων που προστέθηκαν στην λανθάνουσα μνήμη." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10209,7 +10209,7 @@ msgstr "" "χρησιμοποιούμενη στρατηγική (LRU) για να αποφασίσει ποια ερωτήματα να " "απομακρύνει από τη λανθάνουσα μνήμη." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10217,19 +10217,19 @@ msgstr "" "Ο αριθμός των μη λανθανόντων ερωτημάτων (μη απομνημονεύσιμα ή δεν " "απομνημονεύονται λόγω της ρύθμισης query_cache_type)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Ο αριθμός των καταχωρημένων ερωτημάτων στη λανθάνουσα μνήμη." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Ο συνολικός αριθμός των μπλοκς στη λανθάνουσα μνήμη ερωτημάτων." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Η κατάσταση της ασφαλούς αναπαραγωγής (δεν έχει εφαρμοστεί)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10237,13 +10237,13 @@ msgstr "" "Ο αριθμός των ενώσεων που δεν χρησιμοποιούν ευρετήρια. Αν η τιμή είναι 0, " "πρέπει να ελέγχετε προσεκτικά τα ευρετήρια των πινάκων σας." -#: server_status.php:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιήσαν μια αναζήτηση εύρους σε έναν πίνακα " "παραπομπής." -#: server_status.php:1280 +#: server_status.php:1281 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.)" @@ -10252,7 +10252,7 @@ msgstr "" "κάθε γραμμή. (Αν αυτό δεν είναι 0, πρέπει να ελέγχετε προσεκτικά τα " "ευρετήρια των πινάκων σας.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10260,17 +10260,17 @@ msgstr "" "Ο αριθμός των ενώσεων που χρησιμοποιούν εύρη στον πρώτο πίνακα. (Κανονικά " "δεν είναι κρίσιμος αν δεν είναι μεγάλος.)" -#: server_status.php:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "Ο αριθμός των ενώσεων που έκαναν μια πλήρη σάρωση του πρώτου πίνακα." -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ο αριθμός των προσωρινών πινάκων που είναι τώρα ανοιχτοί από τη δευτερεύουσα " "συνεργασία SQL." -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10278,13 +10278,13 @@ msgstr "" "Συνολικές φορές (από την εκκίνηση) που η διεργασία δευτερεύουσας " "αναπαραγωγής SQL έχει ξαναδοκιμάσει συναλλαγές." -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Αυτό είναι ΑΝΟΙΧΤΟ, αν αυτός ο διακομιστής είναι δευτερεύων που συνδέεται σε " "πρωτεύωντα." -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10292,14 +10292,14 @@ msgstr "" "Ο αριθμός των διεργασιών που έλαβαν περισσότερα από slow_launch_time " "δευτερόλεπτα να δημιουργηθούν." -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Ο αριθμός των ερωτημάτων που έλαβαν περισσότερα από long_query_time " "δευτερόλεπτα." -#: server_status.php:1288 +#: server_status.php:1289 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 " @@ -10309,23 +10309,23 @@ msgstr "" "ταξινόμησης. Αν ο αριθμός είναι μεγάλος, πρέπει να αυξήσετε την τιμή της " "μεταβλητής συστήματος sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν με εύρη." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Ο αριθμός των ταξινομημένων γραμμών." -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "Ο αριθμός των ταξινομήσεων που έγιναν σαρώνοντας τον πίνακα." -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "Οι φορές που ένα κλείδωμα πινακα ανακτήθηκε άμεσα." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10337,7 +10337,7 @@ msgstr "" "απόδοσης, πρέπει πρώτα να βελτιώσετε τα ερωτήματά σας και μετά χωρίστε τον " "πίνακα ή τους πίνακες ή χρησιμοποιείστε αναπαραγωγή." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10347,11 +10347,11 @@ msgstr "" "λανθάνουσας μνήμης μπορεί να υπολογιστεί ως Threads_created/Connections. Αν " "η τιμή είναι κόκκινη πρέπει να αυξήσετε την τιμή thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Ο αριθμός των τρέχοντων ανοιγμένων συνδέσεων." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10363,63 +10363,63 @@ msgstr "" "thread_cache_size. (Κανονικά αυτό δεν δίνει μια σημαντική βελτίωση απόδοσης " "αν έχετε μια καλή εφαρμογή διεργασίας.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Ο αριθμός των διεργασιών που δεν είναι σε νάρκη." -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "Έναρξη Εποπτείας" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "Οδηγίες/Εγκατάσταση" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "Ολοκληρώθηκε η επανατοποθέτηση/επεξεργασία διαγραμμάτων" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "Προσθήκη διαγράμματος" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "Επανατοποθέτηση/επεξεργασία διαγραμμάτων" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Ρυθμός ανανέωσης" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Chart columns:" msgid "Chart columns" msgstr "Στήλες διαγράμματος:" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Διαχείριση σφάλματος:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Επαναφορά προεπιλεγμένης τιμής" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "Οδηγίες Εποπτείας" -#: server_status.php:1489 +#: server_status.php:1490 #, fuzzy #| msgid "" #| "The phpMyAdmin Monitor can assist you in optimizing the server " @@ -10444,7 +10444,7 @@ msgstr "" " general_log παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του " "διακομιστή μέχρι και 15%" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10452,13 +10452,13 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Παύση εποπτείας" -#: server_status.php:1509 +#: server_status.php:1510 #, fuzzy #| msgid "" #| "Using the monitor:
\n" @@ -10492,7 +10492,7 @@ msgstr "" "βρείτε τι προκάλεσε αυτή\n" " την έντονη δραστηριότητα.

" -#: server_status.php:1511 +#: server_status.php:1512 #, fuzzy #| msgid "" #| "Using the monitor:
\n" @@ -10526,11 +10526,11 @@ msgstr "" "βρείτε τι προκάλεσε αυτή\n" " την έντονη δραστηριότητα.

" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 #, fuzzy #| msgid "" #| "Please note:\n" @@ -11138,12 +11138,12 @@ msgstr "Εμφάνιση ερωτήματος SQL" msgid "Validated SQL" msgstr "Επικυρωμένη SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Ετικέτα" diff --git a/po/en_GB.po b/po/en_GB.po index 6fcabee95e..2b1abcb7f0 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-04 21:47+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" @@ -21,10 +21,10 @@ msgstr "Show all" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Page number:" @@ -39,8 +39,8 @@ msgstr "" "cross-window updates." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Search" @@ -48,25 +48,25 @@ msgstr "Search" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Description" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Use this value" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "No blob streaming server configured!" @@ -128,7 +128,7 @@ msgstr "Database %1$s has been created." msgid "Database comment: " msgstr "Database comment: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Table comments" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Column" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Type" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Default" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Links to" @@ -196,8 +196,8 @@ msgstr "Links to" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Comments" @@ -208,7 +208,7 @@ msgstr "Comments" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "No" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Edit or export relational schema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "in use" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Creation" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Last update" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Last check" @@ -497,7 +497,7 @@ msgstr "Submit Query" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Access denied" @@ -531,7 +531,7 @@ msgstr[0] "%s match inside table %s" msgstr[1] "%s matches inside table %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Browse" @@ -543,10 +543,10 @@ msgstr "Delete the matches for the %s table?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -664,12 +664,12 @@ msgstr "Uncheck All" msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Export" @@ -679,13 +679,13 @@ msgstr "Export" msgid "Print view" msgstr "Print view" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Empty" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -719,7 +719,7 @@ msgstr "Replace table prefix" msgid "Copy table with prefix" msgstr "Copy table with prefix" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -734,7 +734,7 @@ msgstr "Tracked tables" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -754,7 +754,7 @@ msgstr "Updated" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -858,14 +858,14 @@ msgstr "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "File could not be read" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -896,7 +896,7 @@ msgstr "The bookmark has been deleted." msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" @@ -923,7 +923,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1037,9 +1037,9 @@ msgstr "Close" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Edit" @@ -1062,13 +1062,13 @@ msgstr "Static data" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Other" @@ -1098,7 +1098,7 @@ msgstr "Server traffic (in KiB)" msgid "Connections since last refresh" msgstr "Connections since last refresh" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Processes" @@ -1123,7 +1123,7 @@ msgstr "Query statistics" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Failed to read configuration file" #: js/messages.php:94 @@ -1222,7 +1222,7 @@ msgstr "Bytes sent" msgid "Bytes received" msgstr "Bytes received" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Connections" @@ -1231,12 +1231,12 @@ msgstr "Connections" msgid "Questions" msgstr "Questions" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Traffic" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Settings" @@ -1259,7 +1259,7 @@ msgstr "Please add at least one variable to the series" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "None" @@ -1482,7 +1482,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" @@ -1656,7 +1656,7 @@ msgid "Query execution time" msgstr "Query execution time" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2080,24 +2080,24 @@ msgstr "Minute" msgid "Second" msgstr "Second" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Font size" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "File was not an uploaded file." -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "Unknown error while uploading." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2105,27 +2105,27 @@ msgstr "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "The uploaded file was only partially uploaded." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Missing a temporary folder." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Failed to write file to disk." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "File upload stopped by extension." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Unknown error in file upload." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2133,11 +2133,11 @@ msgstr "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "Error while moving uploaded file." -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "Cannot read (moved) upload file." @@ -2165,7 +2165,7 @@ msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Comment" @@ -2188,14 +2188,14 @@ msgstr "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Databases" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2296,16 +2296,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "No preview available." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "take it" @@ -2319,12 +2319,12 @@ msgstr "Default theme %s not found!" msgid "Theme %s not found!" msgstr "Theme %s not found!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Theme" @@ -2333,7 +2333,7 @@ msgid "Cannot connect: invalid settings." msgstr "Cannot connect: invalid settings." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Welcome to %s" @@ -2359,57 +2359,57 @@ msgstr "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Log in" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin documentation" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "You can enter hostname/IP address and port separated by space." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Username:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Password:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Server Choice" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Login without a password is forbidden by configuration (see AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Cannot log in to the MySQL server" @@ -2440,41 +2440,41 @@ msgstr "No valid authentication key plugged" msgid "Authenticating..." msgstr "Authenticating..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS error" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS connection failed:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS get BLOB info failed:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "get BLOB Content-Type failed" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "View image" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Play audio" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "View video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Download file" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Could not open file: %s" @@ -2613,7 +2613,7 @@ msgid "Documentation" msgstr "Documentation" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL query" @@ -2623,7 +2623,7 @@ msgstr "SQL query" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2672,7 +2672,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profiling" @@ -2771,7 +2771,7 @@ msgid "Click to toggle" msgstr "Click to toggle" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2791,8 +2791,8 @@ msgstr "Structure" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insert" @@ -2803,25 +2803,25 @@ msgstr "Insert" msgid "Operations" msgstr "Operations" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Browse your computer:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Select from the web server upload directory %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "There are no files to upload" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Execute" @@ -2986,7 +2986,7 @@ msgid "Allow users to customize this value" msgstr "Allow users to customise this value" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Reset" @@ -5299,8 +5299,8 @@ msgstr "Create table on database %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5609,7 +5609,7 @@ msgstr "Sort by key" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Options" @@ -5669,7 +5669,7 @@ msgid "The row has been deleted" msgstr "The row has been deleted" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Kill" @@ -6257,7 +6257,7 @@ msgstr "Display MIME types" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6485,7 +6485,7 @@ msgstr "SQL result" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." @@ -6590,7 +6590,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Table name" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Column names" @@ -6948,7 +6948,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Re-login to phpMyAdmin to load the updated configuration file." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "no description" @@ -6985,14 +6985,14 @@ msgid "Slave status" msgstr "Slave status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Value" @@ -7056,7 +7056,7 @@ msgstr "Generate Password" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7091,14 +7091,14 @@ msgstr "One or more errors have occurred while processing your request:" msgid "Edit event" msgstr "Edit event" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Error in processing request" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Details" @@ -7111,7 +7111,7 @@ msgstr "Event name" msgid "Event type" msgstr "Event type" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Change to %s" @@ -7138,7 +7138,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "End" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Definition" @@ -7147,12 +7147,12 @@ msgstr "Definition" msgid "On completion preserve" msgstr "On completion preserve" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "Definer" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "The definer must be in the \"username@hostname\" format" @@ -7198,7 +7198,7 @@ msgid "Returns" msgstr "Returns" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Time" @@ -7217,7 +7217,7 @@ msgstr "" "b> Please use the improved 'mysqli' extension to avoid any problems." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Invalid routine type: \"%s\"" @@ -7236,69 +7236,69 @@ msgstr "Routine %1$s has been modified." msgid "Routine %1$s has been created." msgstr "Routine %1$s has been created." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Edit routine" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Routine name" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Parameters" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Direction" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Length/Values" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Add parameter" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Remove last parameter" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Return type" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Return length/values" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Return options" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "Is deterministic" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Security type" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "SQL data access" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "You must provide a routine name" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Invalid direction \"%s\" given for parameter." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7306,41 +7306,41 @@ msgstr "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "You must provide a name and a type for each routine parameter." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "You must provide a valid return type for the routine.." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "You must provide a routine definition." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d row affected by the last statement inside the procedure" msgstr[1] "%d rows affected by the last statement inside the procedure" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Execution results of routine %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Execute routine" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Routine parameters" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Function" @@ -7467,7 +7467,7 @@ msgstr "There are no events to display." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7476,7 +7476,7 @@ msgstr "The %s table doesn't exist!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7484,9 +7484,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schema of the %s database - Page %s" @@ -7499,105 +7499,105 @@ msgstr "This page does not contain any tables!" msgid "SCHEMA ERROR: " msgstr "SCHEMA ERROR: " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relational schema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Table of contents" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Attributes" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Create a page" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Page name" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Automatic layout based on" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Internal relations" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Please choose a page to edit" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Select page" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Select Tables" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Display relational schema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Select Export Relational Type" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Show grid" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Show colour" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Show dimension of tables" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Display all tables with the same width" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Only show keys" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Landscape" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portrait" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Orientation" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Paper size" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7605,17 +7605,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Unknown language: %1$s." @@ -7688,11 +7688,11 @@ msgstr "Clear" msgid "Columns" msgstr "Columns" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -8122,7 +8122,7 @@ msgstr "Protocol version" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "User" @@ -8333,7 +8333,7 @@ msgstr "Small/Big All" msgid "Toggle small/big" msgstr "Toggle small/big" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export coordinates for PDF schema" @@ -8405,39 +8405,39 @@ msgstr "" "column, click the \"Choose column to display\" icon, then click on the " "appropriate column name." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Page has been created" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Page creation failed" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Page" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Import from selected page" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Export to selected page" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Create a page and export to it" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "New page name: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Export/Import to scale" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "recommended" @@ -8546,12 +8546,12 @@ msgstr "Import files" msgid "All" msgstr "All" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "File doesn't exist" @@ -8563,13 +8563,13 @@ msgstr "Select binary log to view" msgid "Files" msgstr "Files" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -9390,8 +9390,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Questions since startup: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "per hour" @@ -9412,17 +9412,17 @@ msgstr "Statements" msgid "#" msgstr "#" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Network traffic since startup: %s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9430,16 +9430,16 @@ msgstr "" "This MySQL server works as master and slave in replication process." -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" "This MySQL server works as master in replication process." -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "This MySQL server works as slave in replication process." -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9447,11 +9447,11 @@ msgstr "" "For further information about replication status on the server, please visit " "the replication section." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Replication status" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9459,35 +9459,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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Received" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Sent" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Failed attempts" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Aborted" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Command" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -9495,11 +9495,11 @@ msgstr "" "The number of connections that were aborted because the client died without " "closing the connection properly." -#: server_status.php:1189 +#: server_status.php:1190 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:1190 +#: server_status.php:1191 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 " @@ -9509,18 +9509,18 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 -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:1193 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:1194 +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-" @@ -9531,79 +9531,79 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:1195 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - #: server_status.php:1196 msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." #: server_status.php:1197 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:1198 +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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 -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 "" -"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." - #: server_status.php:1203 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 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 "" -"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 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." #: server_status.php:1204 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:1205 +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 "" "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:1205 +#: server_status.php:1206 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 " @@ -9613,7 +9613,7 @@ msgstr "" "incremented if you are querying an index column with a range constraint or " "if you are doing an index scan." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9621,20 +9621,20 @@ 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:1207 -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:1208 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:1209 +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 " @@ -9645,47 +9645,47 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "The number of free pages." -#: server_status.php:1216 -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:1217 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:1218 +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 - " @@ -9696,40 +9696,40 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:1219 -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:1220 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:1221 +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:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:1222 -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:1223 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:1224 +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 " @@ -9742,51 +9742,51 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -9794,35 +9794,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9830,68 +9830,68 @@ 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:1255 -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 "" -"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:1256 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 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 "" -"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 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:1257 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:1258 +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." @@ -9900,11 +9900,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -9914,15 +9914,15 @@ msgstr "" "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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -9932,7 +9932,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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -9940,11 +9940,11 @@ msgstr "" "The maximum number of connections that have been in use simultaneously since " "the server started." -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9952,19 +9952,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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -9974,51 +9974,51 @@ msgstr "" "fragmentation issues, which may be solved by issuing a FLUSH QUERY CACHE " "statement." -#: server_status.php:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:1273 -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:1274 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:1275 +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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10026,35 +10026,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:1279 +#: server_status.php:1280 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:1280 -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:1281 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:1282 +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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10062,26 +10062,26 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." - #: server_status.php:1287 msgid "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." msgstr "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." #: server_status.php:1288 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:1289 +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." @@ -10090,23 +10090,23 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10118,7 +10118,7 @@ msgstr "" "should first optimise your queries, and then either split your table or " "tables or use replication." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10128,11 +10128,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10144,63 +10144,63 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "Start Monitor" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "Instructions/Setup" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "Done rearranging/editing charts" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "Add chart" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "Rearrange/edit charts" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Refresh rate" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Chart columns:" msgid "Chart columns" msgstr "Chart columns:" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Error management:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Restore default value" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "Monitor Instructions" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10216,7 +10216,7 @@ msgstr "" " general_log produces a lot of data and increases server load by up " "to 15%" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10224,13 +10224,13 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Pause monitor" -#: server_status.php:1509 +#: server_status.php:1510 #, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " @@ -10259,7 +10259,7 @@ msgstr "" "statistics from the logs helping you find what caused the\n" " activity spike.

" -#: server_status.php:1511 +#: server_status.php:1512 #, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " @@ -10288,11 +10288,11 @@ msgstr "" "statistics from the logs helping you find what caused the\n" " activity spike.

" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 #, fuzzy #| msgid "" #| "Please note: Enabling the general_log may increase the server load " @@ -10874,12 +10874,12 @@ msgstr "Showing SQL query" msgid "Validated SQL" msgstr "Validated SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Label" diff --git a/po/es.po b/po/es.po index ba4b090bec..f163effbdb 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-16 00:04+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" @@ -21,10 +21,10 @@ msgstr "Mostrar todo" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Número de página:" @@ -39,8 +39,8 @@ msgstr "" "múltiples debido a sus parámetros de seguridad." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Buscar" @@ -48,25 +48,25 @@ msgstr "Buscar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Nombre de la clave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Descripción" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Use este valor" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "El servidor de streaming blob no está configurado" @@ -128,7 +128,7 @@ msgstr "La base de datos %1$s ha sido creada." msgid "Database comment: " msgstr "Comentario de la base de datos: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Comentarios de la tabla" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Columna" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Tipo" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Nulo" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Predeterminado" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Enlaces a" @@ -196,8 +196,8 @@ msgstr "Enlaces a" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Comentarios" @@ -208,7 +208,7 @@ msgstr "Comentarios" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "No" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Editar o exportar esquema relacional" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "en uso" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Creación" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Última actualización" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Última revisión" @@ -498,7 +498,7 @@ msgstr "Ejecutar la consulta" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Acceso denegado" @@ -534,7 +534,7 @@ msgstr[0] "%s resultado en la tabla %s" msgstr[1] "%s resultados en la tabla %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Examinar" @@ -546,10 +546,10 @@ msgstr "¿Eliminar las coincidencias para la tabla %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -668,12 +668,12 @@ msgstr "Desmarcar todos" msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportar" @@ -683,13 +683,13 @@ msgstr "Exportar" msgid "Print view" msgstr "Vista de impresión" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Vaciar" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -723,7 +723,7 @@ msgstr "Reemplazar prefijo de la tabla" msgid "Copy table with prefix" msgstr "Copiar tabla con prefijo" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Diccionario de datos" @@ -738,7 +738,7 @@ msgstr "Tablas con seguimiento" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -758,7 +758,7 @@ msgstr "Actualizado" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Estado actual" @@ -864,14 +864,14 @@ msgstr "" "refiérase a %sla documentation%s para hallar modos de superar esta " "limitación." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "No fue posible leer el archivo" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -905,7 +905,7 @@ msgstr "El favorito ha sido borrado." msgid "Showing bookmark" msgstr "Mostrando el favorito" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "El favorito %s fue creado" @@ -933,7 +933,7 @@ msgstr "" "importación a menos que usted incremente el tiempo de ejecución de php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1049,9 +1049,9 @@ msgstr "Cerrar" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Editar" @@ -1074,13 +1074,13 @@ msgstr "Datos estáticos" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Otro" @@ -1110,7 +1110,7 @@ msgstr "Tráfico del servidor (en KiB)" msgid "Connections since last refresh" msgstr "Connexiones desde la última actualización" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Procesos" @@ -1133,8 +1133,9 @@ msgid "Query statistics" msgstr "Estadísticas de Consulta" #: js/messages.php:93 -#| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +#, fuzzy +#| msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Configuración de monitorización local incompatible" #: js/messages.php:94 @@ -1147,21 +1148,18 @@ msgstr "" "La configuración de distribución de gráficos en el almacenamiento local del " "navegador no es compatible con la nueva versión del sistema de " "monitorización. Es probable que la configuración no funcione. Porfavor, " -"reinicie la configuración a la predeterminada en el menú " -"Configuración." +"reinicie la configuración a la predeterminada en el menú Configuración." #: js/messages.php:96 -#| msgid "Query cache" msgid "Query cache efficiency" msgstr "Eficiencia del caché de consultas" #: js/messages.php:97 po/advisory_rules.php:70 -#| msgid "Query cache" msgid "Query cache usage" msgstr "Uso del caché de consultas" #: js/messages.php:98 -#| msgid "Query cache" msgid "Query cache used" msgstr "Caché de consultas utilizado" @@ -1235,7 +1233,7 @@ msgstr "Bytes enviados" msgid "Bytes received" msgstr "Bytes recibidos" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Conexiones" @@ -1244,13 +1242,13 @@ msgstr "Conexiones" msgid "Questions" msgstr "Preguntas" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Tráfico" # This is the text showed in the tab #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Configuración" @@ -1273,7 +1271,7 @@ msgstr "Por favor agregue al menos una variable a la serie" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Ninguna" @@ -1503,18 +1501,16 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importar" #: js/messages.php:192 -#| msgid "Update Query" msgid "Analyse Query" msgstr "Analizar consulta" #: js/messages.php:196 -#| msgid "Advisor" msgid "Advisor system" msgstr "Sistema de consejos" @@ -1527,17 +1523,14 @@ msgid "Issue" msgstr "Problema" #: js/messages.php:199 -#| msgid "Documentation" msgid "Recommendation" msgstr "Recomendación" #: js/messages.php:200 -#| msgid "Details" msgid "Rule details" msgstr "Detalles de la regla" #: js/messages.php:201 -#| msgid "Authentication" msgid "Justification" msgstr "Justificación" @@ -1673,7 +1666,7 @@ msgid "Query execution time" msgstr "Tiempo de ejecución de la consulta" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -1689,7 +1682,6 @@ msgid "Show search criteria" msgstr "Mostrar criterio de búsqueda" #: js/messages.php:262 libraries/tbl_select.lib.php:138 -#| msgid "Search" msgid "Zoom Search" msgstr "Ampliar búsqueda" @@ -1707,7 +1699,8 @@ msgstr "Arrastre y seleccione un área en el gráfico para ampliarla." #: js/messages.php:270 msgid "Click reset zoom link to come back to original state." -msgstr "Pulse el enlace de restaurar ampliación para volver al estado original." +msgstr "" +"Pulse el enlace de restaurar ampliación para volver al estado original." #: js/messages.php:272 msgid "Click a data point to view and possibly edit the data row." @@ -1724,7 +1717,6 @@ msgid "Strings are converted into integer for plotting" msgstr "Las cadenas son conventidas a enteros para graficarlas" #: js/messages.php:278 -#| msgid "Add/Delete columns" msgid "Select two columns" msgstr "Seleccionar dos columnas" @@ -1816,7 +1808,6 @@ msgstr "" "contenido." #: js/messages.php:307 -#| msgid "Go to view" msgid "Go to link" msgstr "Ir al enlace" @@ -2098,25 +2089,25 @@ msgstr "Minuto" msgid "Second" msgstr "Segundo" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Tamaño de fuente" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "El archivo no era un archivo subido." -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "Error desconocido durante subida." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2124,27 +2115,27 @@ msgstr "" "El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada " "en el formulario HTML." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "El archivo que intentó subir no alcanzó el 100%." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Falta una carpeta temporal." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "No fue posible grabar el archivo a disco." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "La subida del archivo fue detenida por extensión." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Error desconocido al subir el archivo." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2152,11 +2143,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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "Error al mover el archivo subido." -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "No se puede leer el archivo subido (y movido)." @@ -2184,7 +2175,7 @@ msgid "Cardinality" msgstr "Cardinalidad" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Comentario" @@ -2207,14 +2198,14 @@ msgstr "" "Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede eliminar " "uno." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Bases de datos" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2312,19 +2303,19 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Falló la limpieza de las preferencia de interfaz de tablas (ver " -"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" +"Falló la limpieza de las preferencia de interfaz de tablas (ver $cfg" +"['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "¡No se halló la ruta de imágenes para el tema %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "No existe una previsualización disponible." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "tómelo" @@ -2338,12 +2329,12 @@ msgstr "¡No se halló el tema predeterminado %s!" msgid "Theme %s not found!" msgstr "¡No se halló el tema %s!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "¡No se halló la ruta del tema %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2352,7 +2343,7 @@ msgid "Cannot connect: invalid settings." msgstr "No se estableció la conexión: los parámetros están incorrectos." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Bienvenido a %s" @@ -2378,45 +2369,45 @@ msgstr "" "config.inc.php y asegurarse que corresponden con la información provista por " "el administrador del servidor MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Iniciar sesión" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Documentación de phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Puede escribir el nombre del proveedor de servicios/dirección IP y el " "puerto, separado por un espacio." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Servidor:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Usuario:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Contraseña:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Elección del servidor" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Las cookies deben estar activadas." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2424,7 +2415,7 @@ msgstr "" "El inicio de sesión sin contraseña está prohibido por la configuración (ver " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2432,8 +2423,8 @@ msgstr "" "No ha habido actividad desde hace %s o más segundos, por favor reingrese al " "sitio" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "El servidor MySQL no autorizó su ingreso" @@ -2465,39 +2456,39 @@ msgstr "No se ha conectado una clave de autenticación válida" msgid "Authenticating..." msgstr "Autenticando..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "error PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "Falló la conexión PBMS:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "Fallo al obtener la información del BLOB PBMS:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "Fallo al obtener Content-Type del BLOB PBMS" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Ver imagen" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Tocar audio" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Ver vídeo" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Descargar archivo" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "No se pudo abrir el archivo: %s" @@ -2638,7 +2629,7 @@ msgid "Documentation" msgstr "Documentación" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "consulta SQL" @@ -2648,7 +2639,7 @@ msgstr "consulta SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2697,7 +2688,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "En línea" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Perfilando" @@ -2788,7 +2779,7 @@ msgid "Click to toggle" msgstr "Pulse para conmutar" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2808,8 +2799,8 @@ msgstr "Estructura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insertar" @@ -2820,27 +2811,27 @@ msgstr "Insertar" msgid "Operations" msgstr "Operaciones" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Buscar en su ordenador:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Seleccionar directorio en el servidor web para subir los archivos %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 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/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "No hay archivos para subir" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Ejecutar" @@ -3010,7 +3001,7 @@ msgid "Allow users to customize this value" msgstr "Permitir a los usuarios personalizar este valor" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Reiniciar" @@ -4539,7 +4530,6 @@ msgstr "" "eliminados" #: libraries/config/messages.inc.php:399 -#| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Número máximo de regustros almacenados en la tabla «table_uiprefs»" @@ -5384,8 +5374,8 @@ msgstr "Crear nueva tabla en la base de datos %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5697,7 +5687,7 @@ msgstr "Ordenar según la clave" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Opciones" @@ -5759,7 +5749,7 @@ msgid "The row has been deleted" msgstr "La fila se ha borrado" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Matar el proceso" @@ -6367,7 +6357,7 @@ msgstr "Tipos MIME disponibles" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Servidor" @@ -6595,7 +6585,7 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Generado por" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6701,7 +6691,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Nombre de la tabla" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Nombre de las columnas" @@ -7066,7 +7056,7 @@ msgstr "" "Inicie sesión en phpMyAdmin nuevamente para cargar el archivo de " "configuración actualizado." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "Sin descripción" @@ -7103,14 +7093,14 @@ msgid "Slave status" msgstr "Estado del esclavo" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valor" @@ -7174,7 +7164,7 @@ msgstr "Generar la contraseña" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7209,14 +7199,14 @@ msgstr "Ocurrieron uno o más errores al procesar el pedido:" msgid "Edit event" msgstr "Editar evento" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Error al procesar la petición" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Detalles" @@ -7229,7 +7219,7 @@ msgstr "Nombre del evento" msgid "Event type" msgstr "Tipo de evento" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Cambiar a %s" @@ -7252,7 +7242,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Definición" @@ -7261,12 +7251,12 @@ msgstr "Definición" msgid "On completion preserve" msgstr "Preservar al completar" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "Definidor" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "El definidor tiene que ser en el formato \"usuario@sistema\"" @@ -7312,7 +7302,7 @@ msgid "Returns" msgstr "Retorna" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Tiempo" @@ -7332,7 +7322,7 @@ msgstr "" "evitar problemas." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo de rutina inválido: \"%s\"" @@ -7351,69 +7341,69 @@ msgstr "Se modificó la rutina %1$s." msgid "Routine %1$s has been created." msgstr "Se creó la rutina %1$s." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Editar rutina" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Nombre de rutina" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Parámetros" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Dirección" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Longitud/Valores" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Agregar parámetro" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Eliminar último parámetro" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Retornar el tipo" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Retornar longitud/valores" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Retornar opciones" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "Es determinístico" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Tipo de seguridad" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "Acceso de datos SQL" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "Debe proveer un nombre de rutina" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Dirección \"%s\" inválida provista para el parámetro." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7421,41 +7411,41 @@ msgstr "" "Debe proveer longitud/valores para los parámetros de tipo ENUM, SET, VARCHAR " "y VARBINARY." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "Debe proveer un nombre y tipo para cada parámetro de rutina." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "Debe proveer un tipo de retorno válido para la rutina." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "Debe proveer una definición de rutina." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d fila afectada por la última sentencia del procedimiento" msgstr[1] "%d filas afectadas por la última sentencia del procedimiento" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Resultados de la ejecución de la rutina %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Ejecutar rutina" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Parámetros de rutina" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Función" @@ -7583,7 +7573,7 @@ msgstr "No existen eventos para mostrar." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7592,7 +7582,7 @@ msgstr "La tabla %s no existe" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7600,9 +7590,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Configure las coordenadas para la tabla %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Esquema de la base de datos %s - Página %s" @@ -7615,105 +7605,105 @@ msgstr "Esta página no contiene ninguna tabla" msgid "SCHEMA ERROR: " msgstr "ERROR DE ESQUEMA:" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Esquema relacionado" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Tabla de contenidos" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atributos" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Crear una nueva página" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Nombre de página" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Diseño automático basado en" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Relaciones internas" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "CLAVE FORÁNEA" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Elegir la página a editar" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Seleccionar página" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Seleccionar tablas" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Mostrar esquema relacional" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Seleccionar tipo de exportación relacional" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Mostrar la cuadrícula" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Mostrar color" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Mostrar la dimensión de las tablas" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Mostrar todas las tablas que tienen el mismo ancho" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Mostrar las llaves solamente" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Orientación horizontal" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Orientación vertical" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Orientación" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Tamaño del papel" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7721,17 +7711,17 @@ msgstr "" "La página actual tiene referencias a tablas que ya no existen. ¿Desea " "eliminar esas referencias?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "cambiar el estado del scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Idioma desconocido: %1$s." @@ -7804,11 +7794,11 @@ msgstr "Limpiar" msgid "Columns" msgstr "Columnas" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Guardar esta consulta en favoritos" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Permitir que todo usuario pueda acceder a este favorito" @@ -8048,7 +8038,6 @@ msgid "Operator" msgstr "Operador" #: libraries/tbl_select.lib.php:131 -#| msgid "Search" msgid "Table Search" msgstr "Búsqueda de tablas" @@ -8248,7 +8237,7 @@ msgstr "Versión del protocolo" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Usuario" @@ -8407,7 +8396,6 @@ msgid "No databases" msgstr "No hay bases de datos" #: navigation.php:270 -#| msgid "filter tables by name" msgid "Filter tables by name" msgstr "Filtrar tablas por nombre" @@ -8464,7 +8452,7 @@ msgstr "Pequeño/grande todos" msgid "Toggle small/big" msgstr "Alterne entre pequeño y grande" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para el esquema PDF" @@ -8538,39 +8526,39 @@ msgstr "" "columna para mostrar, pulse en el ícono \"Elegir la columna a mostrar\" y " "luego pulse en el nombre de columna apropiado." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Se creó la página" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Falló la creación de la página" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Página" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Importar de la página seleccionada" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Exportar a la página seleccionada" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Crear una página y exportar a ella" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Nuevo nombre de página:" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Exporte/Importe a escala" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "recomendado" @@ -8685,12 +8673,12 @@ msgstr "Importar archivos" msgid "All" msgstr "Todos/as" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "La tabla %s no fue hallada o no fue definida en %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "El archivo no existe" @@ -8702,13 +8690,13 @@ msgstr "Seleccionar el registro binario que desea examinar" msgid "Files" msgstr "Archivos" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Truncar las consultas que ya se han mostrado" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Mostrar las consultas enteras" @@ -9508,12 +9496,10 @@ msgid "Related links:" msgstr "Enlaces relacionados:" #: server_status.php:800 -#| msgid "Query analyzer" msgid "Run analyzer" msgstr "Ejecutar analizador" #: server_status.php:801 -#| msgid "Introduction" msgid "Instructions" msgstr "Instrucciones" @@ -9561,8 +9547,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Preguntas desde el inicio: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "por hora" @@ -9583,17 +9569,17 @@ msgstr "Sentencias" msgid "#" msgstr "#" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Tráfico de red desde el inicio: %s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9601,19 +9587,19 @@ msgstr "" "Este servidor MySQL trabaja como maestro y esclavo en un " "proceso de replicación." -#: server_status.php:963 +#: server_status.php:964 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:965 +#: server_status.php:966 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:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9621,11 +9607,11 @@ msgstr "" "Para más información sobre el estado de replicación en el servidor, por " "favor visita la sección sobre replicación." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Estado de replicación" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9634,35 +9620,35 @@ msgstr "" "pueden excederse. Por tanto, las estadísticas reportadas por el servidor " "MySQL pueden ser incorrectas." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Recibido" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Enviado" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Número máx. de conexiones concurrentes" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Intentos fallidos" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Abortado" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "Identificación" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Comando" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -9670,11 +9656,11 @@ msgstr "" "La cantidad de conexiones que fueron abandonadas porque el cliente murió sin " "cerrar la conexión apropiadamente." -#: server_status.php:1189 +#: server_status.php:1190 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:1190 +#: server_status.php:1191 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 " @@ -9684,19 +9670,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:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 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:1193 +#: server_status.php:1194 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 " @@ -9709,11 +9695,11 @@ msgstr "" "tmp_table_size para hacer que las tablas temporales se basen en memoria en " "lugar de basarse en disco." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "El número de archivos temporales que fueron creados por mysqld." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9721,7 +9707,7 @@ msgstr "" "El número de tablas temporales en memoria creadas automáticamente por el " "servidor mientras se ejecutaban las sentencias." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9729,7 +9715,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:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9737,23 +9723,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "El número de filas INSERT DELAYED escritas." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "El número de sentencias FLUSH ejecutadas." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "El número de sentencias COMMIT internas." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9764,7 +9750,7 @@ msgstr "" "Handler_discover indica el número ocasiones que las tablas han sido " "descubiertas." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9775,7 +9761,7 @@ msgstr "" "de escaneos completos del índice; por ejemplo, SELECT col1 FROM foo, " "asumiendo que col1 está indizado." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -9784,7 +9770,7 @@ msgstr "" "este valor es alto, es una buena indicación de que sus consultas y tablas " "están indexadas apropiadamente." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9794,7 +9780,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:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9803,7 +9789,7 @@ msgstr "" "clave. Este método de lectura se usa principalmente para optimizar a ORDER " "BY ... DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9816,7 +9802,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:1208 +#: server_status.php:1209 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 " @@ -9829,37 +9815,37 @@ msgstr "" "o que sus consultas no están escritas para tomar ventaja de los índices que " "tiene." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "El número de sentencias ROLLBACK internas." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 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:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "El número de páginas actualmente sucias." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "El número de páginas libres." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9869,7 +9855,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:1217 +#: server_status.php:1218 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 " @@ -9881,11 +9867,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:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total de la reserva de búfers, en páginas." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9894,7 +9880,7 @@ msgstr "" "una consulta va a escanear una gran porción de una tabla pero en orden " "aleatorio." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9902,11 +9888,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:1221 +#: server_status.php:1222 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:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9914,7 +9900,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:1223 +#: server_status.php:1224 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 " @@ -9929,55 +9915,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:1224 +#: server_status.php:1225 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:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "El número de operaciones fsync() hechas hasta el momento." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "El número actual de operaciones fsync() pendientes." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "El número actual de lecturas pendientes." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "El número actual de escrituras pendientess." -#: server_status.php:1229 +#: server_status.php:1230 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:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "El número total de lectura de datos." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "El número total de escritura de datos." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "La cantidad de datos escritas hasta el momento, en bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -9985,35 +9971,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "El número de solicitudes de escritura al registro." -#: server_status.php:1237 +#: server_status.php:1238 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:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "El número de fsyncs pendientes al archivo de registro." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Escrituras pendientes al archivo de registro." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "El número de bytes escritos al archivo de registro." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "El número de páginas creadas." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10022,52 +10008,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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "El número de páginas leídas." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "El número de páginas escritas." -#: server_status.php:1246 +#: server_status.php:1247 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:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "El número de filas eliminadas de tablas InnoDB." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "El número de filas insertadas en tablas InnoDB." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "El número de filas leídas de las tablas InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "El número de filas actualizadas en tablas InnoDB." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10076,7 +10062,7 @@ msgstr "" "aún no han sido volcados al disco. Antes se conocía como " "Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10084,7 +10070,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:1257 +#: server_status.php:1258 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 " @@ -10094,11 +10080,11 @@ msgstr "" "de desbordamiento que indica el número máximo de bloques que algún momento " "se llegaron a usar." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10109,15 +10095,15 @@ msgstr "" "demasiado pequeño. La tasa de fallos en el caché puede calcularse como " "Key_reads/Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10128,7 +10114,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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10136,11 +10122,11 @@ msgstr "" "El máximo número de conexiones que han sido utilizadas simultáneamente desde " "que inició el servidor." -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10148,21 +10134,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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "El número de archivos que están abiertos." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "El número de tablas que están abiertas." -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -10172,19 +10158,19 @@ msgstr "" "altas pueden indicar problemas de fragmentación que pueden ser solucionados " "ejecutando la consulta FLUSH QUERY CACHE." -#: server_status.php:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "La cantidad de memoria libre para el cache de consultas." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "El número de hits al cache." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "El número de consultas añadidos al cache." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10197,7 +10183,7 @@ msgstr "" "la estrategia Least Recently Used (LRU) para decidir cuáles consultas deben " "ser removidas del cache." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10205,20 +10191,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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "El número de consultas registradas en el cache." -#: server_status.php:1276 +#: server_status.php:1277 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:1277 +#: server_status.php:1278 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:1278 +#: server_status.php:1279 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." @@ -10226,13 +10212,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10241,7 +10227,7 @@ msgstr "" "de cada fila. (Si no es 0, deberá revisar los índices de sus tablas " "cuidadosamente.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10249,19 +10235,19 @@ msgstr "" "El número de vínculos (joins) que usaron rangos en la primera tabla " "(normalmente no es crítico aun cuando sea grande)." -#: server_status.php:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10269,12 +10255,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:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10282,14 +10268,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:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10299,23 +10285,23 @@ msgstr "" "hacer. Si este valor es grande, debe considerar incrementar el valor de la " "varible de sistema sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 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:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "El número de filas sorted." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10327,7 +10313,7 @@ msgstr "" "primero deberá optimizar sus consultas, y luego, ya sea partir sus tablas o " "usar replicación." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10337,11 +10323,11 @@ msgstr "" "puede calcularse como Threads_created/Connections. Si este valor es rojo, " "debe incrementar su thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "El número de conexiones abiertas actualmente." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10353,43 +10339,43 @@ msgstr "" "(Normalmente esto no aporta una mejoría notable en el rendimiento si usted " "tiene una buena implementación de procesos.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "El número de procesos que no están en reposo." -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "Iniciar monitorización" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "Instrucciones/Configuración" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "Se finalizó la reorganización/edición de gráficos" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "Agregar gráfico" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "Reorganizar/editar gráficos" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Velocidad de actualización" -#: server_status.php:1467 +#: server_status.php:1468 msgid "Chart columns" msgstr "Columnas del gráfico" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "Ordenación de los gráficos" -#: server_status.php:1483 +#: server_status.php:1484 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." @@ -10398,15 +10384,15 @@ msgstr "" "navegador. Sería recomendable exportarla si tiene una configuración " "complicada." -#: server_status.php:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "Restaurar valor predeterminado" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "Instrucciones de monitorización" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10421,7 +10407,7 @@ msgstr "" "«general_log» produce mucha información y aumenta la carga en el servidor " "hasta en un 15%" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10434,22 +10420,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:1507 -#| msgid "Pause monitor" +#: server_status.php:1508 msgid "Using the monitor:" msgstr "Utilizando el monitorizador:" -#: server_status.php:1509 -#| msgid "" -#| "Using the monitor:
Ok, you are good to go! Once you click " -#| "'Start monitor' 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.

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 confirmed, this will load a table of grouped queries, there " -#| "you may click on any occuring SELECT statements to further analyze them." +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10462,17 +10437,7 @@ msgstr "" "'Configuración' o eliminar cualquier gráfico utilizando el icono de rueda " "dentada en cada gráfico." -#: server_status.php:1511 -#| msgid "" -#| "Using the monitor:
Ok, you are good to go! Once you click " -#| "'Start monitor' 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.

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 confirmed, this will load a table of grouped queries, there " -#| "you may click on any occuring SELECT statements to further analyze them." +#: server_status.php:1512 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 " @@ -10485,17 +10450,11 @@ msgstr "" "una tabla de consultas agrupadas donde podrá pulsar en cualquier sentencia " "SELECT para analizarla." -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "Notar que:" -#: server_status.php:1520 -#| msgid "" -#| "Please note: 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." +#: server_status.php:1521 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 " @@ -10503,10 +10462,10 @@ msgid "" "general_log and empty its table once monitoring is not required any more." msgstr "" "Activar «general_log» puede aumentar la carga en el servidor hasta un 5-15%. " -"También esté al tanto que generar estadísticas de los registros es una " -"tarea muy intensiva por lo que se recomienda seleccionar un período de " -"tiempo lo más pequeño posible y desactivar «general_log» y vaciar sus tablas " -"una vez que ya no se necesite monitorizar. " +"También esté al tanto que generar estadísticas de los registros es una tarea " +"muy intensiva por lo que se recomienda seleccionar un período de tiempo lo " +"más pequeño posible y desactivar «general_log» y vaciar sus tablas una vez " +"que ya no se necesite monitorizar. " #: server_status.php:1533 #, fuzzy @@ -10571,9 +10530,6 @@ msgid "Remove variable data in INSERT statements for better grouping" msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación" #: server_status.php:1608 -#| msgid "" -#| "

Choose from which log you want the statistics to be generated from. Results are grouped by query text." msgid "Choose from which log you want the statistics to be generated from." msgstr "Elegir el registro del que desea generar estadísticas." @@ -11076,12 +11032,12 @@ msgstr "Mostrando la consulta SQL" msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas con los índices de la tabla `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Etiqueta" @@ -11742,24 +11698,20 @@ msgid "Create version" msgstr "Crear versión" #: tbl_zoom_select.php:140 -#| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Hacer una \"consulta basada en ejemplo\" (comodín: \"%\") para dos columnas " "distintas" #: tbl_zoom_select.php:151 -#| msgid "Hide search criteria" msgid "Additional search criteria" msgstr "Criterios de búsqueda adicionales" #: tbl_zoom_select.php:281 -#| msgid "Label" msgid "Data Label" msgstr "Etiqueta de datos" #: tbl_zoom_select.php:297 -#| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "Máximo número de filas a graficar" @@ -11768,7 +11720,6 @@ msgid "Browse/Edit the points" msgstr "Navegar/editar los puntos" #: tbl_zoom_select.php:394 -#| msgid "Control user" msgid "How to use" msgstr "Forma de utilización" @@ -11836,7 +11787,6 @@ msgid "The uptime is only %s" msgstr "El tiempo de actividad es sólo %s" #: po/advisory_rules.php:10 -#| msgid "Questions" msgid "Questions below 1,000" msgstr "Menos de 1000 consultas" @@ -11858,12 +11808,10 @@ msgstr "" #: po/advisory_rules.php:13 #, php-format -#| msgid "Current connection" msgid "Current amount of Questions: %s" msgstr "Cantidad de consultas actuales: %s" #: po/advisory_rules.php:15 -#| msgid "Show SQL queries" msgid "Percentage of slow queries" msgstr "Porcentajes de consultas lentas" @@ -11888,7 +11836,6 @@ msgstr "" "actual es %s%%." #: po/advisory_rules.php:20 -#| msgid "Flush query cache" msgid "Slow query rate" msgstr "Frecuencia de consultas lentas" @@ -11909,7 +11856,6 @@ msgstr "" "menos de 1%% por hora." #: po/advisory_rules.php:25 -#| msgid "SQL queries" msgid "Long query time" msgstr "Tiempo de consultas lentas" diff --git a/po/et.po b/po/et.po index 150077dfe1..396c611373 100644 --- a/po/et.po +++ b/po/et.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" @@ -20,10 +20,10 @@ msgstr "Näita kõiki" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Lehenumber:" @@ -38,8 +38,8 @@ msgstr "" "turvaseadetele." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Otsi" @@ -47,25 +47,25 @@ msgstr "Otsi" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "Võtme nimi" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Kirjeldus" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "Kasuta seda väärtust" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -125,7 +125,7 @@ msgstr "Andmebaas %s kustutatud." msgid "Database comment: " msgstr "Andmebaasi kommentaar: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -134,8 +134,8 @@ msgstr "Tabeli kommentaarid" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -149,11 +149,11 @@ msgstr "Väljade nimed" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -164,8 +164,8 @@ msgstr "Tüüp" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -175,8 +175,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -185,8 +185,8 @@ msgstr "Vaikimisi" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Lingib " @@ -195,8 +195,8 @@ msgstr "Lingib " #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Kommentaarid" @@ -207,7 +207,7 @@ msgstr "Kommentaarid" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -228,7 +228,7 @@ msgstr "Ei" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -367,7 +367,7 @@ msgstr "Seoseskeem" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -391,21 +391,21 @@ msgstr "kasutusel" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Loodud" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Viimane muudatus" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Viimane vaatamine" @@ -509,7 +509,7 @@ msgstr "Lae päring" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Ligipääs keelatud" @@ -544,7 +544,7 @@ msgstr[0] "%s vaste(t) tabelis %s" msgstr[1] "%s vaste(t) tabelis %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Vaata" @@ -557,10 +557,10 @@ msgstr "Tabeli andmete salvestamine" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -685,12 +685,12 @@ msgstr "Puhasta kõik" msgid "Check tables having overhead" msgstr "Kontrolli ülekulusid" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Ekspordi" @@ -700,13 +700,13 @@ msgstr "Ekspordi" msgid "Print view" msgstr "Trükivaade" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Tühjenda" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -745,7 +745,7 @@ msgstr "Asenda tabeli andmed failiga" msgid "Copy table with prefix" msgstr "Asenda tabeli andmed failiga" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Andmesõnastik" @@ -761,7 +761,7 @@ msgstr "Kontrolli tabelit" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -783,7 +783,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Staatus" @@ -893,14 +893,14 @@ msgstr "" "Te kindlasti proovisite laadida liiga suurt faili. Palun uuri " "dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Faili ei suudetud lugeda" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -931,7 +931,7 @@ msgstr "Järjehodja kustutati." msgid "Showing bookmark" msgstr "Näitan järjehoidjat" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Järjehoidja %s loodud" @@ -959,7 +959,7 @@ msgstr "" "pikenda." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1087,9 +1087,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Muuda" @@ -1115,13 +1115,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Kokku" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1153,7 +1153,7 @@ msgstr "Serveri valik" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Protsessid" @@ -1181,7 +1181,7 @@ msgstr "Rea statistika" #: js/messages.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\"" #: js/messages.php:94 @@ -1290,7 +1290,7 @@ msgstr "" msgid "Bytes received" msgstr "Saadud" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Ühendused" @@ -1300,12 +1300,12 @@ msgstr "Ühendused" msgid "Questions" msgstr "Pärsia" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Liiklus" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1332,7 +1332,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Pole" @@ -1557,7 +1557,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" @@ -1757,7 +1757,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2235,60 +2235,60 @@ msgstr "kasutusel" msgid "Second" msgstr "sekundis" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Fondi suurus" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2316,7 +2316,7 @@ msgid "Cardinality" msgstr "Kasulikkus" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2338,14 +2338,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Andmebaasid" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2451,16 +2451,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Ei leia pildi kataloogi teemale %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Eelvaade pole saadaval." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "võta see" @@ -2474,12 +2474,12 @@ msgstr "Ei leia vaikimisi teemat %s!" msgid "Theme %s not found!" msgstr "Ei leia teemat %s!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Ei leia kataloogi teemale %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2488,7 +2488,7 @@ msgid "Cannot connect: invalid settings." msgstr "Ei saa ühendust: vigased seaded." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Tere tulemast %s" @@ -2514,56 +2514,56 @@ msgstr "" "php failis ning kontrollima, et need vastaks infole mis te saite oma MySQL " "serveri administraatori käest." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Sisselogimine" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmini dokumentatsioon" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Kasutajanimi:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Parool:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Serveri valik" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Küpsised(cookies) peavad alates sellest momendist lubatud olema." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Ebaaktiivne %s sekundit või rohkem, palun sisenege uuesti" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Ei suuda MySQL serverisse logida" @@ -2594,41 +2594,41 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "MySQL ühenduse kollatsioon" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2772,7 +2772,7 @@ msgid "Documentation" msgstr "Dokumentatsioon" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-päring" @@ -2782,7 +2782,7 @@ msgstr "SQL-päring" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2833,7 +2833,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Mootor" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2934,7 +2934,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2954,8 +2954,8 @@ msgstr "Struktuur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Lisa" @@ -2966,26 +2966,26 @@ msgstr "Lisa" msgid "Operations" msgstr "Tegevused" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "webiserveri üleslaadimiskataloogi" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Kataloog mille Te üleslaadimiseks sättisite ei ole ligipääsetav" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3162,7 +3162,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Tühista" @@ -5432,8 +5432,8 @@ msgstr "Loo uus tabel andmebaasi %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5793,7 +5793,7 @@ msgstr "Sorteeri võtme järgi" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5861,7 +5861,7 @@ msgid "The row has been deleted" msgstr "Rida kustutatud" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Tapa" @@ -6440,7 +6440,7 @@ msgstr "Olemasolevad MIME-tüübid" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Masin" @@ -6655,7 +6655,7 @@ msgstr "SQL tulemus" msgid "Generated by" msgstr "Genereerija " -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t. null rida)." @@ -6755,7 +6755,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Tabeli nimi" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Väljade nimed" @@ -7117,7 +7117,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "pole kirjeldust" @@ -7154,14 +7154,14 @@ msgid "Slave status" msgstr "Näita alluvate(slave) staatust" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Muutuja" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Väärtus" @@ -7221,7 +7221,7 @@ msgstr "Genereeri parool" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7258,16 +7258,16 @@ msgstr "" msgid "Edit event" msgstr "Saadetud" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Protsessid" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7282,7 +7282,7 @@ msgstr "Sündmuse tüüp" msgid "Event type" msgstr "Sündmuse tüüp" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7311,7 +7311,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Lõpp" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7324,12 +7324,12 @@ msgstr "Kirjeldus" msgid "On completion preserve" msgstr "Täispikk INSERT" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7377,7 +7377,7 @@ msgid "Returns" msgstr "Tabeli seaded" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Aeg" @@ -7394,7 +7394,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7415,124 +7415,124 @@ msgstr "Tabel %s kustutatud" msgid "Routine %1$s has been created." msgstr "Tabel %s kustutatud" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Väljade nimed" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Otselingid" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Pikkus/Väärtused*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Lisa uus väli" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Nimeta andmebaas ümber" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Pikkus/Väärtused*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tabeli seaded" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Päringu tüüp" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Lubab salvestatud rutiinide käivituse." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funktsioon" @@ -7686,7 +7686,7 @@ msgstr "Kontrolli tabelit" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7696,7 +7696,7 @@ msgstr "\"%s\" tabel ei eksisteeri!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7704,9 +7704,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Palun seadke koordinaadid tabelile %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7720,115 +7720,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Seoseskeem" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Sisukord" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Parameetrid" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Loo uus leht" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Lehenumber:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automaatne väljund" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Sisesed seosed" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Palun valige leht muutmiseks" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Märgista kõik" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Vali tabelid" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Seoseskeem" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Näita võrgustiku" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Näita värvi" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Näita tabelite dimensiooni" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "kuva kõik tabelid sama laiusega?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Laipilt" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portreepilt" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Loodud" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Paberi suurus" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7836,17 +7836,17 @@ msgstr "" "Antud lehel on viiteid tabelitele mida enam ei ole. Kas te soovite kustutada " "need viited?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "vaheta märkmetahvlit" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Tundmatu keel: %1$s." @@ -7926,11 +7926,11 @@ msgstr "Kalender" msgid "Columns" msgstr "Väljade nimed" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Lisa see SQL päring järjehoidjasse" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale" @@ -8417,7 +8417,7 @@ msgstr "Protokolli versioon" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Kasutaja" @@ -8620,7 +8620,7 @@ msgstr "Kõik Väikeseks/Suureks" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Impordi/Ekspordi kordinaadid PDF skeemile" @@ -8704,50 +8704,50 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Tabel %s kustutatud" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "lehti" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importige failid" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Ekspordi/Impordi skaala" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Loo uus indeks" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Kasutajanimi" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Ekspordi/Impordi skaala" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "soovituslik" @@ -8858,12 +8858,12 @@ msgstr "Importige failid" msgid "All" msgstr "Kõik" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabelit ei leitud või ei eksisteeri %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8878,13 +8878,13 @@ msgstr "Valige binaarne logi vaatamiseks" msgid "Files" msgstr "Väljade arv" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Lühenda näidatavad päringud" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Näita täispikkasid päringuid" @@ -9716,8 +9716,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "tunni kohta" @@ -9738,43 +9738,43 @@ msgstr "Parameerid" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 "See MySQL server on käinud %s. Käivitusaeg %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 #, fuzzy msgid "Replication status" msgstr "Tiražeerimine" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9782,47 +9782,47 @@ msgstr "" "Koormusega serveris, baitide lugeja võib lugeda vigadega (overrun), st. see " "statistika mida näitab MySQL server ei pruugi olla täpne." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Saadud" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Saadetud" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "maks. parallel ühendusi" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Ebaõnnestunud üritused" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Katkestatud" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Käsk" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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 "Mitu fsyncs kirjutamist tehtud logi faili." -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -9832,16 +9832,16 @@ msgstr "" "binlog_cache_size suurust ja kasutatakse ajutist faili et salvestada " "ülekande Käske (päringuid)." -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "Ülekannete number mis kasutasid ajutist binaar logi vahemälu." -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9852,11 +9852,11 @@ msgstr "" "käivitades. Kui Created_tmp_disk_tables on suur, sa võid tahta suurendada " "tmp_table_size väärtust et olla mälul baseeruv mitte kettal." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Mitu ajutist faili mysqld on loonud." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9864,7 +9864,7 @@ msgstr "" "Ajutiste mälul baseeruvate tabelite arv, loodud automaatselt serveri poolt, " "päringuid käivitades." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9872,7 +9872,7 @@ msgstr "" "Mitu rida on loodud käsuga INSERT DELAYED milles toimus viga (arvatavasti " "korduv võti)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9880,23 +9880,23 @@ msgstr "" "Mitu INSERT DELAYED töötleja (handler) lõimu on kasutuses. Iga erinev tabel " "mis kasutab INSERT DELAYED saab oma lõimu." -#: server_status.php:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED ridasid loodud." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "FLUSH käskude arv." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Sisemiste COMMIT käskude arv." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Mitu korda rida kustutati tabelist." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -9906,7 +9906,7 @@ msgstr "" "mootor) kas ta teab tabelit etteantud nimega. Seda kutsutakse avastus" "(discovery). Handler_discover annab mitu korda on tabel leitud." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9916,7 +9916,7 @@ msgstr "" "server teeb palju täis indeksi skaneerimist; näitkes, SELECT col1 FROM foo, " "arvates et col1 indekseeritud." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -9924,7 +9924,7 @@ msgstr "" "Mitu korda loeti rida võtme järgi. Kui see on suur, see on hea näitaja et " "sinu päringud ja tabelid on korralikult indekseeritud." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9933,7 +9933,7 @@ msgstr "" "Mitu korda saadi käsk lugeda võtme järgi järgmine rida. See on suurenev kui " "sa pärid indekseeritud piiratud välja või sa teed indeksi skaneerimist." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9941,7 +9941,7 @@ msgstr "" "Mitu korda saadi käsk lugeda võtme järgi eelnev rida. See lugemise meetod on " "peamiselt kasutatud optimiseerimiseks ORDER BY ... DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9953,7 +9953,7 @@ msgstr "" "mis vajavad MySQLi et skaneerida kogu tabelit või liited(joins) mis ei " "kasuta võtmeid korralikult." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9965,35 +9965,35 @@ msgstr "" "korralikult indekseeritud või sinu päringud pole kirjutatud nii et võtta " "eeliseid sinu loodud indeksitest." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Mitu korda käivitati sisemine ROLLBACK lausung." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Mitu korda uuendati tabeli rida." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Mitu korda lisati uus rida tabelisse." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Mitu lehekülge sisaldab andmeid (puhast või musta)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Mitu lehekülge on mustad." -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Mitu puhvri lehekülge on määratud puhastamisele." -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Mitu puu lehekülge." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -10002,7 +10002,7 @@ msgstr "" "Mitu lukus lehte on InnoDB puhvris. Need lehed on hetkel lugemisel või " "kirjutamisel ja pole võimalik puhastada või kustutada mingil põhjusel." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -10014,11 +10014,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Kogu puhvris suurus, lehtedes." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10026,7 +10026,7 @@ msgstr "" "Mitu InnoDB juhuslikku(random) ette-lugemisi on töös. See juhtub kui päring " "on skaneerida suur osa tabelist kuid juhuslikus järjekorras." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10034,11 +10034,11 @@ msgstr "" "Mitu InnoDB järjestikku ette-lugemisi on töös. See juhtub kui InnoDB teeb " "järjestikulist kogu tabeli skaneerimist." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Mitu loogilist lugemist InnoDB on teinud." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10046,7 +10046,7 @@ msgstr "" "Mitu loogilist lugemist InnoDB polnud võimalik puhvris poolt rahuldada ja " "tegi üksiku lehe lugemise." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -10059,55 +10059,55 @@ msgstr "" "enne ühtlustatud. See This loendur loeb kõiki neid ootamisi. Kui puhvri " "suurus on seatud korralikult, se number peaks olema väike." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Mitu korda kirjutas InnoDB puhvrisse." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Mitu fsync() operatsiooni siiani." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Mitu hetkel ootel fsync() operatsiooni." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Mitu ootel lugemist." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Mitu ootel kirjutamist." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Suurus kui palju andmeid on loetud siiani, baitides." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Mitu korda loetud." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Mitu korda andmeid kirjutati." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Suurus palju andmeid on kirjutatud, baitides." -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Mitu korda tehti topeltkirjutamist ja mitu lehte on kirjutatud just sellel " "põhjusel." -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" "Mitu korda tehti topeltkirjutamise kirjutamist ja mitu lehte on kirjutatud " "just sellel põhjusel." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -10115,35 +10115,35 @@ msgstr "" "Mitu ootamist on olnud sellepärast et logi puhver oli liiga väike ja pidi " "ootama enne ühtlustamist et jätkata." -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Mitu logi kirjutamise soovi." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Mitu füüsilist kirjutamist logi faili." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Mitu fsyncs kirjutamist tehtud logi faili." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Mitu ootel logi faili fsyncs." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "ootel logifaili kirjutamisi." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Mitu baiti on kirjutatud logi faili." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Lehti loodud." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10151,51 +10151,51 @@ msgstr "" "Sisse-kompileeritud InnoDB lehe suurus (vaikimisi 16KB). Paljud väärtused on " "loetud lehtedes; lehe suurus lubab neid lihtsalt arvutada baitidesse." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Lehti loetud." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Lehti kirjutatud." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Mitu rea lukustamist on hetkel ootel." -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Keskimne aeg pärides rea lukustust, millisekundites." -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Aeg mis on raisatud pärides rea lukustust, millisekundites." -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksimaalne aeg pärides rea lukustust, millisekundites." -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "Mitu korda pidi rea lukustus ootama." -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Mitu rida kustutatud InnoDB tabelitest." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Mitu rida lisati InnoDB tabelitesse." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Mitu rida loetud InnoDB tabelitest." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Mitu rida uuendati InnoDB tabelites." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10203,7 +10203,7 @@ msgstr "" "Mitu võtme plokki on võtme vahemälus muutunud kui pole veel kettale " "kirjutatud. Tuntud nagu Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10211,7 +10211,7 @@ msgstr "" "Mitu kasutamatta võtme plokki on võtme vahemälus. Sa saad kasutatda seda " "väärtust et teada saada kui palju võtme vahemälust on kasutuses." -#: server_status.php:1257 +#: server_status.php:1258 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 " @@ -10220,11 +10220,11 @@ msgstr "" "Mitu kasutatud plokki on võtme vahemälus. See väärtus näitab maksimaalse " "plokkide arvu mis on kunagi olnud kasutuses." -#: server_status.php:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "Mitu päringut et lugeda võtme plokk vahemälust." -#: server_status.php:1259 +#: server_status.php:1260 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 " @@ -10234,15 +10234,15 @@ msgstr "" "siis sinu key_buffer_size näitaja on kindlasti väike. Vahemälus möödaminek " "on võimalik arvutada nii Key_reads/Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "Mitu päringut et kirjutada võtme plokk vahemällu." -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "Mitu füüsilist kirjutamist kirjutada võtme plokk kettale." -#: server_status.php:1262 +#: server_status.php:1263 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 " @@ -10252,17 +10252,17 @@ msgstr "" "Kasulik võrdlemaks erinevaid päringu plaane ühelt ja samalt päringult. " "Vaikimisi väärtus 0 tähendab et päring pole veel töödeldud." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Mitu rida on ootel INSERT DELAYED päringutes." -#: server_status.php:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10270,38 +10270,38 @@ msgstr "" "Mitu tabelit on avatud. Avatud tabeleid on palju siis sinu tabeli vahemälus " "kindlasti liiga väike." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Mitu faili on avatud." -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "Mitu voogu on hetkel avatud (enamasti logimiseks)." -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Mitu tabelit on hetkel avatud." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Vaba mälu päringute vahemälus." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Leitud Puhvrist." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Mitu päringut on lisatud vahemällu." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10313,7 +10313,7 @@ msgstr "" "vahemälu kasutab viimati kasutatud strateegiat(LRU) et otsustada millised " "päringud eemaldada puhvrist." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10321,21 +10321,21 @@ msgstr "" "Mitu mitte-puhverdatud päringut (pole salvestatud vahemällu, või sõltuvalt " "query_cache_type sätetest mitte puhverdatud)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Mitu päringut on registreeritud vahemälus." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Plokkide koguarv päringute vahemälus." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" "See staatus on tõrkekindel tiraþeerimine (failsafe replication) (pole veel " "kasutuses)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10343,11 +10343,11 @@ msgstr "" "Liited(joins) mis ei kasuta indekseid. Kui see näitaja on 0, peaksid " "ettevaatlikult kontrollima oma tabelites indekseid." -#: server_status.php:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "Liidete arv mida kasutati piirkonna otsimisel eelistatud tabelist." -#: server_status.php:1280 +#: server_status.php:1281 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.)" @@ -10356,7 +10356,7 @@ msgstr "" "kasutamist. (Kui see pole 0 siis peaksid ettevaatlikult kontrollima oma " "tabelite indekseid.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10364,17 +10364,17 @@ msgstr "" "Liidete arv mida kasutati esimese tabeli piirides. (Pole eriti kriitiline " "kui see on väga suur.)" -#: server_status.php:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "Liidete arv mis tegid täielikku skaneerimist esimesest tabelist." -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Ajutiste tabelite arv mis on hetkel avatud alam-lõimu(replication slave) " "poolt." -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10382,23 +10382,23 @@ msgstr "" "Kogusumma (alates käivitamisest) mitu korda tiraþeerimise(replication) SQL " "alam-lõim(replication slave) proovis ülekandeid." -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Kui see on ON kui serveril on alam server(masin) mis on ühenduses masteriga." -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "Lõimude arv mis võtsid rohkem aega käivitamiseks kui slow_launch_time." -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Päringute arv mis võtsid rohkem aega kui long_query_time sekundites." -#: server_status.php:1288 +#: server_status.php:1289 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 " @@ -10407,23 +10407,23 @@ msgstr "" "Edukate ühinemiste(merge) arv millega lühike algoritm on tegelenud. Kui see " "väärtuse on suur, sa peaksid mõtlema sort_buffer_size väärtuse suurendamist." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Sorteerimiste arv mis on tehtud piirkonna ulatuses." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Sorteritud ridade arv." -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "Sorteerimiste arv mis on tehtud tabeli skaneerimist kasutades." -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "Mitu korda tabeli lukustus jõustus koheselt." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10434,7 +10434,7 @@ msgstr "" "suur ja jõudlusega on probleeme, sa peaksid optimiseerima oma päringuid või " "poolitama oma tabelid või kasutama tiraþeerimist(replication)." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10444,11 +10444,11 @@ msgstr "" "nii Threads_created/Connections. Kui see on punane paksid suurendama " "thread_cache_size suurust." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Hetkel avatud ühendusi." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10459,64 +10459,64 @@ msgstr "" "siis suurenda thread_cache_size väärtust. (Tavaliselt see ei anna märgatavat " "kiiruse tõusu kui Lõimude teostus on korralik.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Lõimude arv mis mis hetkel ei maga." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Lau" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Lisa uus väli" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Uuenda" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Lisa/Kustuta välja veerud" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10525,7 +10525,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10533,11 +10533,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10545,7 +10545,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10553,11 +10553,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11095,12 +11095,12 @@ msgstr "Näitan SQL päringut" msgid "Validated SQL" msgstr "Kontrolli SQL-i" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleemid tabeli `%s` indeksitega" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Nimetus" diff --git a/po/eu.po b/po/eu.po index 25fdc5ab2f..b876a7dd6e 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" @@ -21,10 +21,10 @@ msgstr "Dena erakutsi" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Orri zenbakia:" @@ -39,8 +39,8 @@ msgstr "" "security settings" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Bilatu" @@ -48,25 +48,25 @@ msgstr "Bilatu" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Klabearen hitza" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Deskribapena" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Erabili balio hau" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -126,7 +126,7 @@ msgstr "%s datu-basea ezabatua izan da." msgid "Database comment: " msgstr "Datu-basearen iruzkina: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -135,8 +135,8 @@ msgstr "Taularen iruzkinak" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Zutabe izenak" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Mota" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Nulua" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Lehenetsia" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Estekak honi:" @@ -196,8 +196,8 @@ msgstr "Estekak honi:" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Iruzkinak" @@ -208,7 +208,7 @@ msgstr "Iruzkinak" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Ez" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -371,7 +371,7 @@ msgstr "Erlazio-eskema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -395,21 +395,21 @@ msgstr "lanean" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Sortzea" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Azken eguneraketa" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Azken egiaztapena" @@ -513,7 +513,7 @@ msgstr "Kontsulta bidali" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Sarbidea ukatua" @@ -548,7 +548,7 @@ msgstr[0] "%s emaitza(k) %s taulan" msgstr[1] "%s emaitza(k) %s taulan" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Arakatu" @@ -561,10 +561,10 @@ msgstr "Taula honen datuak irauli" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -690,12 +690,12 @@ msgstr "Desautatu dena" msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Esportatu" @@ -705,13 +705,13 @@ msgstr "Esportatu" msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Hutsik" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -749,7 +749,7 @@ msgstr "Taularen datuak fitxategiarekin ordezkatu " msgid "Copy table with prefix" msgstr "Taularen datuak fitxategiarekin ordezkatu " -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Datu-hiztegia" @@ -764,7 +764,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -785,7 +785,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Egoera" @@ -892,14 +892,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Ezinezkoa fitxategia irakurtzea" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -925,7 +925,7 @@ msgstr "Gordetako kontsulta ezabatu da." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -948,7 +948,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1074,9 +1074,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Editatu" @@ -1102,13 +1102,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Gutira" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1140,7 +1140,7 @@ msgstr "Zerbitzariaren hautaketa" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Prozesuak" @@ -1166,7 +1166,7 @@ msgid "Query statistics" msgstr "Errenkadaren estatistikak" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1268,7 +1268,7 @@ msgstr "" msgid "Bytes received" msgstr "Jasota" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Konexioak" @@ -1278,12 +1278,12 @@ msgstr "Konexioak" msgid "Questions" msgstr "Eragiketak" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Trafikoa" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1309,7 +1309,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Batez" @@ -1532,7 +1532,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1729,7 +1729,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2207,59 +2207,59 @@ msgstr "lanean" msgid "Second" msgstr "segunduko" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2287,7 +2287,7 @@ msgid "Cardinality" msgstr "Kardinalitatea" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2309,14 +2309,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Datu-baseak" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2415,16 +2415,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2438,12 +2438,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2452,7 +2452,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Ongietorriak %s(e)ra" @@ -2476,56 +2476,56 @@ msgstr "" "eta pasahitza berpasatu beharko dituzu eta MySQL zerbitzariaren " "administratzaileak emaniko informazioarekin bat egiten dutela ziurtatu." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Hasi saioa" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentazioa" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Zerbitzaria" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Erabiltzaile-izena:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Pasahitza:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Zerbitzariaren hautaketa" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Puntu honetarako cookie-ek gaituta egon behar dute." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Ezinezkoa MySql zerbitzarian saioa hastea" @@ -2556,39 +2556,39 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2727,7 +2727,7 @@ msgid "Documentation" msgstr "Dokumentazioa" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL kontsulta" @@ -2737,7 +2737,7 @@ msgstr "SQL kontsulta" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2786,7 +2786,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2885,7 +2885,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2905,8 +2905,8 @@ msgstr "Egitura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Txertatu" @@ -2917,26 +2917,26 @@ msgstr "Txertatu" msgid "Operations" msgstr "Eragiketak" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3114,7 +3114,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Reset egin" @@ -5350,8 +5350,8 @@ msgstr "Taula berri bat sortu %s datu-basean" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5689,7 +5689,7 @@ msgstr "Gakoaren arabera ordenatu" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5757,7 +5757,7 @@ msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Hil" @@ -6313,7 +6313,7 @@ msgstr "MIME-mota erabilgarriak" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Zerbitzaria" @@ -6526,7 +6526,7 @@ msgstr "SQL emaitza" msgid "Generated by" msgstr "Egilea:" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." @@ -6624,7 +6624,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Zutabe izenak" @@ -6988,7 +6988,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "Deskribapenik ez" @@ -7023,14 +7023,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Aldagaia" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "balioa" @@ -7091,7 +7091,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7128,16 +7128,16 @@ msgstr "" msgid "Edit event" msgstr "Bidalita" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Prozesuak" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7152,7 +7152,7 @@ msgstr "Esportazio mota" msgid "Event type" msgstr "Esportazio mota" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7181,7 +7181,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Amaiera" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7194,12 +7194,12 @@ msgstr "Deskribapena" msgid "On completion preserve" msgstr "\"Insert\"ak osatu" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7247,7 +7247,7 @@ msgid "Returns" msgstr "Taularen hobespenak" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Denbora" @@ -7264,7 +7264,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7284,120 +7284,120 @@ msgstr "%s taula ezabatu egin da" msgid "Routine %1$s has been created." msgstr "%s taula ezabatu egin da" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Zutabe izenak" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Sortzea" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Luzera/Balioak*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy msgid "Remove last parameter" msgstr "Taula berrizendatu izen honetara: " -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Luzera/Balioak*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Taularen hobespenak" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Kontsulta mota" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funtzioak" @@ -7545,7 +7545,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7555,7 +7555,7 @@ msgstr "\"%s\" taula ez da existitzen!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7563,9 +7563,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Mesedez, %s taularentzako koordinatuak konfiguratu" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7579,115 +7579,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Erlazio-eskema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Edukinen taula" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atributuak" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Orri berri bat sortu" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Orri zenbakia:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Diseinu automatikoa" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Barne-erlazioak" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Aukeratu editatzeko orria mesedez" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Taulak hautatu" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Taulak hautatu" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Erlazio-eskema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Sareta erakutsi" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Kolorea erakutsi" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Taulen dimentsioak erakutsi" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Zabalera berdina duten taula guztiak erakutsi?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Bertikal" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Sortzea" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Paperaren tamaina" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7695,17 +7695,17 @@ msgstr "" "Orri honek existitzen ez diren taulekiko erreferentziak dauzka. " "Erreferentziok ezabatu nahi al dituzu?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Aldatu \"scratchboard\"-a" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7785,11 +7785,11 @@ msgstr "" msgid "Columns" msgstr "Zutabe izenak" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri " @@ -8249,7 +8249,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Erabiltzailea" @@ -8449,7 +8449,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8533,48 +8533,48 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "%s taula ezabatu egin da" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Erabilpena" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Fitxategiak inportatu" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Indize berri bat sortu" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Erabiltzaile-izena" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8685,12 +8685,12 @@ msgstr "Fitxategiak inportatu" msgid "All" msgstr "Guztiak" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s taula ez da aurkitu edo ez da definitu hemen: %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8705,13 +8705,13 @@ msgstr "" msgid "Files" msgstr "Eremuak" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Erakutsitako kontultak moztu" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Kontsulta osoak erakutsi" @@ -9553,8 +9553,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "orduko" @@ -9575,104 +9575,104 @@ msgstr "Sententziak" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Jasota" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Bidalita" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Erratutako saiakerak" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Deuseztatua" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Komandoa" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9680,78 +9680,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9759,7 +9759,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9767,42 +9767,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9810,33 +9810,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9845,227 +9845,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10073,99 +10073,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10173,18 +10173,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10192,64 +10192,64 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Lar" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Gehitu %s zutabe" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Egilea:" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10258,7 +10258,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10266,11 +10266,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10278,7 +10278,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10286,11 +10286,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10822,12 +10822,12 @@ msgstr "" msgid "Validated SQL" msgstr "SQL balidatu" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Etiketa" diff --git a/po/fa.po b/po/fa.po index e605ebd0bc..fbf44146a8 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" @@ -21,10 +21,10 @@ msgstr "نمايش همه" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "شماره صفحه:" @@ -36,8 +36,8 @@ msgid "" msgstr "" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "جستجو" @@ -45,25 +45,25 @@ msgstr "جستجو" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -85,7 +85,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "توضیحات" @@ -95,7 +95,7 @@ msgid "Use this value" msgstr "این مقدار را استفاده کنید" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -125,7 +125,7 @@ msgstr "پايگاه داده %1$s ایجاد شده است." msgid "Database comment: " msgstr "توضيحات پایگاه داده:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -134,8 +134,8 @@ msgstr "توضيحات جدول" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -147,11 +147,11 @@ msgstr "ستون" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -162,8 +162,8 @@ msgstr "نوع" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -173,8 +173,8 @@ msgstr "خالي" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -183,8 +183,8 @@ msgstr "پيش‌فرض" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "پيوند به" @@ -193,8 +193,8 @@ msgstr "پيوند به" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "توضيحات" @@ -205,7 +205,7 @@ msgstr "توضيحات" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -226,7 +226,7 @@ msgstr "خير" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "ویرایش یا صدور نمای رابطه ای" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "in use" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "ایجاد" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "آخرین به روز رسانی" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "" @@ -498,7 +498,7 @@ msgstr "Submit Query" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "دسترسي مجاز نيست" @@ -531,7 +531,7 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s عبارت همتا در جدول %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "مشاهده" @@ -543,10 +543,10 @@ msgstr "داده های همتا در جدول %s حذف شوند؟" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -667,12 +667,12 @@ msgstr "عدم انتخاب همه" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "صدور" @@ -682,13 +682,13 @@ msgstr "صدور" msgid "Print view" msgstr "نماي چاپ" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "خالي كردن" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -726,7 +726,7 @@ msgstr "جايگزيني داده‌هاي جدول با پرونده" msgid "Copy table with prefix" msgstr "جايگزيني داده‌هاي جدول با پرونده" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "فرهنگ داده‌ها" @@ -741,7 +741,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -761,7 +761,7 @@ msgstr "به روز شده" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "" @@ -866,14 +866,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -900,7 +900,7 @@ msgstr "سطر حذف گرديد ." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -923,7 +923,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1043,9 +1043,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "ويرايش" @@ -1071,13 +1071,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "جمع كل" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "نسخه سرور" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "" @@ -1133,7 +1133,7 @@ msgid "Query statistics" msgstr "آمار سطرها" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1236,7 +1236,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "" @@ -1246,12 +1246,12 @@ msgstr "" msgid "Questions" msgstr "فارسي" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "Deleting %s" msgid "Settings" @@ -1278,7 +1278,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "خير" @@ -1499,7 +1499,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1692,7 +1692,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2169,59 +2169,59 @@ msgstr "دقیقه" msgid "Second" msgstr "ثانیه" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "اندازه حروف" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2249,7 +2249,7 @@ msgid "Cardinality" msgstr "" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2271,14 +2271,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "پايگاههاي داده" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2375,16 +2375,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "پش دید موجود نمی باشد" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2398,12 +2398,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2412,7 +2412,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "به %s خوش‌آمديد" @@ -2432,57 +2432,57 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "ورود" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "مستندات phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 #, fuzzy msgid "Server:" msgstr "سرور" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "نام كاربر:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "اسم رمز:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "" @@ -2513,39 +2513,39 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2682,7 +2682,7 @@ msgid "Documentation" msgstr "مستندات" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "پرس و جوي SQL" @@ -2692,7 +2692,7 @@ msgstr "پرس و جوي SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2745,7 +2745,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "موتور" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2846,7 +2846,7 @@ msgid "Click to toggle" msgstr "برای انتخاب کلیک کنبد" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2866,8 +2866,8 @@ msgstr "ساختار" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "درج" @@ -2878,25 +2878,25 @@ msgstr "درج" msgid "Operations" msgstr "عمليات" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست." -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3072,7 +3072,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Reset" @@ -5285,8 +5285,8 @@ msgstr "ساخت جدول جديد در پايگاه داده %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5615,7 +5615,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5679,7 +5679,7 @@ msgid "The row has been deleted" msgstr "سطر حذف گرديد ." #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Kill" @@ -6228,7 +6228,7 @@ msgstr "نمايش خصوصيات" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "ميزبان" @@ -6439,7 +6439,7 @@ msgstr "نتيجه SQL" msgid "Generated by" msgstr "توليد‌شده توسط" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." @@ -6537,7 +6537,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "نام ستونها" @@ -6896,7 +6896,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "no Description" @@ -6931,14 +6931,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "متغییر" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "مقدار" @@ -6999,7 +6999,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7036,14 +7036,14 @@ msgstr "" msgid "Edit event" msgstr "افزودن يك كاربر جديد" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7058,7 +7058,7 @@ msgstr "نام كاربر" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7086,7 +7086,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "انتها" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7099,12 +7099,12 @@ msgstr "توضیحات" msgid "On completion preserve" msgstr "تمام وروديها" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7151,7 +7151,7 @@ msgid "Returns" msgstr "آمار پايگاههاي داده" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "" @@ -7167,7 +7167,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7187,117 +7187,117 @@ msgstr "جدول %s حذف گرديد" msgid "Routine %1$s has been created." msgstr "جدول %s حذف گرديد" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "نام ستونها" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "ایجاد" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "طول/مقادير*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "حذف پایگاه داده" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "طول/مقادير*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy msgid "Return options" msgstr "آمار پايگاههاي داده" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "تابع" @@ -7436,7 +7436,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7446,7 +7446,7 @@ msgstr "جدول \"%s\" وجود ندارد!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7454,9 +7454,9 @@ msgid "Please configure the coordinates for table %s" msgstr "لطفا مختصات جدول %s را تنظيم كنيد" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -7469,130 +7469,130 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 #, fuzzy msgid "Table of contents" msgstr "توضيحات جدول" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "ويژگيها" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "اضافي" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "ساخت يك صفحه جديد" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "شماره صفحه:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy msgid "Automatic layout based on" msgstr "نسخه سرور" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "لطفا يك صفحه را براي ويرايش انتخاب نماييد" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Select Tables" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Select Tables" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "نمايش الگوي PDF" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Show grid" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "نمايش رنگ" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "نمايش ابعاد جدولها" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "نمايش همه جدولها با عرض يكسان؟" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "تصوير " -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy msgid "Orientation" msgstr "ساختن" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "rtl" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "زبانِ ناشناس : %1$s." @@ -7674,11 +7674,11 @@ msgstr "تقویم" msgid "Columns" msgstr "نام ستونها" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -8061,7 +8061,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "كاربر" @@ -8256,7 +8256,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8339,46 +8339,46 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "جدول %s حذف گرديد" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "استفاده" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "ساخت فهرست جديد" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "نام كاربر" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8485,12 +8485,12 @@ msgstr "" msgid "All" msgstr "همه" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "جدول %s وجود ندارد و يا در %s تنظيم نشده‌است" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8505,13 +8505,13 @@ msgstr "" msgid "Files" msgstr "ستونها" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "" @@ -9321,8 +9321,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "در ساعت" @@ -9343,101 +9343,101 @@ msgstr "شرج" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "شناسه" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "دستور" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9445,78 +9445,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9524,7 +9524,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9532,42 +9532,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9575,33 +9575,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9610,227 +9610,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9838,99 +9838,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9938,18 +9938,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9957,63 +9957,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "شنبه" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy msgid "Add chart" msgstr "افزودن ستون جديد" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "توليد‌شده توسط" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "اضافه يا حذف ستونها" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10022,7 +10022,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10030,11 +10030,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10042,7 +10042,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10050,11 +10050,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10583,12 +10583,12 @@ msgstr "" msgid "Validated SQL" msgstr "معتبرسازي SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "" diff --git a/po/fi.po b/po/fi.po index 8bd151a080..7a70ec3be6 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" @@ -21,10 +21,10 @@ msgstr "Näytä kaikki" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Sivunumero:" @@ -39,8 +39,8 @@ msgstr "" "ikkunoiden väliset päivitystoiminnot." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Etsi" @@ -48,25 +48,25 @@ msgstr "Etsi" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Avaimen nimi" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Kuvaus" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Käytä tätä arvoa" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "BLOB-suoratoistopalvelinta ei ole määritelty." @@ -128,7 +128,7 @@ msgstr "Tietokanta %1$s on luotu." msgid "Database comment: " msgstr "Tietokannan kommentti: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Taulun kommentit" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Sarake" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Tyyppi" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Tyhjä" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Oletusarvo" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Linkitys sarakkeeseen:" @@ -196,8 +196,8 @@ msgstr "Linkitys sarakkeeseen:" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Kommentit" @@ -208,7 +208,7 @@ msgstr "Kommentit" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Ei" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Relaatioskeeman muokkaus tai vienti" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "käytössä" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Luotu" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Viimeksi päivitetty" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Viimeksi tarkistettu" @@ -497,7 +497,7 @@ msgstr "Suorita" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Käyttö estetty" @@ -531,7 +531,7 @@ msgstr[0] "%s hakutulosta taulussa %s" msgstr[1] "%s hakutulosta taulussa %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Selaa" @@ -543,10 +543,10 @@ msgstr "Poista taulusta %s löytyneet tulokset?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -668,12 +668,12 @@ msgstr "Poista valinta kaikista" msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Vienti" @@ -683,13 +683,13 @@ msgstr "Vienti" msgid "Print view" msgstr "Tulostusversio" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Tyhjennä" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -729,7 +729,7 @@ msgstr "Korvaa taulun nykyiset rivit tiedostolla" msgid "Copy table with prefix" msgstr "Korvaa taulun nykyiset rivit tiedostolla" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Tietosanasto" @@ -744,7 +744,7 @@ msgstr "Seurattavat taulut" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -764,7 +764,7 @@ msgstr "Päivitetty" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Tila" @@ -869,14 +869,14 @@ msgstr "" "Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso " "tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Tiedostoa ei voi lukea" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -907,7 +907,7 @@ msgstr "Kirjanmerkki on poistettu." msgid "Showing bookmark" msgstr "Näytetään kirjanmerkki" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Kirjanmerkki %s luotu" @@ -935,7 +935,7 @@ msgstr "" "asti ellei PHP:n suoritusaikarajaa nosteta." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1054,9 +1054,9 @@ msgstr "Sulje" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Muokkaa" @@ -1083,13 +1083,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Yhteensä" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1121,7 +1121,7 @@ msgstr "Valitse palvelin" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Prosessit" @@ -1148,7 +1148,7 @@ msgstr "Kyselyn ominaisuuksia" #: js/messages.php:93 #, fuzzy #| msgid "Cannot load or save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Asetuksia ei voi ladata tai tallentaa" #: js/messages.php:94 @@ -1257,7 +1257,7 @@ msgstr "" msgid "Bytes received" msgstr "Vastaanotettu" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Yhteydet" @@ -1268,12 +1268,12 @@ msgstr "Yhteydet" msgid "Questions" msgstr "Versiot" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Liikenne" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Asetukset" @@ -1300,7 +1300,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Ei mitään" @@ -1530,7 +1530,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Tuonti" @@ -1717,7 +1717,7 @@ msgid "Query execution time" msgstr "Suorituksen enimmäiskesto" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2145,27 +2145,27 @@ msgstr "Minuutti" msgid "Second" msgstr "Sekunti" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Fonttikoko" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Tuntematon virhe tiedostoa lähetettäessä." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2173,37 +2173,37 @@ msgstr "" "Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-" "asetuksen arvon." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Tiedosto lähetettiin vain osittain." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Tilapäiskansio puuttuu." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Tiedoston kirjoitus levylle epäonnistui." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Laajennus keskeytti tiedoston lähetyksen." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Tuntematon virhe tiedostoa lähetettäessä." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2231,7 +2231,7 @@ msgid "Cardinality" msgstr "Kardinaliteetti" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Kommentti" @@ -2254,14 +2254,14 @@ msgstr "" "Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee " "poistaa." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Tietokannat" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2368,16 +2368,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Kelvollista polkua teemalle %s ei löytynyt." -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Esikatselu ei ole saatavilla." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "käytä tätä" @@ -2391,12 +2391,12 @@ msgstr "Oletusteemaa %s ei löydy!" msgid "Theme %s not found!" msgstr "Teemaa %s ei löydy!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Teeman %s polkua ei löydy!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2405,7 +2405,7 @@ msgid "Cannot connect: invalid settings." msgstr "Yhteyttä ei voitu muodostaa: virheelliset asetukset." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Tervetuloa, toivottaa %s" @@ -2431,44 +2431,44 @@ msgstr "" "php-tiedostosta ja varmista, että ne vastaavat MySQL-palvelimen " "järjestelmänvalvojan antamia tietoja." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Kirjaudu sisään" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdminin ohjeet" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Voit syöttää verkkotunnuksen/IP-osoitteen ja portin välilyönnillä erotettuna." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Palvelin" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Käyttäjätunnus:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Salasana:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Valitse palvelin" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Selaimessa on oltava evästeet päällä tästä lähtien." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2476,7 +2476,7 @@ msgstr "" "Kirjautuminen ilman salasanaa on kielletty asetuksissa (katso " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2484,8 +2484,8 @@ msgstr "" "Yhteys on ollut toimettomana %s sekuntia tai kauemmin. Kirjaudu sisään " "uudestaan." -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL-palvelimelle ei voitu kirjautua" @@ -2518,41 +2518,41 @@ msgstr "Kelvollista todennusavainta ei ole asetettu" msgid "Authenticating..." msgstr "Todennetaan..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS-virhe" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS-yhteys epäonnistui:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS:n BLOB-tietojen haku epäonnistui:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "BLOB Content-Typen haku epäonnistui" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Näytä kuva" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Toista ääni" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Näytä video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Lataa tiedosto" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Tiedostoa ei voida avata: %s" @@ -2689,7 +2689,7 @@ msgid "Documentation" msgstr "Ohjeet" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-kysely" @@ -2699,7 +2699,7 @@ msgstr "SQL-kysely" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2748,7 +2748,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Muokkaus" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profilointi" @@ -2851,7 +2851,7 @@ msgid "Click to toggle" msgstr "Valitse painamalla" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2871,8 +2871,8 @@ msgstr "Rakenne" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Lisää rivi" @@ -2883,25 +2883,25 @@ msgstr "Lisää rivi" msgid "Operations" msgstr "Toiminnot" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Selaa tietokonettasi:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Lähetettäviä tiedostoja ei ole" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3066,7 +3066,7 @@ msgid "Allow users to customize this value" msgstr "Anna käyttäjien mukauttaa tätä arvoa" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Nollaa" @@ -5508,8 +5508,8 @@ msgstr "Luo uusi taulu tietokantaan %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5879,7 +5879,7 @@ msgstr "Lajittele avaimen mukaan" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Valinnat" @@ -5945,7 +5945,7 @@ msgid "The row has been deleted" msgstr "Rivi on poistettu" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Lopeta" @@ -6554,7 +6554,7 @@ msgstr "Näytä MIME-tyypit" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Palvelin" @@ -6768,7 +6768,7 @@ msgstr "SQL-kyselyn tulos" msgid "Generated by" msgstr "Luontiympäristö" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." @@ -6872,7 +6872,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Taulun nimi" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Sarakkeiden nimet" @@ -7245,7 +7245,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "ei kuvausta" @@ -7282,14 +7282,14 @@ msgid "Slave status" msgstr "Alipalvelimen tila" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Muuttuja" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Arvo" @@ -7353,7 +7353,7 @@ msgstr "Keksi salasana" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7393,16 +7393,16 @@ msgstr "" msgid "Edit event" msgstr "Muokkaa palvelinta" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Virhe pyynnön käsittelyssä" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7419,7 +7419,7 @@ msgstr "Tapahtuman tyyppi" msgid "Event type" msgstr "Tapahtuman tyyppi" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7449,7 +7449,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Loppu" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7462,12 +7462,12 @@ msgstr "Kuvaus" msgid "On completion preserve" msgstr "Kokonaiset lisäyslauseet" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7515,7 +7515,7 @@ msgid "Returns" msgstr "Paluutyyppi" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Aika" @@ -7531,7 +7531,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7553,128 +7553,128 @@ msgstr "Taulu %s on poistettu" msgid "Routine %1$s has been created." msgstr "Taulu %1$s on luotu." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Muokkaustila" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutiinit" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Suorat linkit" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Pituus/Arvot*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Käytä indeksiä/indeksejä" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Tuhoa tietokanta" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Paluutyyppi" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Pituus/Arvot*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Taulun valinnat" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Turvallisuus" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Sallii talletettujen rutiinien suorittamisen." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Rutiinit" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funktio" @@ -7839,7 +7839,7 @@ msgstr "Lähetettäviä tiedostoja ei ole" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7849,7 +7849,7 @@ msgstr "Taulua \"%s\" ei ole!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7857,9 +7857,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Määrittele koordinaatit taululle %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7875,111 +7875,111 @@ msgstr "Tiedosto %s ei sisällä avaintunnusta" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relaatioskeema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Sisällysluettelo" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Attribuutit" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Lisätiedot" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Luo uusi sivu" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Sivun nimi" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automaattinen ulkoasu" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Sisäiset relaatiot" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Valitse muokattava sivu" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Valitse taulut" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Valitse taulut" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relaatioskeema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Näytä ruudukko" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Näytä värit" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Näytä taulujen ulottuvuus" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Näytä kaikki taulut samanlevyisinä?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Näytä vain avaimet" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Vaakatasossa" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Pystytasossa" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Suunta" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Paperin koko" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7987,17 +7987,17 @@ msgstr "" "Nykyisellä sivulla on viittauksia tauluihin, joita ei enää ole olemassa. " "Haluatko poistaa nuo viittaukset?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Näytä/kätke luonnospöytä" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Tuntematon kieli: %1$s." @@ -8072,11 +8072,11 @@ msgstr "Tyhjennä" msgid "Columns" msgstr "Sarakkeet" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" @@ -8567,7 +8567,7 @@ msgstr "Protokollan versio" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Käyttäjä" @@ -8786,7 +8786,7 @@ msgstr "Kaikki pienenä/suurena" msgid "Toggle small/big" msgstr "Vaihda pieneksi/suureksi" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Tuo/vie PDF-skeeman koordinaatit" @@ -8876,50 +8876,50 @@ msgstr "" "paina \"Valitse näytettävä kenttä\" -kuvaketta ja napsauta sitten sopivaa " "kenttänimeä." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Taulu %1$s on luotu." -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "sivua" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Tuo tiedostoja" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Vie/tuo skaalaan" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Luo uusi indeksi" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Käyttäjänimi" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Vie/tuo skaalaan" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "suositus" @@ -9035,12 +9035,12 @@ msgstr "Tuo tiedostoja" msgid "All" msgstr "Kaikki" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Taulua %s ei löytynyt tai sitä ei ole määritelty tiedostossa %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9054,13 +9054,13 @@ msgstr "Valitse näytettävä binääriloki" msgid "Files" msgstr "Tiedostot" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Näytä katkaistut kyselyt" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Näytä kyselyt kokonaisuudessaan" @@ -9917,8 +9917,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Mukauta käynnistyssivua" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "tunnissa" @@ -9939,18 +9939,18 @@ msgstr "Tieto" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 "Tämä MySQL-palvelin on ollut käynnissä %s. Se käynnistettiin %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9958,18 +9958,18 @@ msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pää- ja " "alipalvelimena." -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa pääpalvelimena." -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" "Tämä MySQL-palvelin toimii kahdennustoiminnossa ja alipalvelimena." -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9977,11 +9977,11 @@ msgstr "" "Hae lisätietoja palvelimen kahdennustilasta kohdasta Replication." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Kahdennuksen tila" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9989,47 +9989,47 @@ msgstr "" "Ruuhkaisten palvelinten tavulaskurit saattavat ylivuotaa, joten MySQL-" "palvelimen ilmoittamat tilastotiedot saattavat olla virheellisiä." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Vastaanotettu" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Lähetetty" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Enim. yhtäaikaisia yhteyksiä" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Epäonnistuneet yritykset" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Keskeytetty" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "Tunnus" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Komento" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -10040,16 +10040,16 @@ msgstr "" "\"binlog_cache_size\"-muuttujan arvon ja käyttäneet tilapäistiedostoa " "transaktiokyselyjen tallentamiseen." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -10061,11 +10061,11 @@ msgstr "" "nosta tmp_table_size:n arvoa, jotta tilapäisiä tauluja säilytettäisiin " "muistissa eikä levyllä." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Mysqld-palvelun luomien tilapäistiedostojen määrä." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10073,7 +10073,7 @@ msgstr "" "Kertoo, kuinka monta tilapäistaulua palvelin on automaattisesti luonut " "kyselyjä suorittaessaan." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10081,7 +10081,7 @@ msgstr "" "Virheen aiheuttaneiden, INSERT DELAYED -kyselyllä kirjoitettujen rivien " "määrä (virheenä todennäköisesti päällekkäinen avain)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10089,23 +10089,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED -rivien kirjoituksia." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "FLUSH-kyselyjä suoritettu." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Sisäisten COMMIT-kyselyjen määrä." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Kertoo, kuinka monta kertaa taulusta on poistettu rivi." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -10115,7 +10115,7 @@ msgstr "" "tietyn nimisen taulun. Tätä toimintoa kutsutaan selvittämiseksi (engl. " "discovery). Handler_discover ilmaisee selvitettyjen taulujen määrän." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -10126,7 +10126,7 @@ msgstr "" "läpikäyntejä; näin käy esimerkiksi lauseessa SELECT col1 FROM foo, olettaen " "col1:sen olevan indeksoitu sarake." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -10134,7 +10134,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:1205 +#: server_status.php:1206 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 " @@ -10144,7 +10144,7 @@ msgstr "" "avainjärjestyksessä. Tämä arvo kasvaa, jos haetaan indeksisarakkeita " "käyttämällä rajauksia tai jos suoritetaan indeksihaku." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10153,7 +10153,7 @@ msgstr "" "avainjärjestyksessä. Tätä lukumenetelmää käytetään lähinnä ORDER BY ... DESC " "-kyselyllä optimoimiseen." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -10166,7 +10166,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:1208 +#: server_status.php:1209 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 " @@ -10178,35 +10178,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:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Sisäisten ROLLBACK-kyselyjen määrä." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Taulun rivien päivityspyyntöjen määrä." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Kertoo tauluihin lisättyjen rivien määrän." -#: server_status.php:1212 +#: server_status.php:1213 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:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Tällä hetkellä epäsiistinä olevien sivujen määrä." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Vapaiden sivujen määrä." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -10216,7 +10216,7 @@ msgstr "" "parhaillaan luetaan tai kirjoitetaan tai joita ei voida poistaa tai joiden " "välimuistia ei voida tyhjentää syystä tai toisesta." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -10228,11 +10228,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:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Puskurivarannon kokonaiskoko sivuina." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10240,7 +10240,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10248,11 +10248,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:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB:n suorittamien loogisten lukupyyntöjen määrä." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10260,7 +10260,7 @@ msgstr "" "Sellaisten loogisten lukujen määrä, joita InnoDB ei voinut toteuttaa " "puskurivarannon avulla vaan joutui lukemaan yksittäisen sivun." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -10274,55 +10274,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:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB:n puskurivarannon kirjoituspyyntöjen määrä." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Fsync()-toimenpiteitä tähän mennessä." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Tällä hetkellä käynnissä olevien fsync()-toimenpiteiden määrä." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Tällä hetkellä käynnissä olevien lukutoimenpiteiden määrä." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Tällä hetkellä käynnissä olevien kirjoitustoimenpiteiden määrä." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Tähän mennessä luetun tiedon määrä tavuina." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Kertoo, kuinka monta kertaa tietoja on luettu kaikkiaan." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Kertoo, kuinka monta kertaa tietoja on kirjoitettu kaikkiaan." -#: server_status.php:1232 +#: server_status.php:1233 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:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -10330,35 +10330,35 @@ msgstr "" "Liian pienestä lokipuskurista johtuneiden odotusten määrä, jolloin puskurin " "tyhjentymistä jouduttiin odottamaan ennen jatkamista." -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on pyydetty kirjoittaa." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Kertoo, kuinka monta kertaa lokitiedostoon on fyysisesti kirjoitettu." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Lokitiedostojen fsync()-kirjoitusten määrä." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Lokitiedoston avointen fsync-synkronointien määrä." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Avoimet lokitiedostokirjoitukset." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Lokitiedostoon kirjoitettujen tavujen määrä." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Luotujen sivujen määrä." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10367,52 +10367,52 @@ msgstr "" "arvoja lasketaan sivuina; sivukoon avulla voidaan helposti laskea sivujen " "koko tavuina." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Luettujen rivien määrä." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Kirjoitettujen sivujen määrä." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Tällä hetkellä odotettavien rivilukitusten määrä." -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" "Rivilukituksen valmistumiseen kuluva aika keskimäärin, millisekunteina." -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Rivilukitusten valmistumiseen kuluva aika yhteensä, millisekunteina." -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Rivilukituksen noutamiseen kulunut aika enimmillään, millisekunteina." -#: server_status.php:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB-tauluista poistettujen rivien määrä." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB-tauluihin lisättyjen rivien määrä." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB-taulusta luettujen rivien määrä." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB-taulun päivitettyjen rivien määrä." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10421,7 +10421,7 @@ msgstr "" "muutoksia, mutta joita ei vielä ole tallennettu levylle. Tämä toiminto " "tunnetaan yleisesti nimellä Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10430,20 +10430,20 @@ msgstr "" "avulla voi määrittää, kuinka paljon avainvälimuistia halutaan olevan " "käytössä." -#: server_status.php:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10454,16 +10454,16 @@ msgstr "" "asetettu liian alhainen arvo. Välimuistin käyttötahti voidaan laskea " "lausekkeella Key_reads / Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10474,18 +10474,18 @@ msgstr "" "kyselytapausta varten. Oletusarvo 0 tarkoittaa, että yhtään kyselyä ei ole " "vielä koottu." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10493,39 +10493,39 @@ msgstr "" "Avattujen taulujen määrä. Jos määrä on suuri, tauluvälimuistin arvo saattaa " "olla liian alhainen." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Avoinna olevien tiedostojen määrä." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Avoinna olevien taulujen määrä." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Kyselyvälimuistin vapaan muistin määrä." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Välimuistiosumien määrä." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Välimuistiin lisättyjen kyselyjen määrä." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10538,7 +10538,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:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10547,19 +10547,19 @@ msgstr "" "tallentaa välimuistiin tai ei muuten vain ole tallennettu sinne " "query_cache_type-asetuksen takia)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Rekisteröityjen kyselyjen määrä välimuistissa." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Lohkojen kokonaismäärä kyselyvälimuistissa." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Kahdennuksen vikasietotila (ei vielä toteutettu)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10567,11 +10567,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10580,7 +10580,7 @@ msgstr "" "rivin jälkeen. (Jos tämä ei ole 0, taulujen indeksit tulisi tarkistaa " "huolella.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10588,17 +10588,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10606,13 +10606,13 @@ msgstr "" "Kertoo, kuinka monta kertaa kahdennusalipalvelimen SQL-säie on " "käynnistyksestään lähtien yrittänut suorittaa transaktioita." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10620,14 +10620,14 @@ msgstr "" "Niiden säikeiden määrä, joiden luomiseen on kulunut aikaa enemmän kuin " "slow_launch_time sekuntia." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10636,25 +10636,25 @@ msgstr "" "Lajittelualgoritmiin tarvittavien lomitusten määrä. Jos tämä arvo on suuri, " "sort_buffer-muuttujan arvoa voi suurentaa." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Arvolillä suoritettujen lajittelutoimenpiteiden määrä." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Lajiteltujen rivien määrä." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "Kertoo, kuinka usein taulu on saatu lukittua heti." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10666,7 +10666,7 @@ msgstr "" "hyvä ensin optimoida kyselyjä ja sitten joko jakaa taulu useampaan osaan tai " "käyttää hyödyksi kahdennusta." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10676,11 +10676,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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Tällä hetkellä avoinna olevien yhteyksien määrä." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10692,69 +10692,69 @@ msgstr "" "säikeet on toteutettu hyvin, tällä ei ole kovin suurta vaikutusta " "suorituskykyyn.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Hereillä olevien säikeiden määrä." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Käynnistä" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Käytä indeksiä/indeksejä" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Päivitä" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR-tekstikentän sarakkeet" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Virheiden hallinta:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Palauta oletusarvo" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy msgid "Monitor Instructions" msgstr "Tiedot" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10763,7 +10763,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10771,11 +10771,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10783,7 +10783,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10791,11 +10791,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11442,12 +11442,12 @@ msgstr "Näytetään SQL-kysely" msgid "Validated SQL" msgstr "Tarkista SQL-lause" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Tunniste" diff --git a/po/fr.po b/po/fr.po index 6ba004243b..76a4d2e7d9 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-04 21:49+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" @@ -21,10 +21,10 @@ msgstr "Tout afficher" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Page n° : " @@ -40,8 +40,8 @@ msgstr "" "sécurité." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Rechercher" @@ -49,25 +49,25 @@ msgstr "Rechercher" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "Nom de l'index" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Description" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "Utiliser cette valeur" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Aucun serveur blob streaming configuré!" @@ -129,7 +129,7 @@ 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:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "Commentaires sur la table" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -151,11 +151,11 @@ msgstr "Colonne" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -166,8 +166,8 @@ msgstr "Type" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -177,8 +177,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -187,8 +187,8 @@ msgstr "Défaut" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Relié à" @@ -197,8 +197,8 @@ msgstr "Relié à" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Commentaires" @@ -209,7 +209,7 @@ msgstr "Commentaires" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -230,7 +230,7 @@ msgstr "Non" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -361,7 +361,7 @@ msgstr "Éditer ou exporter un schéma relationnel" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -385,21 +385,21 @@ msgstr "utilisé" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Création" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Dernière modification" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Dernière vérification" @@ -498,7 +498,7 @@ msgstr "Exécuter la requête" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Accès refusé" @@ -532,7 +532,7 @@ msgstr[0] "%s occurence dans la table %s" msgstr[1] "%s occurences dans la table %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Afficher" @@ -544,10 +544,10 @@ msgstr "Supprimer de la table %s les occurences?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -665,12 +665,12 @@ msgstr "Tout décocher" msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exporter" @@ -680,13 +680,13 @@ msgstr "Exporter" msgid "Print view" msgstr "Version imprimable" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Vider" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -720,7 +720,7 @@ msgstr "Remplacer le préfixe de table" msgid "Copy table with prefix" msgstr "Copier la table avec un préfixe" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Dictionnaire de données" @@ -735,7 +735,7 @@ msgstr "Tables faisant l'objet d'un suivi" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Mis à jour" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "État" @@ -863,14 +863,14 @@ msgstr "" "Veuillez vous référer à la %sdocumentation%s pour des façons de contourner " "cette limite." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Le fichier n'a pu être lu" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -904,7 +904,7 @@ msgstr "Le signet a été effacé." msgid "Showing bookmark" msgstr "Affichage du signet" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Signet %s créé" @@ -932,7 +932,7 @@ msgstr "" "limite de temps de PHP ne soit augmentée." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1050,9 +1050,9 @@ msgstr "Fermer" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Modifier" @@ -1075,13 +1075,13 @@ msgstr "Données statiques" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Autres" @@ -1111,7 +1111,7 @@ msgstr "Trafic du serveur (en Kio)" msgid "Connections since last refresh" msgstr "Connexions depuis le dernier rafraîchissement" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Processus" @@ -1136,7 +1136,7 @@ msgstr "Statistiques sur les requêtes" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Impossible de lire le fichier de configuration" #: js/messages.php:94 @@ -1235,7 +1235,7 @@ msgstr "Octets envoyés" msgid "Bytes received" msgstr "Octets reçus" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Connexions" @@ -1244,12 +1244,12 @@ msgstr "Connexions" msgid "Questions" msgstr "Questions" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Trafic" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Paramètres" @@ -1272,7 +1272,7 @@ msgstr "Veuillez ajouter au moins une variable à la série" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Aucune" @@ -1496,7 +1496,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importer" @@ -1669,7 +1669,7 @@ msgid "Query execution time" msgstr "Durée d'exécution de la requête" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2093,25 +2093,25 @@ msgstr "Minute" msgid "Second" msgstr "Seconde" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Taille du texte" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "Le fichier n'était pas un fichier téléversé." -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "Erreur inconnue durant le téléversement." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2119,27 +2119,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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Le fichier n'a été que partiellement téléchargé." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Répertoire temporaire manquant." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Erreur lors de l'écriture du fichier sur disque." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Téléchargement arrêté par l'extension." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Erreur inconnue durant le téléchargement." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2147,11 +2147,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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "Erreur lors du déplacement du fichier téléversé." -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "Impossible de lire le fichier téléversé." @@ -2179,7 +2179,7 @@ msgid "Cardinality" msgstr "Cardinalité" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Commentaire" @@ -2202,14 +2202,14 @@ msgstr "" "Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être " "supprimé." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Bases de données" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2311,16 +2311,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Chemin des images inexistant pour le thème %s !" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Prévisualisation non disponible." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "utiliser celui-ci" @@ -2334,12 +2334,12 @@ msgstr "Thème par défaut %s inexistant !" msgid "Theme %s not found!" msgstr "Thème %s inexistant !" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Chemin non trouvé pour le thème %s !" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Thème" @@ -2348,7 +2348,7 @@ msgid "Cannot connect: invalid settings." msgstr "Connexion impossible: paramètres incorrects." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Bienvenue dans %s" @@ -2374,45 +2374,45 @@ msgstr "" "dans votre configuration et vous assurer qu'elles correspondent aux " "informations fournies par l'administrateur du serveur MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Connexion" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Documentation de phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Vous pouvez entrer le nom du serveur ou son adresse IP, ainsi que le port " "séparé par un espace." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Serveur : " -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Utilisateur : " -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Mot de passe : " -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Choix du serveur" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Vous devez accepter les cookies pour poursuivre." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2420,14 +2420,14 @@ msgstr "" "La configuration interdit une connexion sans mot de passe (voir " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Aucune activité depuis %s secondes ou plus, veuillez vous reconnecter" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Connexion au serveur MySQL non permise" @@ -2458,41 +2458,41 @@ msgstr "La clé d'authentification n'est pas branchée" msgid "Authenticating..." msgstr "Authentification en cours..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "Erreur PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "La connexion PBMS a échoué :" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "L'accès aux informations BLOB de PBMS a échoué :" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "L'accès au Content-Type du BLOB a échoué" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Afficher l'image" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Lecture audio" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Lecture vidéo" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Télécharger" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Échec d'ouverture du fichier %s" @@ -2635,7 +2635,7 @@ msgid "Documentation" msgstr "Documentation" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "Requête SQL" @@ -2645,7 +2645,7 @@ msgstr "Requête SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2694,7 +2694,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "En ligne" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profilage" @@ -2793,7 +2793,7 @@ msgid "Click to toggle" msgstr "Cliquer pour basculer" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2813,8 +2813,8 @@ msgstr "Structure" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insérer" @@ -2825,26 +2825,26 @@ msgstr "Insérer" msgid "Operations" msgstr "Opérations" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Parcourir :" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, 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/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Le répertoire de transfert est inaccessible" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Aucun fichier n'est disponible pour le transfert" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Exécuter" @@ -3010,7 +3010,7 @@ msgid "Allow users to customize this value" msgstr "Permettre aux utilisateurs de personnaliser cette valeur" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Réinitialiser" @@ -5354,8 +5354,8 @@ msgstr "Créer une nouvelle table sur la base %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5667,7 +5667,7 @@ msgstr "Trier sur l'index" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Options" @@ -5727,7 +5727,7 @@ msgid "The row has been deleted" msgstr "La ligne a été effacée" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Supprimer" @@ -6328,7 +6328,7 @@ msgstr "Afficher les types MIME" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Client" @@ -6559,7 +6559,7 @@ msgstr "Résultat de la requête SQL" msgid "Generated by" msgstr "Généré par" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a retourné un résultat vide (aucune ligne)." @@ -6666,7 +6666,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Nom de la table" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Nom des colonnes" @@ -7028,7 +7028,7 @@ msgstr "" "Reconnectez-vous à phpMyAdmin afin d'utiliser le fichier de configuration " "modifié." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "pas de description" @@ -7066,14 +7066,14 @@ msgid "Slave status" msgstr "État de l'esclave" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valeur" @@ -7137,7 +7137,7 @@ msgstr "Générer un mot de passe" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7173,14 +7173,14 @@ msgstr "" msgid "Edit event" msgstr "Modifier l'événement" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Erreur dans le traitement de la requête" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Détails" @@ -7193,7 +7193,7 @@ msgstr "Nom de l'événement" msgid "Event type" msgstr "Type d'évènement" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Changer pour %s" @@ -7220,7 +7220,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Définition" @@ -7229,12 +7229,12 @@ msgstr "Définition" msgid "On completion preserve" msgstr "À la fin, préserver" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "Créateur" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "Le définisseur doit suivre le format «utilisateur@machine»" @@ -7280,7 +7280,7 @@ msgid "Returns" msgstr "Retourne" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Moment" @@ -7299,7 +7299,7 @@ msgstr "" "échouer!Veuillez utiliser l'extension «mysqli» pour éviter ces problèmes." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Type de procédure invalide : «%s»" @@ -7318,69 +7318,69 @@ msgstr "La procédure %1$s a été modifiée." msgid "Routine %1$s has been created." msgstr "La procédure %1$s a été créée." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Modifier une procédure" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Nom de la procédure" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Paramètres" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Direction" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Taille/Valeurs*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Ajouter un paramètre" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Supprimer le dernier paramètre" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Type retourné" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Taille/Valeurs à retourner" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Options de retour" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "Est déterministe" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Type de sécurité" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "Accès aux données SQL" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "Vous devez fournir un nom pour la procédure" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "La direction «%s» fournie pour le paramètre est invalide." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7388,41 +7388,41 @@ msgstr "" "Vous devez fournir une longueur ou une valeur pour les paramètres de type " "ENUM, SET, VARCHAR et VARBINARY." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "Vous devez fournir un nom et un type pour chacun des paramètres." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "Vous devez fournir un type de retour valable pour la procédure." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "Vous devez fournir une définition pour la procédure." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d ligne a été affectée par le dernier énoncé de la procédure" msgstr[1] "%d lignes ont été affectées par le dernier énoncé de la procédure" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Résultats de l'exécution de la procédure %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Exécuter la procédure" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Paramètres de procédure" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Fonction" @@ -7552,7 +7552,7 @@ msgstr "Aucun évènement à afficher." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7561,7 +7561,7 @@ msgstr "La table %s n'existe pas !" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7569,9 +7569,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Les coordonnées de la table %s n'ont pas été configurées" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schéma de la base %s - Page %s" @@ -7584,105 +7584,105 @@ msgstr "Cette page ne contient aucune table!" msgid "SCHEMA ERROR: " msgstr "Erreur de schéma : " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Schéma relationnel" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Table des matières" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Attributs" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Créer une page" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Nom de la page" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Mise en page automatique" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Relations internes" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Page à éditer" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Choisissez la page" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Choisissez les tables" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Afficher le schéma relationnel" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Choisissez le type d'exportation des relations" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Grille" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Couleurs" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Dimension des tables" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Afficher toutes les tables avec une largeur identique" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Ne montrer que les clés" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Paysage" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portrait" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Orientation" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Taille du papier" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7690,17 +7690,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Éditeur visuel" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Langue inconnue: %1$s." @@ -7773,11 +7773,11 @@ msgstr "Vider" msgid "Columns" msgstr "Colonnes" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Conserver cette requête SQL dans les signets" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Signet visible pour les autres utilisateurs" @@ -8212,7 +8212,7 @@ msgstr "Version du protocole" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Utilisateur" @@ -8427,7 +8427,7 @@ msgstr "Agrandir/réduire tout" msgid "Toggle small/big" msgstr "Bascule agrandir/réduire" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Exporter les coordonnées pour le schéma PDF" @@ -8499,39 +8499,39 @@ msgstr "" "ou n'est plus la colonne descriptive, cliquer l'icône «Colonne descriptive», " "puis cliquer sur le nom de colonne approprié." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "La page a été créée" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Échec de création de page" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Page" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Importer depuis la page sélectionnée" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Exporter vers la page sélectionnée" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Créer une page et y exporter" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Nom de la nouvelle page : " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Exporter/Importer à l'échelle" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "recommandé" @@ -8646,12 +8646,12 @@ msgstr "Importe les fichiers" msgid "All" msgstr "Tout" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "La table %s est absente ou non définie dans %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Le fichier n'existe pas" @@ -8663,13 +8663,13 @@ msgstr "Sélectionnez le log binaire à consulter" msgid "Files" msgstr "Fichiers" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Afficher les requêtes tronquées" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Afficher les requêtes complètes" @@ -9513,8 +9513,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Questions depuis le démarrage : %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "par heure" @@ -9535,17 +9535,17 @@ msgstr "Information" msgid "#" msgstr "#" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Trafic réseau depuis le démarrage : %s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9553,19 +9553,19 @@ msgstr "" "Ce serveur est un serveur maître et esclave dans le processus " "de réplication." -#: server_status.php:963 +#: server_status.php:964 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:965 +#: server_status.php:966 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:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9573,11 +9573,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:978 +#: server_status.php:979 msgid "Replication status" msgstr "État de la réplication" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9586,35 +9586,35 @@ msgstr "" "dépassée, auquel cas les statistiques rapportées par MySQL peuvent être " "inexactes." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Reçu" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Envoyé" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "max. de connexions simultanées" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Tentatives échouées" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Arrêts prématurés" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Commande" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -9622,11 +9622,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:1189 +#: server_status.php:1190 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:1190 +#: server_status.php:1191 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 " @@ -9636,18 +9636,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:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 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:1193 +#: server_status.php:1194 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 " @@ -9660,11 +9660,11 @@ msgstr "" "tmp_table_size afin que les tables temporaires soient maintenues en mémoire " "au lieu d'être sur disque." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Le nombre de fichiers temporaires créés par mysqld." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9672,7 +9672,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:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9680,7 +9680,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:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9688,23 +9688,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Le nombre de lignes écrites via INSERT DELAYED." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Le nombre de commandes FLUSH exécutées." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Le nombre de commandes COMMIT internes." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9714,7 +9714,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:1203 +#: server_status.php:1204 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, " @@ -9725,7 +9725,7 @@ msgstr "" "d'un index; par exemple, SELECT col1 FROM foo, en assumant que col1 est une " "colonne indexée." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -9733,7 +9733,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:1205 +#: server_status.php:1206 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 " @@ -9743,7 +9743,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:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9751,7 +9751,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:1207 +#: server_status.php:1208 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 " @@ -9764,7 +9764,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:1208 +#: server_status.php:1209 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 " @@ -9776,35 +9776,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:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Le nombre d'énoncés ROLLBACK internes." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Le nombre de pages contenant des données." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Le nombre de pages contenant des données «dirty»." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Le nombre de pages libres." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9814,7 +9814,7 @@ msgstr "" "train d'être lues ou écrites, ou qui ne peuvent être supprimées pour une " "autre raison." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9826,11 +9826,11 @@ msgstr "" "comme suit: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Taille totale de la réserve, en pages." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9839,7 +9839,7 @@ msgstr "" "lorsqu'une requête doit balayer une large portion de table en ordre " "discontinu." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9847,11 +9847,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:1221 +#: server_status.php:1222 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:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9859,7 +9859,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:1223 +#: server_status.php:1224 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 " @@ -9873,51 +9873,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:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Le nombre d'écritures faites dans la réserve InnoDB." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Le nombre d'opérations fsync() faites jusqu'à présent." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Le nombre d'opérations fsync() actuellement en attente." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Le nombre actuel de lectures en attente." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Le nombre actuel d'écritures en attente." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "La quantité d'octets lus jusqu'à présent." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Le nombre total de lectures de données." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Le nombre total d'écritures de données." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "La quantité d'octets écrits jusqu'à présent." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "Le nombre d'opérations «doublewrite» effectuées." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -9925,35 +9925,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Le nombre de requêtes d'écritures sur le fichier témoin." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Le nombre d'écritures physiques au fichier témoin." -#: server_status.php:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Le nombre de synchronisations (fsync) du fichier témoin en attente." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Le nombre d'écritures du fichier témoin en attente." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Le nombre d'octets écrits sur le fichier témoin." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Le nombre de pages créées." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9962,51 +9962,51 @@ msgstr "" "valeurs sont comptées par page; la taille de page leur permet d'être " "facilement converties en octets." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Le nombre de pages lues." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Le nombre de pages écrites." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Le nombre de verrous d'enregistrements actuellement en attente." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Le nombre de lignes supprimées des tables InnoDB." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Le nombre de lignes insérées dans des tables InnoDB." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Le nombre de lignes lues dans des tables InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Le nombre de lignes mises à jour dans des tables InnoDB." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10015,7 +10015,7 @@ msgstr "" "pas encore transférés sur disque. Anciennement connu sous le nom " "Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10024,7 +10024,7 @@ msgstr "" "cette valeur pour déterminer la proportion de la cache de clés qui est " "utilisée." -#: server_status.php:1257 +#: server_status.php:1258 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 " @@ -10034,11 +10034,11 @@ msgstr "" "maximum du nombre de blocs qui ont été utilisés en même temps dans le cache " "de clés." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10049,15 +10049,15 @@ msgstr "" "petite. Le taux d'échec de la cache peut être calculé par Key reads/Key read " "requests." -#: server_status.php:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10068,18 +10068,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:1263 +#: server_status.php:1264 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:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10087,19 +10087,19 @@ msgstr "" "Le nombre tables qui ont été ouvertes. Si trop élevé, votre cache de table " "est probablement trop petite." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Le nombre de fichiers qui sont ouverts." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Le nombre de tables qui sont ouvertes." -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -10109,19 +10109,19 @@ msgstr "" "peut indiquer des problèmes de fragmentation, qui peuvent être réglés par la " "commande FLUSH QUERY CACHE." -#: server_status.php:1270 +#: server_status.php:1271 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:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Le nombre de succès dans la cache." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Le nombre de requêtes ajoutées à la cache." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10133,7 +10133,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:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10141,19 +10141,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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Le nombre de requêtes enregistrées dans la cache." -#: server_status.php:1276 +#: server_status.php:1277 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:1277 +#: server_status.php:1278 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:1278 +#: server_status.php:1279 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." @@ -10161,13 +10161,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10176,7 +10176,7 @@ msgstr "" "ligne. (Si ceci est supérieur à 0, vérifiez soigneusement les indexes de vos " "tables.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10184,19 +10184,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10204,11 +10204,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:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10216,14 +10216,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:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10232,23 +10232,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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Le nombre de tri effectués avec des plages." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Le nombre de lignes triées." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10260,7 +10260,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:1294 +#: server_status.php:1295 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 " @@ -10270,11 +10270,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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Le nombre de connexions ouvertes actuellement." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10287,63 +10287,63 @@ msgstr "" "perceptible de la performance si votre serveur gère correctement les fils " "d'exécution.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Le nombre de fils d'exécution non suspendus." -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "Démarrer la surveillance" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "Consignes / réglages" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "Terminé de modifier les graphiques" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "Ajouter un graphique" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "Modifier les graphiques" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Taux de rafraîchissement" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Chart columns:" msgid "Chart columns" msgstr "Colonnes du graphique :" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Gestion des erreurs : " -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Ramener la valeur par défaut" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "Consignes pour la surveillance" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10357,7 +10357,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:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10365,13 +10365,13 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Mettre la surveillance en pause" -#: server_status.php:1509 +#: server_status.php:1510 #, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " @@ -10398,7 +10398,7 @@ msgstr "" "déplaçant sur le graphique. Ceci va charger les statistiques à partir des " "journaux et vous aidera à trouver la cause du pic dans l'activité.

" -#: server_status.php:1511 +#: server_status.php:1512 #, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " @@ -10425,11 +10425,11 @@ msgstr "" "déplaçant sur le graphique. Ceci va charger les statistiques à partir des " "journaux et vous aidera à trouver la cause du pic dans l'activité.

" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 #, fuzzy #| msgid "" #| "Please note: Enabling the general_log may increase the server load " @@ -11016,12 +11016,12 @@ msgstr "Affichage de la requête SQL" msgid "Validated SQL" msgstr "SQL validé" -#: sql.php:890 +#: sql.php:918 #, 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:921 +#: sql.php:949 msgid "Label" msgstr "Intitulé" diff --git a/po/gl.po b/po/gl.po index fa37ab4b11..211a4cc00a 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" @@ -21,10 +21,10 @@ msgstr "Ver todos os rexistros" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Número de páxina:" @@ -40,8 +40,8 @@ msgstr "" "seguranza do navegador." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Procurar" @@ -49,25 +49,25 @@ msgstr "Procurar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "Nome chave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Descrición" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "Usar este valor" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -129,7 +129,7 @@ msgstr "Creouse a base de datos %1$s." msgid "Database comment: " msgstr "Comentario da base de datos: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "Comentarios da táboa" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -153,11 +153,11 @@ msgstr "Nomes das columnas" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -168,8 +168,8 @@ msgstr "Tipo" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -179,8 +179,8 @@ msgstr "Nulo" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -189,8 +189,8 @@ msgstr "Padrón" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Vincúlase con" @@ -199,8 +199,8 @@ msgstr "Vincúlase con" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Comentarios" @@ -211,7 +211,7 @@ msgstr "Comentarios" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -232,7 +232,7 @@ msgstr "Non" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -372,7 +372,7 @@ msgstr "Esquema relacional" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -396,21 +396,21 @@ msgstr "en uso" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Creación" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Actualización máis recente" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Comprobación máis recente" @@ -514,7 +514,7 @@ msgstr "Enviar esta procura" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Denegouse o acceso" @@ -549,7 +549,7 @@ msgstr[0] "%s ocorrencias(s) dentro da táboa %s" msgstr[1] "%s ocorrencias(s) dentro da táboa %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Visualizar" @@ -562,10 +562,10 @@ msgstr "A extraer datos da táboa" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -692,12 +692,12 @@ msgstr "Quitarlles as marcas a todos" msgid "Check tables having overhead" msgstr "Exceso na comprobación" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportar" @@ -707,13 +707,13 @@ msgstr "Exportar" msgid "Print view" msgstr "Visualización previa da impresión" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Borrar" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -753,7 +753,7 @@ msgstr "Substituír os datos da táboa polos do ficheiro" msgid "Copy table with prefix" msgstr "Substituír os datos da táboa polos do ficheiro" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Dicionario de datos" @@ -768,7 +768,7 @@ msgstr "Táboas seguidas" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -788,7 +788,7 @@ msgstr "Actualizada" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Estado" @@ -893,14 +893,14 @@ msgstr "" "Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a " "%sdocumentación%s para averiguar como evitar este límite." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Non se puido ler o ficheiro" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -931,7 +931,7 @@ msgstr "Eliminouse o marcador." msgid "Showing bookmark" msgstr "A mostrar o marcador" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Creouse o marcador %s" @@ -959,7 +959,7 @@ msgstr "" "non ser que lle incrementen os limites de tempo de php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1089,9 +1089,9 @@ msgstr "Fechar" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Modificar" @@ -1118,13 +1118,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1156,7 +1156,7 @@ msgstr "Escolla de servidor" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Procesos" @@ -1185,7 +1185,7 @@ msgstr "Mostrar as estatísticas" #: js/messages.php:93 #, fuzzy #| msgid "Cannot load or save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Non se puido cargar ou gravar a configuración" #: js/messages.php:94 @@ -1294,7 +1294,7 @@ msgstr "" msgid "Bytes received" msgstr "Recibido" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Conexións" @@ -1305,12 +1305,12 @@ msgstr "Conexións" msgid "Questions" msgstr "Versións" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Tráfico" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "settings" msgid "Settings" @@ -1339,7 +1339,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Ningunha" @@ -1569,7 +1569,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importar" @@ -1778,7 +1778,7 @@ msgid "Query execution time" msgstr "Tempo máximo de execución" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2266,27 +2266,27 @@ msgstr "en uso" msgid "Second" msgstr "por segundo" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Tamaño da letra" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Erro descoñecido ao enviar o ficheiro." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2294,37 +2294,37 @@ msgstr "" "O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no " "formulario HTML." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "O ficheiro enviado só se recibiu parcialmente." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Falta un directorio temporal." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Non se puido escribir no disco." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Detívose o envío do ficheiro por causa do engadido." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Erro descoñecido ao enviar o ficheiro." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Erro ao mover o ficheiro enviado. Consulte FAQ 1.11" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2352,7 +2352,7 @@ msgid "Cardinality" msgstr "Cardinalidade" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Comentario" @@ -2375,14 +2375,14 @@ msgstr "" "Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase " "eliminar un deles" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Bases de datos" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2493,16 +2493,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Non hai un camiño válido de imaxe para o tema %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Non se dispón de previsualización." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "cólleo" @@ -2516,12 +2516,12 @@ msgstr "Non se atopou o tema por omisión %s!" msgid "Theme %s not found!" msgstr "Non se atopou o tema %s!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Non se atopou o camiño do tema para o tema %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2530,7 +2530,7 @@ msgid "Cannot connect: invalid settings." msgstr "Non se pode conectar: os axustes non son válidos." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Reciba a benvida a %s" @@ -2556,52 +2556,52 @@ msgstr "" "e o contrasinal no ficheiro config.inc.php e asegurarse de que corresponden " "coa información proporcionada polo administrador do servidor do MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Entrada (login)" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Documentación do phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Pode escribir o nome de servidor/enderezo IP e o porto separados por un " "espazo." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Nome de usuario:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Contrasinal:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Escolla de servidor" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "A partir de aquí debe permitir cookies." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "A configuración prohibe rexistrarse sen contrasinal (vexa AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2609,8 +2609,8 @@ msgstr "" "Non se rexistrou actividade ningunha desde hai %s segundos ou máis. Terá que " "entrar de novo" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Non se dá conectado co servidor de MySQL" @@ -2645,41 +2645,41 @@ msgstr "Non se meteu ningunha chave de autenticación válida" msgid "Authenticating..." msgstr "A autenticar..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "Codificación de caracteres (Collation) da conexión de MySQL" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Ver a imaxe" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Reproducir o son" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Ver o vídeo" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Descargar o ficheiro" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2827,7 +2827,7 @@ msgid "Documentation" msgstr "Documentación" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "orde SQL" @@ -2837,7 +2837,7 @@ msgstr "orde SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2890,7 +2890,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Motores" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Análise do desempeño" @@ -2991,7 +2991,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -3011,8 +3011,8 @@ msgstr "Estrutura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserir" @@ -3023,26 +3023,26 @@ msgstr "Inserir" msgid "Operations" msgstr "Operacións" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "directorio de recepción do servidor web" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Non se pode acceder ao directorio que designou para os envíos" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3220,7 +3220,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Reiniciar" @@ -5707,8 +5707,8 @@ msgstr "Crear unha táboa nova na base de datos %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -6083,7 +6083,7 @@ msgstr "Ordenar pola chave" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Opcións" @@ -6149,7 +6149,7 @@ msgid "The row has been deleted" msgstr "Eliminouse o rexistro" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Matar (kill)" @@ -6768,7 +6768,7 @@ msgstr "Tipos MIME dispoñíbeis" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Servidor" @@ -6982,7 +6982,7 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Xerado por" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou un conxunto vacío (ex. cero rexistros)." @@ -7086,7 +7086,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Nome da táboa" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Nomes das columnas" @@ -7460,7 +7460,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "sen descrición" @@ -7498,14 +7498,14 @@ msgid "Slave status" msgstr "Estado do escravo" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variábel" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valor" @@ -7569,7 +7569,7 @@ msgstr "Xerar un contrasinal" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7609,16 +7609,16 @@ msgstr "" msgid "Edit event" msgstr "Modificar o servidor" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesos" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7635,7 +7635,7 @@ msgstr "Tipo de evento" msgid "Event type" msgstr "Tipo de evento" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7665,7 +7665,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Fin" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7678,12 +7678,12 @@ msgstr "Descrición" msgid "On completion preserve" msgstr "Insercións completas" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7731,7 +7731,7 @@ msgid "Returns" msgstr "Tipo de retorno" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Tempo" @@ -7747,7 +7747,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7769,128 +7769,128 @@ msgstr "Eliminouse a táboa %s" msgid "Routine %1$s has been created." msgstr "Creouse a táboa %1$s." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Modo de edición" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutinas" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Ligazóns directas" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Tamaño/Definir*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Aplicar índice(s)" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Mudar o nome da base de datos para" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Tipo de retorno" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Tamaño/Definir*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcións da táboa" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Seguranza" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Permite executar rutinas almacenadas." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Rutinas" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Función" @@ -8055,7 +8055,7 @@ msgstr "Non hai ningún servidor configurado" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -8065,7 +8065,7 @@ msgstr "Non existe a táboa \"%s\"." #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -8073,9 +8073,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Configure as coordenadas da táboa %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8091,115 +8091,115 @@ msgstr "O ficheiro %s non contén ningún identificador de chave" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Esquema relacional" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Índice" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atributos" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Crear unha páxina nova" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Número de páxina:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Distribución automática" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Relacións internas" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Escolla unha páxina para modificar" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Seleccionar táboas" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Seleccionar táboas" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Esquema relacional" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Mostrar a grella" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Mostrar a cor" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Mostrar a dimensión das táboas" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "mostrar todas as táboas co mesmo ancho?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Só as chaves coñecidas" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Horizontal" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Vertical" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Creación" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Tamaño do papel" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8207,17 +8207,17 @@ msgstr "" "Esta páxina ten referencias a táboas que xa non existen. Quere eliminar esas " "referencias?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "conmutar o borrador" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Linguaxe descoñecida: %1$s." @@ -8294,11 +8294,11 @@ msgstr "Limpar" msgid "Columns" msgstr "Nomes das columnas" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Gardar esta procura de SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Permitir que calquera usuario poida acceder a este marcador" @@ -8790,7 +8790,7 @@ msgstr "Versión do protocolo" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Usuario" @@ -9017,7 +9017,7 @@ msgstr "Todo grande/pequeno" msgid "Toggle small/big" msgstr "Alternar pequeno/grande" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema PDF" @@ -9109,50 +9109,50 @@ msgstr "" "seleccione ou non como o campo a mostrar, prema a icona \"Escoller o campo a " "mostrar\" e a seguir o nome do campo apropiado." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Creouse a táboa %1$s." -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "páxinas" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importar ficheiros" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Exportar/Importar a escala" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Crear un índice novo" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nome do usuario" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Exportar/Importar a escala" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "recomendado" @@ -9269,12 +9269,12 @@ msgstr "Importar ficheiros" msgid "All" msgstr "Todos" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Non se atopou a táboa %sou non se indicou en %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9288,13 +9288,13 @@ msgstr "Seleccione o ficheiro de rexistro binario que queira ver" msgid "Files" msgstr "Ficheiros" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Interrumpir as procuras mostradas" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Mostrar as procuras completas" @@ -10149,8 +10149,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Personalizar a páxina de inicio" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "por hora" @@ -10171,18 +10171,18 @@ msgstr "Informacións" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 "Este servidor de MySQL leva funcionando %s. Iniciouse às %s." -#: server_status.php:961 +#: server_status.php:962 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -10191,21 +10191,21 @@ msgid "" msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_status.php:963 +#: server_status.php:964 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as master in replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_status.php:965 +#: server_status.php:966 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "This MySQL server works as slave in replication process." msgstr "" "Este servidor está configurado como principal nun proceso de replicación." -#: server_status.php:968 +#: server_status.php:969 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -10219,11 +10219,11 @@ msgstr "" "b>. Para máis información acerca do estado de replicación do servidor visite " "a sección sobre replicación." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Estado da replicación" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10232,47 +10232,47 @@ msgstr "" "que esas estatísticas, tal e como as transmite o servidor de MySQL, poden " "resultar incorrectas." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Recibido" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Enviado" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "conexións simultáneas máximas" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Tentativas falidas" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Cancelado" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "Identificador" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Orde" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Non se puido conectar co servidor de MySQL" -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -10282,16 +10282,16 @@ msgstr "" "excederon o valor de binlog_cache_size e utilizaron un ficheiro temporal " "para almacenar instrucións para a transacción." -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "Número de transaccións que utilizaron o caché do rexistro binario." -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -10303,11 +10303,11 @@ msgstr "" "incremente o valor de tmp_table_size para que as táboas temporais se baseen " "na memoria en vez de no disco." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Número de ficheiros temporais creados por mysqld." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10315,7 +10315,7 @@ msgstr "" "Número de táboas temporais na memoria creadas automaticamente polo servidor " "ao executar instrucións." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10323,7 +10323,7 @@ msgstr "" "Número de fileiras escritas con INSERT DELAYED que sofriron algún erro " "(probabelmente unha chave duplicada)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10331,23 +10331,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Número de fileiras INSERT DELAYED escritas." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Número de instrucións FLUSH executadas." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Número de instrucións COMMIT internas." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -10357,7 +10357,7 @@ msgstr "" "se sabe dunha táboa cun nome dado. Isto chámase descuberta. " "Handler_discovery indica o número de veces que se descobriron táboas." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -10368,7 +10368,7 @@ msgstr "" "completos; por exemplo, SELECT col FROM algo, supoñendo que col estea " "indexada." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -10376,7 +10376,7 @@ msgstr "" "Número de peticións para ler unha fileira baseadas nunha chave. Se for alto, " "é unha boa indicación de que as procuras e táboas están ben indexadas." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -10386,7 +10386,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:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10394,7 +10394,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:1207 +#: server_status.php:1208 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 " @@ -10406,7 +10406,7 @@ msgstr "" "Posibelmente terá un monte de procuras que esixan que MySQL examine táboas " "completas ou ten unións que non usan as chaves axeitadamente." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -10418,35 +10418,35 @@ msgstr "" "táboas non están indexadas axeitadamente ou que as súas procuras non están " "escritas para aproveitar os índices de que dispón." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Número de instrucións de ROLLBACK (\"desfacer\") interno." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 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:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Número de páxinas actualmente suxas." -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Número de páxinas do búfer que se pediu que se limpasen." -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Número de páxinas libres." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -10456,7 +10456,7 @@ msgstr "" "actualmente a ser lidas ou escritas ou non se poden limpar ou eliminar por " "algunha outra razón." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -10468,11 +10468,11 @@ msgstr "" "se pode calcular así: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Tamaño total do búfer, en páxinas." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10481,7 +10481,7 @@ msgstr "" "cando unha procura vai examinar unha porción grande dunha táboa mais en orde " "aleatoria." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10489,11 +10489,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:1221 +#: server_status.php:1222 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:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10501,7 +10501,7 @@ msgstr "" "Número de lecturas lóxicas que InnoDB non puido satisfacer do búfer e tivo " "que efectuar por medio de lecturas dunha única páxina." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -10515,55 +10515,55 @@ msgstr "" "que esperar. Se o tamaño do búfer é o axeitado, este valor debería ser " "pequeno." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Número de veces que se escribiu no búfer InnoDB." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Número de operacións fsync() até o momento." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Número actual de operacións fsync() pendentes." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Número actual de lecturas pendentes." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Número actual de escritas pendentes." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Cantidade de datos lida até o momento, en bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Número total de lecturas de datos." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Número total de escritas de datos." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Cantidade de datos escrita até o momento, en bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -10571,35 +10571,35 @@ msgstr "" "Número de esperas debidas a que o búfer do rexistro é demasiado pequeno e " "houbo que agardar até que se limpase para continuar." -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Número de peticións de escrita no rexistro." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Número de escritas físicas no ficheiro de rexistro." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Número de escritas fsyncss feitas no ficheiro de rexistro." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Número de fsyncs do ficheiro de rexistro pendentes." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Escritas no ficheiro de rexistro pendentes." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Número de bytes escritos no ficheiro de rexistro." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Número de páxinas creadas." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10608,55 +10608,55 @@ msgstr "" "cóntanse en páxinas: o tamaño da páxina permite que se convirtan doadamente " "en bytes." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Número de páxinas lidas." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Número de páxinas escritas." -#: server_status.php:1246 +#: server_status.php:1247 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:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Número de fileiras eliminadas das táboas InnoDB." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Número de fileiras inseridas nas táboas InnoDB." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Número de fileiras lidas das táboas InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Número de fileiras actualizadas en táboas InnoDB." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10664,7 +10664,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:1256 +#: server_status.php:1257 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." @@ -10672,7 +10672,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:1257 +#: server_status.php:1258 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 " @@ -10682,11 +10682,11 @@ msgstr "" "referencia superior que indica o número máximo de bloques que se teñen " "empregado." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10696,15 +10696,15 @@ 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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10715,19 +10715,19 @@ msgstr "" "procura diferentes para a mesma pesquisa. O valor por omisión é 0, que " "significa que aínda non se compilou ningunha procura." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Número de procuras que están a agardar para seren escritas nas fileiras " "INSERT DELAYED." -#: server_status.php:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10735,38 +10735,38 @@ msgstr "" "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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Número de ficheiros abertos." -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "Número de fluxos abertos (utilizado principalmente para o rexistro)." -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Número de táboas abertas." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Cantidade de memoria libre para a caché de procuras." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Número de impactos na caché." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Número de procuras adicionadas na caché." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10778,7 +10778,7 @@ msgstr "" "caché de procuras. A caché de procuras utiliza unha estratexia de utilizado " "menos recentemente (LRU) para decidir que procuras debe eliminar da caché." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10786,19 +10786,19 @@ msgstr "" "Número de procuras non enviadas á caché (que non se poden enviar debido á " "configuración de query_cache_type)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Número de procuras rexistradas na caché." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Número total de bloques na caché de procuras." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Estado da replicación en modo seguro (aínda non realizado)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10806,13 +10806,13 @@ msgstr "" "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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" "Número de unións que utilizaron un intervalo de procura nunha táboa de " "referencia." -#: server_status.php:1280 +#: server_status.php:1281 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.)" @@ -10821,7 +10821,7 @@ msgstr "" "cada fileira (se non for 0, debería comprobar con atención os índices das " "táboas)." -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10829,15 +10829,15 @@ msgstr "" "Número de unións que utilizaron intervalos na primeira táboa (Normalmente " "non é grave, mesmo de ser grande)" -#: server_status.php:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "Número de unións que realizaron un exame completo da primeira táboa." -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Número de táboas temporais abertas actualmente polo fío SQL escravo." -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10845,11 +10845,11 @@ msgstr "" "Número total de veces (desde o inicio) que o fío de replicación SQL escravo " "reintentou as transaccións." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10857,14 +10857,14 @@ msgstr "" "Número de fíos aos que lles levou crearse máis segundos dos indicados en " "slow_launch_time." -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" "Número de procuras ás que lles levou máis segundos dos indicados en " "long_query_time." -#: server_status.php:1288 +#: server_status.php:1289 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 " @@ -10874,23 +10874,23 @@ msgstr "" "este valor for grande, sería ben que considerase incrementar o valor da " "variábel de sistema sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Número de ordenacións feitas con intervalos." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Número de fileiras ordenadas." -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "Número de ordenacións realizadas examinando a táboa." -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "Número de veces que se adquiriu inmediatamente un bloqueo de táboa." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10902,7 +10902,7 @@ msgstr "" "debería en primeiro lugar mellorar as procuras e despois, ora partir a táboa " "ou táboas, ora utilizar replicación." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10912,11 +10912,11 @@ msgstr "" "calcular como Threads_created/Connections. Se este valor for vermello, " "debería aumentar a thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Número de conexións abertas neste momento." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10928,69 +10928,69 @@ msgstr "" "non fornece unha mellora notábel no desempeño se ten unha boa implementación " "de fíos.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Número de fíos que non están a durmir." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Inicio" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Aplicar índice(s)" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Refrescar" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "Columnas de área de texto de CHAR" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Xestión de erros:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Volver ao valor por omisión" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy msgid "Monitor Instructions" msgstr "Información" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10999,7 +10999,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11007,11 +11007,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -11019,7 +11019,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -11027,11 +11027,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11683,12 +11683,12 @@ msgstr "Mostrar procura SQL" msgid "Validated SQL" msgstr "Validar o SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas cos índices da táboa `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Nome" diff --git a/po/he.po b/po/he.po index 87b4593b04..a19bc0cbf2 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" @@ -21,10 +21,10 @@ msgstr "הצג הכל" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "מספר דף:" @@ -36,8 +36,8 @@ msgid "" msgstr "עדכון חלון הדפדפן הנבחר נכשל." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "חיפוש" @@ -45,25 +45,25 @@ msgstr "חיפוש" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -85,7 +85,7 @@ msgstr "שמות מפתח" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "תיאור" @@ -95,7 +95,7 @@ msgid "Use this value" msgstr "השתמש בערך זה" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -123,7 +123,7 @@ msgstr "מסד הנתונים %s נמחק." msgid "Database comment: " msgstr "הערה על מאגר הנתונים: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -132,8 +132,8 @@ msgstr "הערות טבלה" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -147,11 +147,11 @@ msgstr "שמות עמודה" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -162,8 +162,8 @@ msgstr "סוג" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -173,8 +173,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -183,8 +183,8 @@ msgstr "ברירת מחדל" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "קישורים אל" @@ -193,8 +193,8 @@ msgstr "קישורים אל" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "הערות" @@ -205,7 +205,7 @@ msgstr "הערות" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -226,7 +226,7 @@ msgstr "לא" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -364,7 +364,7 @@ msgstr "הצגת תרשים PDF" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -388,21 +388,21 @@ msgstr "בשימוש" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "יצירה" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "עדכון אחרון" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "נבדק לאחרונה" @@ -506,7 +506,7 @@ msgstr "שליחת שאילתה" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "גישה נדתחה" @@ -540,7 +540,7 @@ msgstr[0] "" msgstr[1] "" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "עיון" @@ -553,10 +553,10 @@ msgstr "הוצאת מידע עבור טבלה" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -682,12 +682,12 @@ msgstr "בטל סימון הכל" msgid "Check tables having overhead" msgstr "בדיקת טבלאות עבור תקורה" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "ייצוא" @@ -697,13 +697,13 @@ msgstr "ייצוא" msgid "Print view" msgstr "תצוגת הדפסה" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "ריקון" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -741,7 +741,7 @@ msgstr "החלפת נתוני הטבלה עם הקובץ" msgid "Copy table with prefix" msgstr "החלפת נתוני הטבלה עם הקובץ" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "מילון מידע" @@ -756,7 +756,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -777,7 +777,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "מצב" @@ -882,14 +882,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "נכשל בקריאת הקובץ" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -915,7 +915,7 @@ msgstr "כתובת מועדפת נמחקה." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -938,7 +938,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1063,9 +1063,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "עריכה" @@ -1091,13 +1091,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "סה\"כ" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1129,7 +1129,7 @@ msgstr "בחירת שרת" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "תהליכים" @@ -1155,7 +1155,7 @@ msgid "Query statistics" msgstr "סטטיסטיקת שורה" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1259,7 +1259,7 @@ msgstr "" msgid "Bytes received" msgstr "התקבל" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "חיבורים" @@ -1269,12 +1269,12 @@ msgstr "חיבורים" msgid "Questions" msgstr "Persian" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Traffic" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1301,7 +1301,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "ללא" @@ -1525,7 +1525,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1725,7 +1725,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2202,60 +2202,60 @@ msgstr "בשימוש" msgid "Second" msgstr "לשנייה" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 #, 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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2283,7 +2283,7 @@ msgid "Cardinality" msgstr "מספור" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2305,14 +2305,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "מאגרי נתונים" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2412,16 +2412,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "קח זאת" @@ -2435,12 +2435,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2449,7 +2449,7 @@ msgid "Cannot connect: invalid settings." msgstr "חיבור נכשל: הגדרות לא תקינות." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "ברוך הבא אל %s" @@ -2472,56 +2472,56 @@ msgstr "" "כתובת השרת, שם משתמש והסיסמא בקובץ config.inc.php ולוודא כי הם תואמים למידע " "שקיבלת ע\"י אחראי השרת של MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "כניסה" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "תיעוד phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "שרת" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "שם משתמש:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "סיסמא:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "בחירת שרת" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "עוגיות (Cookies) חייבות לפעול מנקודה זאת." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "נכשל בכניסה לשרת MySQL" @@ -2552,41 +2552,41 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "קידוד חיבור MySQL" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2723,7 +2723,7 @@ msgid "Documentation" msgstr "תיעוד" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "שאילתת SQL" @@ -2733,7 +2733,7 @@ msgstr "שאילתת SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2785,7 +2785,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "מנועים" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2886,7 +2886,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2906,8 +2906,8 @@ msgstr "מבנה" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "הכנסה" @@ -2918,25 +2918,25 @@ msgstr "הכנסה" msgid "Operations" msgstr "פעולות" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format msgid "Select from the web server upload directory %s:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3112,7 +3112,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "איפוס" @@ -5354,8 +5354,8 @@ msgstr "יצירת טבלה חדשה על מאגר נתונים %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5693,7 +5693,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5761,7 +5761,7 @@ msgid "The row has been deleted" msgstr "השורה נמחקה" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "" @@ -6318,7 +6318,7 @@ msgstr "סוגי MIME זמינים" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "מארח" @@ -6532,7 +6532,7 @@ msgstr "תוצאת SQL" msgid "Generated by" msgstr "נוצר ע\"י" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." @@ -6630,7 +6630,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "שמות עמודה" @@ -6992,7 +6992,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "ללא תיאור" @@ -7027,14 +7027,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "משתנה" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "ערך" @@ -7094,7 +7094,7 @@ msgstr "ייצור סיסמא" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7131,16 +7131,16 @@ msgstr "" msgid "Edit event" msgstr "נשלח" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "תהליכים" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7155,7 +7155,7 @@ msgstr "סוג אירוע" msgid "Event type" msgstr "סוג אירוע" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7184,7 +7184,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "סיום" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7197,12 +7197,12 @@ msgstr "תיאור" msgid "On completion preserve" msgstr "השלם הכנסות" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7250,7 +7250,7 @@ msgid "Returns" msgstr "אפשרויות טבלה" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "זמן" @@ -7267,7 +7267,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7287,123 +7287,123 @@ msgstr "טבלה %s נמחקה" msgid "Routine %1$s has been created." msgstr "טבלה %s נמחקה" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "שמות עמודה" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "יצירה" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "אורך/ערכים*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "הוספת שדה חדש" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "שינוי שם מאגר נתונים אל" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "אורך/ערכים*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "אפשרויות טבלה" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "סוג שאילתה" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format msgid "Execution results of routine %s" msgstr "מאפשר יצירת שגרות מאוחסנות." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "פונקציה" @@ -7552,7 +7552,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7562,7 +7562,7 @@ msgstr "הטבלה \"%s\" לא קיימת!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7570,9 +7570,9 @@ msgid "Please configure the coordinates for table %s" msgstr "אנא הגדר נקודות ציון עבור טבלה %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -7585,115 +7585,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "תוכן עניניים" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "תכונות" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "תוספת" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "יצירת עמוד חדש" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "מספר דף:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "עיצוב אוטומטי" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "יחסים פנימיים" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "אנא בחר עמוד לעריכה" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "בחירת הכל" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "בחירת טבלאות" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "הצגת תרשים PDF" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "הראה רשת" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "ראיית צבע" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "ראיית ממדים של טבלאות" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "הצגת כל הטבלאות ברוחב דומה?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portrait" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "יצירה" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "גודל דף" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7701,17 +7701,17 @@ msgstr "" "לעמוד הנוכחי יש הפניות לטבלאות שכבר לא קיימות. האם אתה רוצה למחוק את הפניות " "אלו?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "rtl" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7791,11 +7791,11 @@ msgstr "לוח שנה" msgid "Columns" msgstr "שמות עמודה" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" @@ -8187,7 +8187,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "משתמש" @@ -8386,7 +8386,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8471,50 +8471,50 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "טבלה %s נמחקה" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "דפים" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "קבצי ייבוא" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "לא נבחרו שורות" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "יצירת אינדקס חדש" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "שם משתמש" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8625,12 +8625,12 @@ msgstr "קבצי ייבוא" msgid "All" msgstr "הכל" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "טבלה %s לא נמצאה או לא קיימת בתוך %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8645,13 +8645,13 @@ msgstr "" msgid "Files" msgstr "שדות" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "הראה שאילתות שלמות" @@ -9471,8 +9471,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "לשעה" @@ -9493,102 +9493,102 @@ msgstr "משפטים" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "התקבל" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "נשלח" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "ניסיונות כושלים" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "בוטל" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "קוד זיהוי" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "פקודה" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9596,78 +9596,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9675,7 +9675,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9683,42 +9683,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9726,33 +9726,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9761,227 +9761,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9989,99 +9989,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10089,18 +10089,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10108,64 +10108,64 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "שבת" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "הוספת שדה חדש" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "רענון" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "הוספת/מחיקת עמודות שדה" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10174,7 +10174,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10182,11 +10182,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10194,7 +10194,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10202,11 +10202,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10739,12 +10739,12 @@ msgstr "" msgid "Validated SQL" msgstr "בדיקת תקינות SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "בעיות עם אינדקסים של טבלה `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "תווית" diff --git a/po/hi.po b/po/hi.po index 91116c8a28..70e2b6b1a2 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-07-24 19:04+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" @@ -21,10 +21,10 @@ msgstr "सभी दिखाएँ" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "पृष्ठ संख्या:" @@ -38,8 +38,8 @@ msgstr "" "या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "ढूंढें" @@ -47,25 +47,25 @@ msgstr "ढूंढें" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "मुख्यनाम" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "वर्णन" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "इस मान का उपयोग करें" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "ब्लोब स्ट्रीमिंग सर्वर संरचना उपस्थित नहीं है !" @@ -127,7 +127,7 @@ msgstr "%1$s डेटाबेस बनाया गया है." msgid "Database comment: " msgstr "डाटाबेस टिप्पणि: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -136,8 +136,8 @@ msgstr "टेबल टिप्पणि:" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -149,11 +149,11 @@ msgstr "स्तम्भ" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -164,8 +164,8 @@ msgstr "प्रकार/किस्म" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -175,8 +175,8 @@ msgstr "शून्य" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -185,8 +185,8 @@ msgstr "तयशुदा" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "के लिए लिंक" @@ -195,8 +195,8 @@ msgstr "के लिए लिंक" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "टिप्पणी" @@ -207,7 +207,7 @@ msgstr "टिप्पणी" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -228,7 +228,7 @@ msgstr "नहीं" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -359,7 +359,7 @@ msgstr "संबंधपरक स्कीमा को संपादित #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -383,21 +383,21 @@ msgstr "उपयोग में है" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "रचना" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "पिछला नवीनीकरण" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "पिछली जाँच" @@ -496,7 +496,7 @@ msgstr "क्वरी भेजें" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "पहुँच निषेधित" @@ -530,7 +530,7 @@ msgstr[0] "%s टेबल के अंदर %s मैच हैं." msgstr[1] "%s टेबल के अंदर %s मैच हैं." #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "ब्राउज़" @@ -542,10 +542,10 @@ msgstr "इस %s टेबल से मैच हटाएँ" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -661,12 +661,12 @@ msgstr "सभी को अनचेक करें" msgid "Check tables having overhead" msgstr "ओवर्हेअद वाली तालुकाओं को चेक करें." -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "निर्यात" @@ -676,13 +676,13 @@ msgstr "निर्यात" msgid "Print view" msgstr "छपाई द्रश्य." -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "खाली" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -716,7 +716,7 @@ msgstr "टेबल के उपसर्ग को पुनर्स्थ msgid "Copy table with prefix" msgstr "टेबल को इस उपसर्ग के साथ प्रतिलिपि बनाएँ" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "डेटा शब्दकोश" @@ -731,7 +731,7 @@ msgstr "ट्रैक की गयी टेबलएं" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -751,7 +751,7 @@ msgstr "अद्यतन" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "स्थिति" @@ -855,14 +855,14 @@ msgstr "" "आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s " "दोकुमेंताशन%s पढ़ें." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "फाइल पढ़ी नहीं जा सकती. " #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -893,7 +893,7 @@ msgstr "यह बुकमार्क हटा दिया गया है" msgid "Showing bookmark" msgstr "बुकमार्क प्रदर्शित किया जा रहा है." -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "बुकमार्क %s बनाया" @@ -919,7 +919,7 @@ msgstr "" "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1035,9 +1035,9 @@ msgstr "बंद" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "सम्पादन" @@ -1064,13 +1064,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "कुल" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1102,7 +1102,7 @@ msgstr "सर्वर चुनिये" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "प्रक्रियां" @@ -1129,7 +1129,7 @@ msgstr "डाटाबेसों के सांख्यिकी" #: js/messages.php:93 #, fuzzy #| msgid "Could not save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "विन्यास सहेज नहीं सकते" #: js/messages.php:94 @@ -1238,7 +1238,7 @@ msgstr "" msgid "Bytes received" msgstr "प्राप्त" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "कनेक्शन" @@ -1249,12 +1249,12 @@ msgstr "कनेक्शन" msgid "Questions" msgstr "संस्करण" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "ट्रैफ़िक" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1283,7 +1283,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "कोई नहीं" @@ -1511,7 +1511,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "आयात" @@ -1698,7 +1698,7 @@ msgid "Query execution time" msgstr "अधिकतम निष्पादन समय" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2125,51 +2125,51 @@ msgstr "मिनट" msgid "Second" msgstr "सेकंड" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "फ़ॉन्ट का आकार" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है." -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "एक अस्थायी फ़ोल्डर गुम है." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "डिस्क में फ़ाइल लिखने में असफल" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2177,11 +2177,11 @@ msgstr "" "अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [a@. \"Documentation.html # " "faq1_1 @ प्रलेखन] अकसर किये गए सवाल 1,11 [/ a] देखें." -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2209,7 +2209,7 @@ msgid "Cardinality" msgstr "प्रमुखता" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "टिप्पणी" @@ -2230,14 +2230,14 @@ msgid "" "removed." msgstr "सूचकांक %1s और %2s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "डाटाबेस" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2343,16 +2343,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "विषय %s के लिए कोई वैध छवि पथ नहीं पाया है!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "पूर्वावलोकन उपलब्ध नहीं." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "इसे ले लो" @@ -2366,12 +2366,12 @@ msgstr "डिफ़ॉल्ट विषयवस्तु %s नहीं म msgid "Theme %s not found!" msgstr "विषयवस्तु %s नहीं मिला है!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "विषय %s के लिए थीम पथ नहीं मिला है!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2380,7 +2380,7 @@ msgid "Cannot connect: invalid settings." msgstr "अमान्य सेटिंग्स: कनेक्ट नहीं कर सकते हैं" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%s मे स्वागत है" @@ -2405,56 +2405,56 @@ msgstr "" "अपने मेजबान विन्यास में, यूसर नाम और पासवर्ड की जाँच करें और इत्मीनान कर ले की ये " "उपयोगकरता नाम और पासवर्ड MySQL सर्वर के व्यवस्थापक द्वारा दी गई जानकारी के अनुरूप हैं." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "लोगिन" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin दस्तावेज़ीकरण" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "आप होस्टनाम / आईपी पता और पोर्ट स्पचे से अलग कर के दाल सकते हैं." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "सर्वर:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "उपयोक्तानाम:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "पासव्रड:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "सर्वर चुनिये" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "कुकीज़ इस बिंदु अतीत सक्षम होना चाहिए." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "पासवर्ड के बिना लॉग इन विन्यास से मना किया गया है (AllowNoPassword देखें)." -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s सेकंड के भीतर कोई गतिविधि नहीं है. कृपया फिर से लोगिन करें." -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL सर्वर में प्रवेश नहीं कर सकते" @@ -2487,41 +2487,41 @@ msgstr "कोई वैध प्रमाणीकरण कुंजी न msgid "Authenticating..." msgstr "सत्यापन." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS त्रुटि" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS कनेक्शन विफल" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS प्राप्त जानकारी BLOB विफल" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "प्राप्त BLOB प्रकार विफल" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "छवि देखें" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "ऑडियो चलायें" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "वीडियो देखें" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "फाइल डाउनलोड करें" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "%s फ़ाइल नहीं खोल सकता" @@ -2659,7 +2659,7 @@ msgid "Documentation" msgstr "डोक्युमेंटेशन" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL क्वरी" @@ -2669,7 +2669,7 @@ msgstr "SQL क्वरी" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2718,7 +2718,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "इनलाइन" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "रूपरेखा" @@ -2821,7 +2821,7 @@ msgid "Click to toggle" msgstr "चयन करने के लिए क्लिक करें." #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2841,8 +2841,8 @@ msgstr "संरचना" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "इनसर्ट" @@ -2853,25 +2853,25 @@ msgstr "इनसर्ट" msgid "Operations" msgstr "कार्रवाई" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "अपने कंप्यूटर ब्राउज़ करें" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "अपने वेब सर्वर डिरेक्टरी से अपलोड चुने %s; " -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3038,7 +3038,7 @@ msgid "Allow users to customize this value" msgstr "कर्ता को इस मूल्य को अनुकूलित करने की अनुमति दें " #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "रीसेट" @@ -5256,8 +5256,8 @@ msgstr "%s डाटाबेस मे नया टेबल बनाओ" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5560,7 +5560,7 @@ msgstr "कुंजी सॉर्ट" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "विकल्प" @@ -5620,7 +5620,7 @@ msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "" @@ -6164,7 +6164,7 @@ msgstr "फीचरस दिखाओ" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "होस्ट" @@ -6379,7 +6379,7 @@ msgstr "SQLपरिणाम" msgid "Generated by" msgstr "द्वारा उत्पन्न" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ने एक खाली परिणाम सेट लोताया" @@ -6481,7 +6481,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "टेबल का नाम" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "कोलम के नाम" @@ -6841,7 +6841,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "कोई विवरण नहीं" @@ -6876,14 +6876,14 @@ msgid "Slave status" msgstr "स्लाव की स्थिति" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "स्थिति" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "मूल्य" @@ -6943,7 +6943,7 @@ msgstr "पासवर्ड उत्पन्न" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -6983,16 +6983,16 @@ msgstr "" msgid "Edit event" msgstr "सर्वर को संपादित करें" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "याचिका प्रसंस्करणमें त्रुटि" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7009,7 +7009,7 @@ msgstr "इवेंट प्रकार " msgid "Event type" msgstr "इवेंट प्रकार " -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7037,7 +7037,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "आखरी" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7050,12 +7050,12 @@ msgstr "वर्णन" msgid "On completion preserve" msgstr "पूरा इनसर्टस" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7103,7 +7103,7 @@ msgid "Returns" msgstr "रिटर्न प्रकार" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "समय" @@ -7119,7 +7119,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7141,128 +7141,128 @@ msgstr "टेबल %s को रद्द किया गया है." msgid "Routine %1$s has been created." msgstr "%1$s टेबल बना दिया गया है" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "संपादन मोड" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "नियमित कार्य" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "सीधे संपर्क" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "लंबाई/अर्थ*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add index" msgid "Add parameter" msgstr "अनुक्रमणिका जोड़" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "डेटाबेस को हटा दे" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "रिटर्न प्रकार" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "लंबाई/अर्थ*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "टेबल विकल्प" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "सुरक्षा" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "नियमित कार्य" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "" @@ -7427,7 +7427,7 @@ msgstr "अपलोड करने के लिए फाइल उपलब #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7437,7 +7437,7 @@ msgstr "%s टेबल(s) मौजूद नहीं है" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7445,9 +7445,9 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -7462,131 +7462,131 @@ msgstr "%s फाइल में कोई भी प्रमुख आईड msgid "SCHEMA ERROR: " msgstr "स्कीमा त्रुटि" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "संबंधपरक स्कीमा" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "लेख - सूची" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "विशेषता" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "अतिरिक्त" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "नया पेज़ बनाऐं" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "पृष्ठ नाम:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "स्वचालित लेआउट आधार पर" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "आंतरिक संबंध" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "विदेशी कुंजी" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "एडिट करने के लिये पेज़ चुने" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "पेज चुनिये" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "टेबल चुनिये" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "PDF स्कीमा दिखाओ" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "ग्रिड दिखाओ" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "रंग दिखाओ" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "टेबल के परिमाण दिखाओ" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "समान चौड़ाई के सभी टेबल को प्रदर्शित करें. " -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "केवल कुंजी दिखाओ" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "परिदृश्य" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "चित्र" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "अभिविन्यास" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "पेपर आकार" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "आईटीआर" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "अज्ञात भाषा: %1$s." @@ -7661,11 +7661,11 @@ msgstr "स्पष्ट" msgid "Columns" msgstr "कोलम" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" @@ -8038,7 +8038,7 @@ msgstr "अधिक सेटिंग्स" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "यूसर" @@ -8231,7 +8231,7 @@ msgstr "सभी छोटे/बड़े" msgid "Toggle small/big" msgstr "टोग्ल छोटे/बड़े" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8316,45 +8316,45 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "पेज बना दिया गया है" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "पेज बना दिया गया है" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "पेज" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "चयनित पेज से आयात" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "चयनित पेज को निर्यात" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "एक पेज बनाएँ और इसमें निर्यात करिएँ" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "नया पेज के नाम" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "निर्यात/आयात पैमाने पर" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "सिफारिश" @@ -8461,12 +8461,12 @@ msgstr "फ़ाइलें आयात करें" msgid "All" msgstr "सभी" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "%s table(s)" msgid "File doesn't exist" @@ -8480,13 +8480,13 @@ msgstr "द्विआधारी लॉग देखने के लिए msgid "Files" msgstr "फाइलें" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "पूर्ण क्वरीों को दिखाएँ" @@ -9298,8 +9298,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "स्टार्टअप पेज अनुकूलित करें" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "प्रति घंटे" @@ -9320,103 +9320,103 @@ msgstr "रो आँकड़े" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "प्रतिकृति स्थिति" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "प्राप्त" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "भेजा" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "अधिकतम वर्तमान कनेक्शन" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "असफल प्रयास" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "रद्द" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "आदेश" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "लेनदेन की संख्या जिन्होंने अस्थायी द्विआधारी लॉग कैश का प्रयोग किया" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9424,78 +9424,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "mysqld ने कितनी अस्थायी फ़ाइलें बनायीं" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9503,7 +9503,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9511,42 +9511,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9554,33 +9554,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9589,227 +9589,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9817,99 +9817,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9917,18 +9917,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9936,66 +9936,66 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" msgstr "क्षेत्र रोयाँ" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "अनुक्रमणिका जोड़" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "ताज़ा करना" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "मूलभूत मान को बहाल" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10004,7 +10004,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10012,11 +10012,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10024,7 +10024,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10032,11 +10032,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10566,12 +10566,12 @@ msgstr "SQL क्वेरी शो" msgid "Validated SQL" msgstr "SQL मान्य" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "लेबल" diff --git a/po/hr.po b/po/hr.po index 11e3f821c6..def4eb6c82 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" @@ -22,10 +22,10 @@ msgstr "Prikaži sve" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Broj stranice:" @@ -40,8 +40,8 @@ msgstr "" "za blokiranje ažuriranja preko više prozora." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Traži" @@ -49,25 +49,25 @@ msgstr "Traži" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "Naziv ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Opis" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "Upotrijebi ovu vrijednost" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -129,7 +129,7 @@ msgstr "Baza podataka %1$s uspješno je izrađena." msgid "Database comment: " msgstr "Komentar baze podataka: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "Komentari tablice" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -153,11 +153,11 @@ msgstr "Nazivi stupaca" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -168,8 +168,8 @@ msgstr "Vrsta" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -179,8 +179,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -189,8 +189,8 @@ msgstr "Zadano" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Povezano s" @@ -199,8 +199,8 @@ msgstr "Povezano s" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Komentari" @@ -211,7 +211,7 @@ msgstr "Komentari" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -232,7 +232,7 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -371,7 +371,7 @@ msgstr "Shema relacija" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -395,21 +395,21 @@ msgstr "u upotrebi" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Izrada" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Posljednje ažuriranje" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Posljednja provjera" @@ -513,7 +513,7 @@ msgstr "Podnesi upit" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Pristup odbijen" @@ -548,7 +548,7 @@ msgstr[0] "%s poklapanja unutar tablice %s" msgstr[1] "%s poklapanja unutar tablice %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Pretraživanje" @@ -561,10 +561,10 @@ msgstr "Izbacivanje podataka za tablicu" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -690,12 +690,12 @@ msgstr "Ukloni sve oznake" msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Izvoz" @@ -705,13 +705,13 @@ msgstr "Izvoz" msgid "Print view" msgstr "Prikaz ispisa" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Isprazni" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -750,7 +750,7 @@ msgstr "Podatke tablice zamijeni datotekom" msgid "Copy table with prefix" msgstr "Podatke tablice zamijeni datotekom" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Rječnik podataka" @@ -766,7 +766,7 @@ msgstr "Provjeri tablicu" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -788,7 +788,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Stanje" @@ -898,14 +898,14 @@ msgstr "" "Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte " "%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -937,7 +937,7 @@ msgstr "Favorit je izbrisan." msgid "Showing bookmark" msgstr "Prikazivanje oznake" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Izrađen je favorit %s" @@ -965,7 +965,7 @@ msgstr "" "povećate vremenska ograničenja unutar php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1095,9 +1095,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Uređivanje" @@ -1123,13 +1123,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1161,7 +1161,7 @@ msgstr "Odabir poslužitelja" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Procesi" @@ -1189,7 +1189,7 @@ msgstr "Statistike redova" #: js/messages.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" #: js/messages.php:94 @@ -1298,7 +1298,7 @@ msgstr "" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Veze" @@ -1308,12 +1308,12 @@ msgstr "Veze" msgid "Questions" msgstr "Perzijski" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Promet" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1342,7 +1342,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "bez kompresije" @@ -1567,7 +1567,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Uvoz" @@ -1769,7 +1769,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2249,27 +2249,27 @@ msgstr "u upotrebi" msgid "Second" msgstr "po sekundi" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Veličina fonta" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Nepoznata pogreška tijekom učitavanja datoteke." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2277,37 +2277,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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Učitana datoteka bila je djelomično učitana." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Nedostaje mapa privremene pohrane." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Zapisivanje datoteke na disk nije uspjelo." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Nepoznata pogreška tijekom učitavanja datoteke." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2335,7 +2335,7 @@ msgid "Cardinality" msgstr "Najvažnije" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Komentar" @@ -2357,14 +2357,14 @@ msgid "" msgstr "" "Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Baze podataka" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2471,16 +2471,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Valjana putanja slika za temu %s nije pronađena!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Nema raspoloživog pregleda." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "Dodijeli" @@ -2494,12 +2494,12 @@ msgstr "Zadana tema %s nije pronađena!" msgid "Theme %s not found!" msgstr "Tema %s nije pronađena!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Za temu %s nije pronađena putanje tema!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2508,7 +2508,7 @@ msgid "Cannot connect: invalid settings." msgstr "Povezivanje nije moguće: neispravna postavka." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Dobro došli u %s" @@ -2534,56 +2534,56 @@ msgstr "" "računala, korisničko ime i lozinku, te provjerite da se odgovaraju podacima " "koje vam je dao administrator MySQL poslužitelja." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Prijava" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Poslužitelj" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Korisničko ime:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Lozinka:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Odabir poslužitelja" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Od ovog mjesta potrebno je omogućiti kolačiće." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Nije bilo nikakvih aktivnosti tijekom %s sekunda. Prijavite se ponovo." -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Prijavljivanje na MySQL poslužitelj nije moguće" @@ -2614,41 +2614,41 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "MySQL uspoređivanje veza" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2794,7 +2794,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL upit" @@ -2804,7 +2804,7 @@ msgstr "SQL upit" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2855,7 +2855,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Pogoni" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Izrada profila" @@ -2956,7 +2956,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2976,8 +2976,8 @@ msgstr "Strukturu" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Umetni" @@ -2988,26 +2988,26 @@ msgstr "Umetni" msgid "Operations" msgstr "Operacije" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, 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/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 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/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3184,7 +3184,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Povrat" @@ -5456,8 +5456,8 @@ msgstr "Izradi novu tablicu u bazi podataka %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5819,7 +5819,7 @@ msgstr "Presloži po ključu" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Opcije" @@ -5885,7 +5885,7 @@ msgid "The row has been deleted" msgstr "Redak je izbrisan" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Eliminiraj" @@ -6498,7 +6498,7 @@ msgstr "Raspoložive MIME vrste" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Računalo" @@ -6713,7 +6713,7 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generirano s" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." @@ -6813,7 +6813,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Naziv tablice" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Nazivi stupaca" @@ -7174,7 +7174,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "bez opisa" @@ -7211,14 +7211,14 @@ msgid "Slave status" msgstr "Prikaži stanje potčinjenog" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Varijabla" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Vrijednost" @@ -7278,7 +7278,7 @@ msgstr "Generiraj lozinku" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7316,16 +7316,16 @@ msgstr "" msgid "Edit event" msgstr "Web poslužitelj" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7342,7 +7342,7 @@ msgstr "Vrsta događaja" msgid "Event type" msgstr "Vrsta događaja" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7371,7 +7371,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Završetak" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7384,12 +7384,12 @@ msgstr "Opis" msgid "On completion preserve" msgstr "Dovrši umetanja" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7437,7 +7437,7 @@ msgid "Returns" msgstr "Vrsta povratka" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Vrijeme" @@ -7453,7 +7453,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7475,100 +7475,100 @@ msgstr "Tablica %s je odbačen" msgid "Routine %1$s has been created." msgstr "Tablica %1$s je izrađena." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy msgid "Edit routine" msgstr "Web poslužitelj" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Izravne veze" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Duljina/Vrijednosti" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Preimenuj bazu podataka u" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Vrsta povratka" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Duljina/Vrijednosti" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcije tablice" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vrsta upita" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7576,25 +7576,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Dopušta pokretanje pohranjenih rutina." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funkcija" @@ -7751,7 +7751,7 @@ msgstr "Provjeri tablicu" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7761,7 +7761,7 @@ msgstr "Tablica \"%s\" ne postoji!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7769,9 +7769,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Konfigurirajte koordinate tablice %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7785,115 +7785,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Shema relacija" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Sadržaj tablice" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atributi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Dodatno" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Izradi novu stranicu" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj stranice:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatski raspored" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Interne relacije" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Odaberite tablicu za uređivanje" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Odaberite tablice" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Odaberite tablice" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Shema relacija" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Prikaži mrežu" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Prikaži boju" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Prikaži dimenzije tablice" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Prikazati sve tablice uz istu širinu?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Položeno" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portret" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Izrada" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Veličina papira" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7901,17 +7901,17 @@ msgstr "" "Trenutna stranica sadrži reference prema tablicama koje više ne postoje. " "Želite li izbrisati te reference?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Uključi bilješke" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Nepoznati jezik: %1$s." @@ -7992,11 +7992,11 @@ msgstr "Kalendar" msgid "Columns" msgstr "Nazivi stupaca" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Neka svi korisnici imaju pristup ovom favoritu" @@ -8485,7 +8485,7 @@ msgstr "Verzija protokola" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Korisnik" @@ -8692,7 +8692,7 @@ msgstr "Malo / Sve veliko" msgid "Toggle small/big" msgstr "Malo / Veliko" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Uvoz / Izvoz koordinate iz PDF sheme" @@ -8784,50 +8784,50 @@ msgstr "" "ili uklonili opciju polja za prikazivanje pritisnite ikonu \"Odaberite polje " "za prikazivanje\", a zatim pritisnite odgovarajući naziv polja." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Tablica %1$s je izrađena." -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "stranice" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Uvezi datoteke" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Uvoz / Izvor prema omjeru" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Izradi novi indeks" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Korisničko ime" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Uvoz / Izvor prema omjeru" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "preporučeno" @@ -8938,12 +8938,12 @@ msgstr "Uvezi datoteke" msgid "All" msgstr "Sve" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "tablica %s nije pronađena ili nije zadana u %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8957,13 +8957,13 @@ msgstr "Odaberite binarni zapisnik za prikaz" msgid "Files" msgstr "Datoteke" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Sreži prikazane rezultate" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Prikaži pune upite" @@ -9796,8 +9796,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "po satu" @@ -9818,43 +9818,43 @@ msgstr "Izjave" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9863,47 +9863,47 @@ msgstr "" "prikaza, pri čemu bi statistike koje prikazuje MySQL poslužitelj mogle biti " "netočne." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Primljeno" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Poslano" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "najv. uzastopnih veza" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Neuspjeli pokušaji" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Naredba" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -9913,17 +9913,17 @@ msgstr "" "ali su nadmašile vrijednost binlog_cache_size i upotrijebile privremenu " "datoteku za pohranjivanje izjava transakcija." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9935,11 +9935,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:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Koliko je privremenih tablica izradio mysqld." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9947,7 +9947,7 @@ msgstr "" "Broj privremenih tablica u memoriji koje je poslužitelj automatski izradio " "tijekom izvršavanja izjava." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9955,7 +9955,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:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9963,23 +9963,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Broj redaka zapisanih pomoću INSERT DELAYED." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih izjava FLUSH." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Broj internih izjava COMMIT." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9989,7 +9989,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:1203 +#: server_status.php:1204 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, " @@ -9999,7 +9999,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:1204 +#: server_status.php:1205 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." @@ -10007,7 +10007,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:1205 +#: server_status.php:1206 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 " @@ -10017,7 +10017,7 @@ msgstr "" "povećava ako izvodite upite stupca indeksa s ograničenjem opsega ili ako " "izvodite pretraživanje indeksa." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10025,7 +10025,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:1207 +#: server_status.php:1208 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 " @@ -10037,7 +10037,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:1208 +#: server_status.php:1209 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 " @@ -10049,36 +10049,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:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih izjava ROLLBACK." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Broj zahtjeva za ažuriranje retka u tablici." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Broj zahtjeva za umetanje retka u tablici." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj stranice koje sadrže podatke (dirty ili clean)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Broj stranica koje su trenutno 'dirty'." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Broj slobodnih stranica." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -10088,7 +10088,7 @@ msgstr "" "čitaju ili zapisuju, ili ih nije moguće isprazniti ili ukloniti iz nekog " "drugog razloga." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -10100,11 +10100,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:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Ukupna veličina međuspremnika, u stranicama." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10112,7 +10112,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10120,11 +10120,11 @@ msgstr "" "Broj slijednih pripremnih čitanja koje je inicijalizirao InnoDB. Ovo se " "događa kad InnoDB izvodi potpuno pretraživanje tablice." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahtjeva za čitanjem koje je obavio InnoDB." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10132,7 +10132,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:1223 +#: server_status.php:1224 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 " @@ -10146,55 +10146,55 @@ msgstr "" "prikazuje stanje ovog čekanja. Ako je veličina međuspremnika pravilno " "postavljena, ova bi vrijednost trebala biti malenom." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj izvršenih zapisivanja u InnoDB međuspremnik." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Broj dosadašnjih fsync() operacija." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Trenutan broj fsync() operacija u čekanju." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Trenutan broj čitanja u čekanju." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Trenutan broj zapisivanja u čekanju." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do ovog trenutka, u bajtovima." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Ukupan broj iščitavanja podataka." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Ukupan broj zapisivanja podataka." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka zapisanih do ovog trenutka, u bajtovima." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -10203,35 +10203,35 @@ msgstr "" "međuspremnika, te je bilo potrebno čekati njegovo pražnjenje prije nastavka " "rada." -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Broj zahtjeva za zapisivanje u zapisnik." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih zapisivanja u zapisnik." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs zapisivanja izvršenih u datoteci zapisnika." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Broj naredbi fsyncs za zapisnik, a koje su na čekanju." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Zapisivanja u zapisnik na čekanju." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Broj bajtova zapisanih u zapisnik." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Broj izrađenih stranica." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10240,52 +10240,52 @@ msgstr "" "vrijednosti prebrojavaju u stranicama. Veličina stranice dopušta njihovo " "jednostavno pretvaranje u bajtove." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Broj iščitanih stranica." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Broj zapisanih stranica." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Broj zaključavanja redaka na koje se trenutno čeka." -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Prosječno vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdulje vrijeme postizanja zaključanosti retka, u milisekundama." -#: server_status.php:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redaka izbrisanih iz InnoDB tablica." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redaka umetnutih u InnoDB tablice." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Broj redaka iščitanih iz InnoDB tablica." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Broj ažuriranih redaka u InnoDB tablicama." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10293,7 +10293,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:1256 +#: server_status.php:1257 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." @@ -10301,7 +10301,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:1257 +#: server_status.php:1258 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 " @@ -10311,11 +10311,11 @@ msgstr "" "gornje razine koja označuje najveći broj blokova koji su ikad bili u " "istovremenoj upotrebi." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10326,15 +10326,15 @@ msgstr "" "promašivanja pohrane moguće je izračunati putem naredbi Key_reads/" "Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10344,17 +10344,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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10362,39 +10362,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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Broj otvorenih tablica." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za pohranu upita." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Broj pronalaženja u pohrani." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Broj upita pridodanih u pohranu." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10407,7 +10407,7 @@ msgstr "" "nedavno upotrebljavanog (LRU - least recently used) radi odlučivanja koje će " "upite ukloniti iz pohrane." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10415,19 +10415,19 @@ msgstr "" "Broj upita koji nisu pohranjeni (nisu za pohranu ili nisu pohranjeni zbog " "postavke query_cache_type)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Broj upita registriranih u pohrani." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u pohrani upita." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje replikacije sigurnosti protiv otkaza (još nije implementirano)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10435,12 +10435,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10449,7 +10449,7 @@ msgstr "" "retka. (Ako ovaj iznos nije 0, bit će potrebno da pažljivo provjerite " "indekse vaših tablica." -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10457,17 +10457,17 @@ msgstr "" "Broj spojeva koji su upotrijebili opsege nad prvom tablicom. (Općenito nije " "kritično ako je ovaj iznos velik.)" -#: server_status.php:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10475,12 +10475,12 @@ msgstr "" "Ukupna količina (od pokretanja) ponovnih pokušaja transakcija od strane " "replikacijske potčinjene SQL grane." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10488,14 +10488,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:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10505,23 +10505,23 @@ msgstr "" "Ako je ovaj iznos velik, razmotrite mogućnost povećanja vrijednosti " "sistemske varijable sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Broj preslagivanja učinjenih pomoću opsega." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Broj presloženih redaka." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "Količina trenutno postignutih zaključavanja tablica." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10533,7 +10533,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:1294 +#: server_status.php:1295 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 " @@ -10543,11 +10543,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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10559,64 +10559,64 @@ msgstr "" "(Uobičajeno, ako imate dobru implementaciju grana, ova opcija neće pružiti " "primjetna poboljšanja performansi.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Broj grana koje nisu uspavane." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Dodaj %s polja" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Osvježi" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/Izbriši stupce polja" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10625,7 +10625,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10633,11 +10633,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10645,7 +10645,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10653,11 +10653,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11199,12 +11199,12 @@ msgstr "Prikazivanje SQL upita" msgid "Validated SQL" msgstr "Provjera valjanosti SQL-a" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi s indeksima tablice `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Oznaka" diff --git a/po/hu.po b/po/hu.po index 5741a6e427..0bb6e3cbbc 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-05-27 18:52+0200\n" "Last-Translator: \n" "Language-Team: hungarian \n" @@ -21,10 +21,10 @@ msgstr "Összes mutatása" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Oldalszám:" @@ -39,8 +39,8 @@ msgstr "" "közti frissítést." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Keresés" @@ -48,25 +48,25 @@ msgstr "Keresés" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Kulcsnév" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Leírás" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Ezen érték használata" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Nincs blob streaming szerver beállítva!" @@ -128,7 +128,7 @@ msgstr "A(z) %1$s adatbázis elkészült." msgid "Database comment: " msgstr "Megjegyzés az adatbázishoz: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Tábla megjegyzése" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Oszlop" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Típus" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Nulla" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Alapértelmezett" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Hivatkozások:" @@ -196,8 +196,8 @@ msgstr "Hivatkozások:" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Megjegyzések" @@ -208,7 +208,7 @@ msgstr "Megjegyzések" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Nem" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Kapcsolati séma szerkesztése, exportálása" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "használatban" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Létrehozás" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Utolsó frissítés" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Utolsó ellenőrzés" @@ -497,7 +497,7 @@ msgstr "Lekérdezés indítása" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "A hozzáférés megtagadva" @@ -531,7 +531,7 @@ msgstr[0] "%s találat a(z) %s táblában" msgstr[1] "%s találat a(z) %s táblában" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Tartalom" @@ -543,10 +543,10 @@ msgstr "Törli a találatokat a %s táblában?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -668,12 +668,12 @@ msgstr "Kijelölés törlése" msgid "Check tables having overhead" msgstr "A felülírott táblák kijelölése" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportálás" @@ -683,13 +683,13 @@ msgstr "Exportálás" msgid "Print view" msgstr "Nyomtatási nézet" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Kiürítés" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -723,7 +723,7 @@ msgstr "Tábla előtagjának lecserélése" msgid "Copy table with prefix" msgstr "Tábla másolása előtaggal" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Adatkönyvtár" @@ -738,7 +738,7 @@ msgstr "Nyomon követett táblák" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -758,7 +758,7 @@ msgstr "frissítve" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Állapot" @@ -864,14 +864,14 @@ msgstr "" "Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a " "%sdokumentációban%s a korlátozás feloldása végett." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Nem lehetett beolvasni a fájlt" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -904,7 +904,7 @@ msgstr "A könyvjelző törlése megtörtént." msgid "Showing bookmark" msgstr "Könyvjelző megjelenítése" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "A(z) %s könyvjelző elkészült" @@ -933,7 +933,7 @@ msgstr "" "növeli meg a PHP időkorlátozását." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1053,9 +1053,9 @@ msgstr "Bezárás" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Módosítás" @@ -1082,13 +1082,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Összesen" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1120,7 +1120,7 @@ msgstr "Szerver választása" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Folyamatok" @@ -1147,7 +1147,7 @@ msgstr "Lekérdezések statisztikája" #: js/messages.php:93 #, fuzzy #| msgid "Cannot load or save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "A beállítások nem tölthetők be vagy menthetők" #: js/messages.php:94 @@ -1256,7 +1256,7 @@ msgstr "" msgid "Bytes received" msgstr "Fogadott" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Kapcsolatok" @@ -1267,12 +1267,12 @@ msgstr "Kapcsolatok" msgid "Questions" msgstr "Verziók" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Forgalom" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Beállítások" @@ -1299,7 +1299,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nincs" @@ -1527,7 +1527,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importálás" @@ -1715,7 +1715,7 @@ msgid "Query execution time" msgstr "Végrehajtási idő legfeljebb" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2143,27 +2143,27 @@ msgstr "Perc" msgid "Second" msgstr "másodperc" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Betűméret" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Ismeretlen hiba a fájlfeltöltésben." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2171,37 +2171,37 @@ 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:283 +#: libraries/File.class.php:284 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:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Hiányzik egy ideiglenes mappa." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Nem sikerült lemezre írni a fájlt." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "A fájlfeltöltés kiterjesztés alapján leállt." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Ismeretlen hiba a fájlfeltöltésben." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Hiba történt a feltöltött fájl áthelyezésekor, lásd: GYIK 1.11" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2229,7 +2229,7 @@ msgid "Cardinality" msgstr "Számosság" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Megjegyzés" @@ -2252,14 +2252,14 @@ msgstr "" "A(z) %1$s és a(z) %2$s egyenlőnek tűnik, és egyikük valószínűleg " "eltávolítható." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Adatbázisok" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2366,16 +2366,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nincs érvényes kép elérési útja a(z) %s témának!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Nincs előnézet." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "csináld" @@ -2389,12 +2389,12 @@ msgstr "A(z) %s alapértelmezett téma nem található!" msgid "Theme %s not found!" msgstr "Nem található a(z) %s téma!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Nem található a(z) %s téma téma elérési útja!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2403,7 +2403,7 @@ msgid "Cannot connect: invalid settings." msgstr "Nem lehet csatlakozni: érvénytelenek a beállítások." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Üdvözli a %s" @@ -2429,58 +2429,58 @@ msgstr "" "a config.inc.php fájlban, s győződjön meg róla, hogy ezek megfelelnek-e a " "MySQL szerver adminisztrátorától kapott információknak." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Belépés" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentáció" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Az állomásnevet/IP-címet és a port számát szóközzel elválasztva írhatja be." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Szerver" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Felhasználónév:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Jelszó:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Szerver választása" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Ettől a ponttól engedélyeznie kell a cookie-k fogadását." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "A konfiguráció tiltja a jelszó nélküli bejelentkezést (lásd AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Nem volt tevékenység %s másodperce; jelentkezzen be újra" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Nem lehet bejelentkezni a MySQL szerverre" @@ -2513,41 +2513,41 @@ msgstr "Nem történt meg érvényes hitelesítő kulcs csatlakoztatása" msgid "Authenticating..." msgstr "Hitelesítés..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS hiba" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS kapcsolat sikertelen." -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS BLOB infó beszerzése sikertelen:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "BLOB Content-Type felismerése sikertelen" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Kép megtekintése" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Hang lejátszása" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Videó megtekintése" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Fájl letöltése" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Nem lehetett megnyitni a %s fájlt" @@ -2687,7 +2687,7 @@ msgid "Documentation" msgstr "Dokumentáció" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-lekérdezés" @@ -2697,7 +2697,7 @@ msgstr "SQL-lekérdezés" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2746,7 +2746,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Belső" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Adatgyűjtés" @@ -2849,7 +2849,7 @@ msgid "Click to toggle" msgstr "Kattintson a kijelöléshez." #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2869,8 +2869,8 @@ msgstr "Szerkezet" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Beszúrás" @@ -2881,25 +2881,25 @@ msgstr "Beszúrás" msgid "Operations" msgstr "Műveletek" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Számítógép tallózása:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, 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/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Nincsenek feltöltendő fájlok" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3067,7 +3067,7 @@ 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:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Törlés" @@ -5428,8 +5428,8 @@ msgstr "Új tábla létrehozása a(z) %s adatbázisban" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5759,7 +5759,7 @@ msgstr "Kulcs szerinti rendezés" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Beállítások" @@ -5825,7 +5825,7 @@ msgid "The row has been deleted" msgstr "A sor törlése megtörtént" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Leállít" @@ -6440,7 +6440,7 @@ msgstr "Létező MIME-típusok" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Hoszt" @@ -6657,7 +6657,7 @@ msgstr "SQL-eredmény" msgid "Generated by" msgstr "Készítette" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." @@ -6757,7 +6757,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Tábla neve" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Oszlopnevek" @@ -7124,7 +7124,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "nincs leírás" @@ -7160,14 +7160,14 @@ msgid "Slave status" msgstr "Másodlagos állapot" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Változó" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Érték" @@ -7229,7 +7229,7 @@ msgstr "Jelszó generálása" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7268,16 +7268,16 @@ msgstr "" msgid "Edit event" msgstr "Szerver módosítása" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Hiba a kérés feldolgozásában" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7294,7 +7294,7 @@ msgstr "Esemény típusa" msgid "Event type" msgstr "Esemény típusa" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7324,7 +7324,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Vége" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7337,12 +7337,12 @@ msgstr "Leírás" msgid "On completion preserve" msgstr "teljes beillesztések" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7390,7 +7390,7 @@ msgid "Returns" msgstr "Típus visszaadása" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Idő" @@ -7406,7 +7406,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7428,126 +7428,126 @@ msgstr "A(z) %s oszlop eldobása megtörtént" msgid "Routine %1$s has been created." msgstr "A(z) %1$s tábla elkészült." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Szerkesztő mód" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Eljárások" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Közvetlen hivatkozások" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Hossz/Érték*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Adatbázis eltávolítása" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Típus visszaadása" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Hossz/Érték*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tábla beállításai" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Biztonság" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Engedélyezi a tárolt eljárások végrehajtását." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Eljárások" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Függvény" @@ -7710,7 +7710,7 @@ msgstr "Nincsenek feltöltendő fájlok" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7720,7 +7720,7 @@ msgstr "Nem létezik a(z) \"%s\" tábla!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7728,9 +7728,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Állítsa be a(z) %s tábla koordinátáit" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7746,115 +7746,115 @@ msgstr "A(z) %s fájl nem tartalmaz semmilyen kulcsazonosítót" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Kapcsolati séma" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Tartalomjegyzék" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Tulajdonságok" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Új oldal készítése" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Oldalszám:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatikus elrendezés" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Belső kapcsolatok" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Válassza ki a szerkesztendő oldalt" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Táblák kiválasztása" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Táblák kiválasztása" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Kapcsolati séma" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Rács megjelenítése" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Szín megjelenítése" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "A táblák méretének megjelenítése" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 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:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Csak a kulcsok megjelenítése" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Fekvő" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Álló" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Létrehozás" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Papírméret" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7862,17 +7862,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Scratchboard kapcsolása" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Ismeretlen nyelv: %1$s." @@ -7951,11 +7951,11 @@ msgstr "Törlés" msgid "Columns" msgstr "Oszlopnevek" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 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:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 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 " @@ -8457,7 +8457,7 @@ msgstr "Protokoll verzió" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Felhasználó" @@ -8679,7 +8679,7 @@ msgstr "Mind kicsi/nagy" msgid "Toggle small/big" msgstr "Kicsi/nagy kapcsoló" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "A PDF-séma importálási/exportálási koordinátái" @@ -8772,50 +8772,50 @@ msgstr "" "történő beállításához/eltávolításához kattintson a \"Válassza ki a " "megjelenítendő mezőt\" ikonra, majd kattintson a megfelelő mező nevére." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "A(z) %1$s tábla elkészült." -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "lapok" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Fájlok importálása" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Méretezendő exportálás/importálás" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Új index létrehozása" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Felhasználónév" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Méretezendő exportálás/importálás" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "ajánlott" @@ -8931,13 +8931,13 @@ msgstr "Fájlok importálása" msgid "All" msgstr "Mind" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "" "Nem található a(z) %s tábla, vagy nem adták meg a(z) %s adatbázisban" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "A fájl nem létezik" @@ -8949,13 +8949,13 @@ msgstr "Válassza ki a megtekintendő bináris naplót" msgid "Files" msgstr "Fájlok" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "A megjelenített lekérdezések lerövidítése" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Teljes lekérdezések megjelenítése" @@ -9795,8 +9795,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "A kezdőlap testreszabása" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "óránként" @@ -9817,32 +9817,32 @@ msgstr "Utasítások" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 "Ez a MySQL szerver %s óta fut. Indítás időpontja: %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -9856,11 +9856,11 @@ msgstr "" "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:978 +#: server_status.php:979 msgid "Replication status" msgstr "Többszörözéses állapot" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9868,47 +9868,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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Fogadott" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Küldött" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Max. egyidejű kapcsolatok száma" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Sikertelen próbák" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Megszakítva" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "AZ" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Parancs" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -9918,17 +9918,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:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9940,11 +9940,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:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Ennyi ideiglenes fájlt hozott létre a mysqld." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9952,7 +9952,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:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9960,7 +9960,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:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9968,23 +9968,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "A beírt INSERT DELAYED sorok száma." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "A végrehajtott FLUSH utasítások száma." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "A belső COMMIT utasítások száma." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9994,7 +9994,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:1203 +#: server_status.php:1204 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, " @@ -10005,7 +10005,7 @@ msgstr "" "például a SELECT col1 FROM foo azt feltételezi, hogy a col1 kerül " "indexelésre." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -10013,7 +10013,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:1205 +#: server_status.php:1206 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 " @@ -10023,7 +10023,7 @@ msgstr "" "ha Ön tartománymegkötéses index oszlopot kérdez le, vagy ha indexvizsgálatot " "végez." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10031,7 +10031,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:1207 +#: server_status.php:1208 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 " @@ -10043,7 +10043,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:1208 +#: server_status.php:1209 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 " @@ -10055,35 +10055,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:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "A belső ROLLBACK utasítások száma." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Az adatokat tartalmazó lapok száma (piszkos vagy tiszta)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "A jelenleg piszkos lapok száma." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "A szabad lapok száma." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -10093,7 +10093,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:1217 +#: server_status.php:1218 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 " @@ -10106,11 +10106,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data értékként is " "számolható." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "A pufferkészlet teljes mérete lapokban." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10119,7 +10119,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10127,11 +10127,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:1221 +#: server_status.php:1222 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:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10139,7 +10139,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:1223 +#: server_status.php:1224 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 " @@ -10154,53 +10154,53 @@ msgstr "" "méretét megfelelően állították be, akkor ennek az értéknek kicsinek kell " "lennie." -#: server_status.php:1224 +#: server_status.php:1225 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:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Az fsync() műveletek eddigi száma." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "A folyamatban lévő fsync() műveletek száma." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "A folyamatban lévő olvasások száma." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "A folyamatban lévő írások száma." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Az eddig beolvasott adatok mennyisége bájtban." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Az összes beolvasott adat." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Az összes írott adat." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Az összes írott adat, bájtban." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -10208,35 +10208,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "A naplóírási kérések száma." -#: server_status.php:1237 +#: server_status.php:1238 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:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "A naplófájlba történt fsyncs írások száma." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "A folyamatban lévő naplófájl fsync-ek száma." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "A folyamatban lévő naplófájl írások száma." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "A naplófájlba írt bájtok száma." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "A létrehozott lapok száma." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10245,51 +10245,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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "A beolvasott lapok száma." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Az írott lapok száma." -#: server_status.php:1246 +#: server_status.php:1247 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:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "A sorzárolásokra fordított összes idő, milliszekundumban." -#: server_status.php:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 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:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Az InnoDB táblákba beszúrt sorok száma." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Az InnoDB táblákból beolvasott sorok száma." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Az InnoDB táblákban frissített sorok száma." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10297,7 +10297,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:1256 +#: server_status.php:1257 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." @@ -10305,7 +10305,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:1257 +#: server_status.php:1258 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 " @@ -10314,11 +10314,11 @@ 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:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10329,15 +10329,15 @@ msgstr "" "sikertelen találatainak aránya a Key_reads/Key_read_requests alapján " "számítható ki." -#: server_status.php:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10348,17 +10348,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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10366,40 +10366,40 @@ msgstr "" "Az eddig megnyitott táblák száma. Ha a megnyitott táblák nagy,akkor " "valószínűleg túl kicsi a táblagyorsítótár értéke." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "A megnyitott fájlok száma." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "A megnyitott táblák száma." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 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:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "A gyorsítótár találatok száma." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "A gyorsítótárhoz adott lekérdezések száma." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10412,7 +10412,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:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10420,19 +10420,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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "A gyorsítótárban bejegyzett lekérdezések száma." -#: server_status.php:1276 +#: server_status.php:1277 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:1277 +#: server_status.php:1278 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:1278 +#: server_status.php:1279 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." @@ -10440,11 +10440,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10453,7 +10453,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:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10461,15 +10461,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10477,11 +10477,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:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10489,14 +10489,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:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10506,23 +10506,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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "A tartományokkal végzett rendezések száma." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Rendezett sorok száma." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10534,7 +10534,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:1294 +#: server_status.php:1295 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 " @@ -10544,11 +10544,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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "A jelenleg megnyitott kapcsolatok száma." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10559,67 +10559,67 @@ 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:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "A nem alvó szálak száma." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Indítás" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "Index hozzáadása" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Frissítés" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "Szövegterület oszlopai" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Alapértelmezett érték visszaállítása" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy msgid "Monitor Instructions" msgstr "Információ" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10628,7 +10628,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10636,11 +10636,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10648,7 +10648,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10656,11 +10656,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11305,12 +11305,12 @@ msgstr "Megjelenítés SQL lekérdezésként" msgid "Validated SQL" msgstr "Érvényes SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probléma a(z) `%s` tábla indexeivel" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Név" diff --git a/po/id.po b/po/id.po index 8a0126262c..13253c6b55 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-06-18 11:34+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" @@ -21,10 +21,10 @@ msgstr "Tampilkan semua" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Halaman no.:" @@ -39,8 +39,8 @@ msgstr "" "dengan cara Cross-Window" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Cari" @@ -48,25 +48,25 @@ msgstr "Cari" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Nama Kunci" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Deskripsi" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Gunakan nilai ini" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Tidak ada blob server streaming yang dikonfigurasi!" @@ -128,7 +128,7 @@ msgstr "Database %1$s telah dibuat." msgid "Database comment: " msgstr "Komentar Database: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Komentar tabel" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Kolom" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Jenis" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Kosong" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Default" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Link ke" @@ -196,8 +196,8 @@ msgstr "Link ke" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Komentar" @@ -208,7 +208,7 @@ msgstr "Komentar" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Tidak" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Edit atau ekspor skema relasional" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "sedang digunakan" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Pembuatan" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Update terakhir" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Pemeriksaan terakhir" @@ -496,7 +496,7 @@ msgstr "Jalankan Pencarian SQL" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Akses ditolak" @@ -529,7 +529,7 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s cocok dalam tabel %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Browse" @@ -541,10 +541,10 @@ msgstr "Hapus yang cocok untuk %s tabel?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -665,12 +665,12 @@ msgstr "Balik pilihan" msgid "Check tables having overhead" msgstr "Periksa Overheaded" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Ekspor" @@ -680,13 +680,13 @@ msgstr "Ekspor" msgid "Print view" msgstr "Pandangan cetak" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Mengosongkan" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -724,7 +724,7 @@ msgstr "Ganti data tabel dengan file" msgid "Copy table with prefix" msgstr "Ganti data tabel dengan file" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Kamus Data" @@ -739,7 +739,7 @@ msgstr "Tabel-tabel yang dilacak" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -759,7 +759,7 @@ msgstr "Diperbarui" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -864,14 +864,14 @@ msgstr "" "Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat " "%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Gagal membaca File" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -902,7 +902,7 @@ msgstr "Penyimpanan telah dihapus." msgid "Showing bookmark" msgstr "Tampilkan bookmark" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Bookmark % s dibuat" @@ -930,7 +930,7 @@ msgstr "" "waktu eksekusi php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1049,9 +1049,9 @@ msgstr "Tutup" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Ubah" @@ -1076,13 +1076,13 @@ msgstr "Data statis" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Jumlah" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Lainnya" @@ -1112,7 +1112,7 @@ msgstr "Lalulintas Server (dalam KiB)" msgid "Connections since last refresh" msgstr "Koneksi sejak dibuka terakhir" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Proses Aktif" @@ -1139,7 +1139,7 @@ msgstr "Statistik query" #: js/messages.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Tidak dapat memuat konfigurasi default dari: \"%1$s\"" #: js/messages.php:94 @@ -1245,7 +1245,7 @@ msgstr "" msgid "Bytes received" msgstr "Penerimaan" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Koneksi" @@ -1256,12 +1256,12 @@ msgstr "Koneksi" msgid "Questions" msgstr "Versi" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Lalu-Lintas" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1288,7 +1288,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "tanpa" @@ -1516,7 +1516,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1696,7 +1696,7 @@ msgid "Query execution time" msgstr "Menjalankan SQL" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2122,53 +2122,53 @@ msgstr "Menit" msgid "Second" msgstr "Detik" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Ukuran huruf" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Kesalahan yang tidak diketahui dalam upload file." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "File yang di upload melewati ketentuan upload_max_filesize dalam php.ini." -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" "File yang di upload melewati MAX_FILE_SIZE yang ditentukan dalam form HTML." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "File yang di upload hanya ter-upload sebagian." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Folder sementara tidak ditemukan." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Gagal menulis file ke diska." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Upload file dihentikan oleh ekstensi." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Kesalahan yang tidak diketahui dalam upload file." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2176,11 +2176,11 @@ msgstr "" "Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation." "html#faq1_11@Documentation]FAQ 3.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2208,7 +2208,7 @@ msgid "Cardinality" msgstr "Bilangan Pokok" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Komentar" @@ -2231,14 +2231,14 @@ msgstr "" "Index %1$s dan %2$s sepertinya sama dan salah satu dari mereka memungkinkan " "untuk dibuang." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Basisdata" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2340,16 +2340,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Lokasi citra yang benar untuk tema %s tidak ditemukan!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Tidak ada preview yang tersedia." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "ambil ini" @@ -2363,12 +2363,12 @@ msgstr "Tema %s bawaan tidak ditemukan!" msgid "Theme %s not found!" msgstr "Tema %s tidak ditemukan!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2377,7 +2377,7 @@ msgid "Cannot connect: invalid settings." msgstr "Koneksi gagal: setelan tidak berlaku." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Selamat Datang di %s" @@ -2404,44 +2404,44 @@ msgstr "" "kecocokannya dengan informasi yang telah diberikan oleh administrator server " "MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Login" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Dokumentasi phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Anda bisa memasukkan hostname/alamat IP dan port dipisahkan dengan spasi." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Nama Pengguna:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Kata Sandi:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Pilihan Server" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Mulai dari sini cookies harus diaktifkan." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2449,14 +2449,14 @@ msgstr "" "Masuk tanpa kata sandi tidak diperbolehkan dalam konfigurasi (lihat " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Tidak ada aktifitas selama %s detik atau lebih. Silakan login kembali" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Gagal login ke MySQL server" @@ -2487,41 +2487,41 @@ msgstr "Tidak ada kunci autentikasi yang terpasang" msgid "Authenticating..." msgstr "Melakukan autentikasi..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "Kesalahan PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "Koneksi PBMS gagal:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "gagal mengambil BLOB Content-Type" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Tampilan View" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Memainkan file suara" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Lihat video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Unduh file" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Tidak bisa membuka arsip: %s" @@ -2660,7 +2660,7 @@ msgid "Documentation" msgstr "Dokumentasi" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "Pencarian SQL" @@ -2670,7 +2670,7 @@ msgstr "Pencarian SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2719,7 +2719,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profiling" @@ -2820,7 +2820,7 @@ msgid "Click to toggle" msgstr "Klik untuk memilih" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2840,8 +2840,8 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Sisipkan" @@ -2852,25 +2852,25 @@ msgstr "Sisipkan" msgid "Operations" msgstr "Operasi" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Telusuri komputer Anda:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pilih dari direktori unggah %s pada web server:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Tidak ada arsip untuk diunggah" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3037,7 +3037,7 @@ msgid "Allow users to customize this value" msgstr "Izinkan pengguna untuk mengubah nilai ini" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Reset" @@ -5293,8 +5293,8 @@ msgstr "Ciptakan tabel baru pada database %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5634,7 +5634,7 @@ msgstr "Urut berdasarkan kunci" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5702,7 +5702,7 @@ msgid "The row has been deleted" msgstr "Baris telah dihapus" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Tutup" @@ -6282,7 +6282,7 @@ msgstr "Tipe MIME yang tersedia" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6501,7 +6501,7 @@ msgstr "Hasil SQL" msgid "Generated by" msgstr "Diciptakan oleh" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL balikkan hasil kosong (a.k. baris yang kosong)." @@ -6600,7 +6600,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Nama tabel" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Nama kolom" @@ -6966,7 +6966,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "tanpa keterangan" @@ -7001,14 +7001,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Nilai" @@ -7068,7 +7068,7 @@ msgstr "Menghasilkan kata sandi" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7106,16 +7106,16 @@ msgstr "" msgid "Edit event" msgstr "Kejadian" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Error dalam memproses permintaan" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7132,7 +7132,7 @@ msgstr "Tipe Kejadian" msgid "Event type" msgstr "Tipe Kejadian" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7159,7 +7159,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Terakhir" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7172,12 +7172,12 @@ msgstr "Deskripsi" msgid "On completion preserve" msgstr "INSERT lengkap" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7225,7 +7225,7 @@ msgid "Returns" msgstr "Pilihan untuk tabel" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Jangka Waktu" @@ -7241,7 +7241,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7262,121 +7262,121 @@ msgstr "Tabel %s telah dihapus" msgid "Routine %1$s has been created." msgstr "Tabel %s telah dihapus" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Nama kolom" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Link langsung" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Ukuran Panjang/Nilai*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Hapus database" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Ukuran Panjang/Nilai*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Pilihan untuk tabel" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Tipe Pencarian" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Mengizinkan eksekusi Routines yang tersimpan." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Fungsi" @@ -7537,7 +7537,7 @@ msgstr "Tidak ada arsip untuk diunggah" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7547,7 +7547,7 @@ msgstr "Tabel \"%s\" tidak ditemukan!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7555,9 +7555,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Silakan konfigurasikan koordinasi bagi tabel %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7571,115 +7571,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Skema Relational" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Daftar Isi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atribut" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Ciptakan halaman baru" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Halaman no.:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Layout otomatis" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Relasi internal" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Silakan pilih halaman untuk diubah" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Pilih tabel" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Pilih tabel" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Skema Relational" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Tampilkan garis" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Tampilkan warna" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Tampilkan ukuran dari tabel" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Tampilkan seluruh tabel dengan lebar yang sama?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Landscape" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Gambaran" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Pembuatan" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Ukuran kertas" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7687,17 +7687,17 @@ msgstr "" "Halaman ini berisi referensi tentang tabel yang sudah tidak ada. Apakah Anda " "ingin hapus referensi yang bersangkutan?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "pindah buku catatan (Scratchboard)" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7775,11 +7775,11 @@ msgstr "Kalender" msgid "Columns" msgstr "Nama kolom" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Simpan pencarian SQL ini" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Izinkan semua pengguna untuk mengakses simpanan ini" @@ -8253,7 +8253,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Pengguna" @@ -8462,7 +8462,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8546,50 +8546,50 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Tabel %s telah dihapus" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "halaman" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Impor file" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Tidak ada baris yang dipilih" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Ciptakan indeks baru" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nama pengguna" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8702,12 +8702,12 @@ msgstr "Impor file" msgid "All" msgstr "Semua" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabel tidak ditemukan atau tidak diset di %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8722,13 +8722,13 @@ msgstr "Pilih Log binari untuk ditinjau" msgid "Files" msgstr "Field" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Potongkan pencarian yang ditampilkan" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Tampilkan pencarian yang lengkap" @@ -9571,8 +9571,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "dalam sejam" @@ -9593,12 +9593,12 @@ msgstr "Keterangan" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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." @@ -9606,94 +9606,94 @@ msgstr "" "MySQL server ini telah berjalan secara berturut-turut selama %s. Server " "dijalankan pada tanggal %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Penerimaan" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Pengiriman" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Gagal" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Pembatalan" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Perintah" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Membatasi jumlah koneksi baru yang diperbolehkan untuk setiap pengguna dalam " "batas waktu satu jam." -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9701,78 +9701,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9780,7 +9780,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9788,42 +9788,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9831,33 +9831,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9866,227 +9866,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10094,99 +10094,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10194,18 +10194,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10213,65 +10213,65 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy msgid "Start Monitor" msgstr "Status" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add column" msgid "Add chart" msgstr "Tambah kolom" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Menyegarkan" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "Tambahkan/Hapus kolom" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Kembalikan nilai default" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10280,7 +10280,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10288,11 +10288,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10300,7 +10300,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10308,11 +10308,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10846,12 +10846,12 @@ msgstr "" msgid "Validated SQL" msgstr "Mengesahkan (validate) SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Judul" diff --git a/po/it.po b/po/it.po index d74555215e..0648fcec88 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-07-22 19:13+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" @@ -21,10 +21,10 @@ msgstr "Mostra tutti" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Numero pagina:" @@ -40,8 +40,8 @@ msgstr "" "sicurezza." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Cerca" @@ -49,25 +49,25 @@ msgstr "Cerca" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "Chiave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Descrizione" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "Usa questo valore" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Nessun server di streaming blob configurato!" @@ -129,7 +129,7 @@ msgstr "Il database %1$s è stato creato." msgid "Database comment: " msgstr "Commento del database: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "Commenti alla tabella" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -151,11 +151,11 @@ msgstr "Campo" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -166,8 +166,8 @@ msgstr "Tipo" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -177,8 +177,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -187,8 +187,8 @@ msgstr "Predefinito" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Collegamenti a" @@ -197,8 +197,8 @@ msgstr "Collegamenti a" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Commenti" @@ -209,7 +209,7 @@ msgstr "Commenti" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -230,7 +230,7 @@ msgstr "No" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -361,7 +361,7 @@ msgstr "Modifica o esporta schema relazionale" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -385,21 +385,21 @@ msgstr "in uso" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Creazione" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Ultimo cambiamento" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Ultimo controllo" @@ -498,7 +498,7 @@ msgstr "Invia Query" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Accesso negato" @@ -532,7 +532,7 @@ msgstr[0] "%s corrispondenza nella tabella %s" msgstr[1] "%s corrispondenze nella tabella %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Mostra" @@ -544,10 +544,10 @@ msgstr "Eliminare le corrispondenze relative alla tabella %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -665,12 +665,12 @@ msgstr "Deseleziona tutti" msgid "Check tables having overhead" msgstr "Controllo addizionale" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Esporta" @@ -680,13 +680,13 @@ msgstr "Esporta" msgid "Print view" msgstr "Visualizza per stampa" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Svuota" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -720,7 +720,7 @@ msgstr "Sostituisci il prefisso della tabella" msgid "Copy table with prefix" msgstr "Copia tabella col prefisso" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Data Dictionary" @@ -735,7 +735,7 @@ msgstr "Tabelle monitorate" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -755,7 +755,7 @@ msgstr "Aggiornato" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Stato" @@ -862,14 +862,14 @@ msgstr "" "Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare " "questo limite." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Il file non può essere letto" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -904,7 +904,7 @@ msgstr "Il bookmark è stato cancellato." msgid "Showing bookmark" msgstr "Visualizzazione segnalibri" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Segnalibro %s creato" @@ -932,7 +932,7 @@ msgstr "" "basso per consentire a phpMyAdmin di terminare l'operazione." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1047,9 +1047,9 @@ msgstr "Chiudi" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Modifica" @@ -1072,13 +1072,13 @@ msgstr "Dati statici" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Totale" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Altre" @@ -1108,7 +1108,7 @@ msgstr "Traffico del server (in KiB)" msgid "Connections since last refresh" msgstr "Numero di connessioni dall'ultimo aggiornamento" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Processi" @@ -1133,7 +1133,7 @@ msgstr "Statistiche query" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Lettura del file di configurazione fallita" #: js/messages.php:94 @@ -1248,7 +1248,7 @@ msgstr "" msgid "Bytes received" msgstr "Ricevuti" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Connessioni" @@ -1257,12 +1257,12 @@ msgstr "Connessioni" msgid "Questions" msgstr "Questions" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Traffico" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Impostazioni" @@ -1287,7 +1287,7 @@ msgstr "Aggiungi almeno una variabile alla serie" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nessuno" @@ -1530,7 +1530,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importa" @@ -1709,7 +1709,7 @@ msgid "Query execution time" msgstr "Massimo tempo di esecuzione" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2136,50 +2136,50 @@ msgstr "Minuto" msgid "Second" msgstr "Secondo" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Dimensione font" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "Il file non era un file caricato." -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "Errore sconosciuto durante il caricamento del file." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Il file è stato solo parzialmente caricato." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Non trovo la cartella temporanea." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Non riesco a scrivere il file su disco." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Caricamento del file interrotto per estensione errata." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Si é verificato un errore sconosciuto durante il caricamento del file." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2187,11 +2187,11 @@ msgstr "" "Errore nello spostare il file caricato, vedi [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "Si é verificato un errore durante lo spostamento del file." -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "Impossibile leggere dal file (dopo lo spostamento) caricato." @@ -2219,7 +2219,7 @@ msgid "Cardinality" msgstr "Cardinalità" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Commenti" @@ -2242,14 +2242,14 @@ msgstr "" "Sembra che gli indici %1$s e %2$s sono uguali ed uno di questi potrebbe, " "possibilmente, essere rimosso." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Database" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2352,17 +2352,17 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" "Non è stato trovato nessun percorso per l'immagine valido per il tema %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Nessuna anteprima disponibile." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "prendilo" @@ -2376,12 +2376,12 @@ msgstr "Tema di default %s non trovato!" msgid "Theme %s not found!" msgstr "Tema %s non trovato!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Percorso per il tema non trovato %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2390,7 +2390,7 @@ msgid "Cannot connect: invalid settings." msgstr "Impossibile connettersi: impostazioni non valide." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Benvenuto in %s" @@ -2416,59 +2416,59 @@ msgstr "" "l'username e la password nel file di configurazione ed assicurarsi che " "corrispondano alle informazioni fornite dall'amministratore del server MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Connetti" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Documentazione di phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Puoi inserire l'Indirizzo IP/hostname e la porta, separati da uno spazio." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Nome utente:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Password:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Scelta del server" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Da questo punto in poi, i cookie devono essere abilitati." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Login senza password è vietato dalla configurazione (vedi AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Nessuna attività da %s secondi o più, si prega di autenticarsi nuovamente" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Impossibile eseguire il login nel server MySQL" @@ -2499,41 +2499,41 @@ msgstr "Nessuna chiave di autentificazione valida inserita" msgid "Authenticating..." msgstr "Autenticazione..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "Errore PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "Connessione PBMS fallita:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "Impossibile ottenere informazioni su BLOB da parte del PBMS:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "il tentativo di ottenere il tipo del contenuto del BLOB é fallito" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Visualizza immagine" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Avvia audio" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Visualizza video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Scarica file" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Non riesco ad aprire il file: %s" @@ -2673,7 +2673,7 @@ msgid "Documentation" msgstr "Documentazione" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "Query SQL" @@ -2683,7 +2683,7 @@ msgstr "Query SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2732,7 +2732,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profiling" @@ -2831,7 +2831,7 @@ msgid "Click to toggle" msgstr "Clicca per alternare" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2851,8 +2851,8 @@ msgstr "Struttura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserisci" @@ -2863,25 +2863,25 @@ msgstr "Inserisci" msgid "Operations" msgstr "Operazioni" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Cerca sul tuo computer:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selezionare dalla cartella di upload del server web %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "La directory impostata per l'upload non può essere trovata" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Nessun file da caricare" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Esegui" @@ -3048,7 +3048,7 @@ msgid "Allow users to customize this value" msgstr "Consente agli utenti di personalizzare questo valore" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Riavvia" @@ -5424,8 +5424,8 @@ msgstr "Crea una nuova tabella nel database %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5739,7 +5739,7 @@ msgstr "Ordina per chiave" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Opzioni" @@ -5801,7 +5801,7 @@ msgid "The row has been deleted" msgstr "La riga è stata cancellata" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Rimuovi" @@ -6402,7 +6402,7 @@ msgstr "Mostra tipi MIME" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6632,7 +6632,7 @@ msgstr "Risultato SQL" msgid "Generated by" msgstr "Generato da" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." @@ -6741,7 +6741,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Nome tabella" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Nomi delle colonne" @@ -7103,7 +7103,7 @@ msgstr "" "Rieffettua il login in phpMyAdmin per caricare il file della configurazione " "aggiornato." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "nessuna descrizione" @@ -7140,14 +7140,14 @@ msgid "Slave status" msgstr "Stato slave" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variabile" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valore" @@ -7211,7 +7211,7 @@ msgstr "Genera Password" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7249,14 +7249,14 @@ msgstr "" msgid "Edit event" msgstr "Modifica evento" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Errore nel processare la richiesta" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Dettagli" @@ -7269,7 +7269,7 @@ msgstr "Nome dell'evento" msgid "Event type" msgstr "Tipo di evento" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Cambia a %s" @@ -7296,7 +7296,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Fine" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Definizione" @@ -7305,12 +7305,12 @@ msgstr "Definizione" msgid "On completion preserve" msgstr "Conserva dopo il completamento" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "Definer" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "Il definer deve essere nel seguente formato: \"nomeutente@nomehost\"" @@ -7356,7 +7356,7 @@ msgid "Returns" msgstr "Ritorna" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Tempo" @@ -7376,7 +7376,7 @@ msgstr "" "eventuali problemi." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo di routine non valido: \"%s\"" @@ -7397,69 +7397,69 @@ msgstr "La routine %1$s é stata modificata." msgid "Routine %1$s has been created." msgstr "La routine %1$s é stata creata." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Modifica routine" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Nome della routine" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Parametri" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Direzione" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Lunghezza/Valori" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Aggiungi parametro" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Rimuovi l'ultimo parametro" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Tipo di risultato" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Lunghezza/valori del risultato" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Opzioni del risultato" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "É deterministica" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Tipo di sicurezza" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "Tipo di accesso dati SQL" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "È necessario fornire il nome della routine" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Direzione invalida \"%s\" é stata fornita per un parametro." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7467,20 +7467,20 @@ msgstr "" "È necessario fornire lunghezza o valori per parameteri della routine del " "tipo ENUM, SET, VARCHAR e VARBINARY." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" "È necessario fornire un nome ed un tipo per ogni parametro della routine." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "È necessario fornire un valido tipo del risultato." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "È necessario fornire una definizione per la routine." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7491,22 +7491,22 @@ msgstr[1] "" "%d righe influenzate dall'ultima istruzione eseguita all'interno della " "procedura" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Risultato di esecuzione della routine %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Esegui routine" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Parametri della routine" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funzione" @@ -7635,7 +7635,7 @@ msgstr "Non ci sono eventi da visualizzare." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7644,7 +7644,7 @@ msgstr "La tabella %s non esiste!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7652,9 +7652,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Prego, configurare le coordinate per la tabella %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schema del database %s - Pagina %s" @@ -7667,105 +7667,105 @@ msgstr "Questa pagina non contiene alcuna tabbella!" msgid "SCHEMA ERROR: " msgstr "SCHEMA ERROR: " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Schema relazionale" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Tabella dei contenuti" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Attributi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Crea una nuova pagina" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Nome della pagina" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Impaginazione automatica basata su" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Relazioni interne" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Prego scegli una pagina da modificare" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Seleziona pagina" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Seleziona Tables" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Visualizza lo schema relazionale" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Seleziona il Tipo di Esportazione Relazionale" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Mostra la griglia" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Mostra il colore" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Mostra la dimensione delle tabelle" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Mostra tutte le tabelle con la stessa larghezza" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Mostra solo le chiavi" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Orizzontale" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Verticale" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Orientamento" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Dimensioni carta" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7773,17 +7773,17 @@ msgstr "" "La Pagina corrente contiene Riferimenti a Tabelle che non esistono più. " "Volete cancellare questi Riferimenti?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "(dis)attiva scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Lingua non conosciuta : %1$s." @@ -7856,11 +7856,11 @@ msgstr "Cancella" msgid "Columns" msgstr "Campi" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Permetti ad ogni utente di accedere a questo bookmark" @@ -8299,7 +8299,7 @@ msgstr "Versione protocollo" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Utente" @@ -8515,7 +8515,7 @@ msgstr "Espandi/Contrai" msgid "Toggle small/big" msgstr "Contrai/Espandi" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Importa/esporta le coordinate per PDF schema" @@ -8587,39 +8587,39 @@ msgstr "" "come campo da mostrare, clicca l'icona \"Scegli il campo da mostrare\", e " "poi clicca sul nome del campo." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "La pagina è stata creata" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Creazione della pagina fallita" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Pagina" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Importa dalla pagina selezionata" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Esporta alla pagina selezionata" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Crea una nuova pagina ed esportala" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Nome per la nuova pagina: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Importa/esporta alla dimensione" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "raccomandato" @@ -8731,12 +8731,12 @@ msgstr "Importa file" msgid "All" msgstr "Tutti" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabella non trovata o non settata in %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Il file non esiste" @@ -8748,13 +8748,13 @@ msgstr "Selezionare il log binario da visualizzare" msgid "Files" msgstr "File" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Tronca le Query Mostrate" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Mostra query complete" @@ -9589,8 +9589,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Questions eseguiti dall'avvio: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "all'ora" @@ -9611,17 +9611,17 @@ msgstr "Istruzioni" msgid "#" msgstr "#" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Traffico rete dall'avvio: %s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9629,19 +9629,19 @@ msgstr "" "Questo server MySQL funziona come un master e slave nel " "processo di replicazione." -#: server_status.php:963 +#: server_status.php:964 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:965 +#: server_status.php:966 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:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9650,11 +9650,11 @@ msgstr "" "server, prego vedi la seztione sulla replicazione." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Stato di replicazione" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9663,35 +9663,35 @@ msgstr "" "e per questa ragione le statistiche riportate dal server MySQL potrebbero " "non essere corrette." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Ricevuti" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Spediti" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "max. connessioni contemporanee" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Tentativi falliti" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Fallito" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Comando" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -9699,11 +9699,11 @@ msgstr "" "Il numero di connessioni fallite perché il cliente é morto senza chiudere la " "connessione correttemente." -#: server_status.php:1189 +#: server_status.php:1190 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:1190 +#: server_status.php:1191 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 " @@ -9713,19 +9713,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:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 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:1193 +#: server_status.php:1194 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 " @@ -9737,11 +9737,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:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Numero di file temporanei che mysqld ha creato." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9749,7 +9749,7 @@ msgstr "" "Il numero di tabelle temporanee create automaticamente in memoria dal server " "durante l'esecuzione dei comandi." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9757,7 +9757,7 @@ msgstr "" "Numero di righe scritte con INSERT DELAYED in cui ci sono stati degli errori " "(probabilmete chiave dublicata)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9765,23 +9765,23 @@ msgstr "" "Il numero di processi INSERT DELAYED in uso. Ciascuna tabella su cui è usato " "INSERT DELAYED occupa un thread." -#: server_status.php:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Il numero di righe INSERT DELAYED scritte." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Il numero di comandi FLUSH eseguiti." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Il numero di comandi interni COMMIT eseguiti." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9791,7 +9791,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:1203 +#: server_status.php:1204 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, " @@ -9802,7 +9802,7 @@ msgstr "" "degli indici; per esempio, SELECT col1 FROM foo, assumento che col1 sia " "indicizzata." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -9811,7 +9811,7 @@ msgstr "" "alta, è un buon indice che le tue query e le tue tabelle sono correttamente " "indicizzate." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9822,7 +9822,7 @@ msgstr "" "colonna indice con un range costante, oppure se stai facendo una scansione " "degli indici." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9831,7 +9831,7 @@ msgstr "" "chiavi. Questo metodo di lettura è principalmente utilizzato per ottimizzare " "ORDER BY ... DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9844,7 +9844,7 @@ msgstr "" "MySQL di leggere l'intera tabella oppure ci sono dei joins che non usano le " "chiavi correttamente." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9857,37 +9857,37 @@ msgstr "" "indicizzate, o che le query non sono state scritte per trarre vantaggi dagli " "indici che hai." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Il numero di comandi ROLLBACK interni." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Il numero di pagine che contengono dati (sporchi o puliti)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Il numero di pagine attualmente sporche." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Il numero di pagine libere." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9897,7 +9897,7 @@ msgstr "" "attualmente in lettura o in scittura e non possono essere aggiornate o " "rimosse per altre ragioni." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9909,11 +9909,11 @@ msgstr "" "come Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Il numero totale di buffer pool, in pagine." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9921,7 +9921,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9929,11 +9929,11 @@ msgstr "" "Il numero di read-aheads InnoDB sequanziali. Questo accade quando InnoDB " "esegue una scansione completa sequenziale di una tabella." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Il numero di richieste logiche che InnoDb ha fatto." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9941,7 +9941,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:1223 +#: server_status.php:1224 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 " @@ -9956,55 +9956,55 @@ msgstr "" "dimesione del buffer pool è stata settata correttamente questo valore " "dovrebbe essere basso." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Il numero di scritture effettuate nel buffer pool InnoDB." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Il numero delle operazioni fsync() fino ad ora." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Il numero di operazioni fsync() in attesa." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Il numero di letture in attesa." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Il numero di scritture in attesa." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "La quantità di dati letti fino ad ora, in bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Il numero totale di dati letti." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Il numero totale di dati scritti." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "La quantità di dati scritti fino ad ora, in bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -10012,35 +10012,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Il numero di richieste di scrittura dei log." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Il numero scritture fisiche del log file." -#: server_status.php:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Il numero degli fsyncs in sospeso sul log file." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Il numero di scritture in sospeso sul log file." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Il numero di bytes scritti sul log file." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Il numero di pagine create." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10049,51 +10049,51 @@ msgstr "" "valori sono conteggiati nelle pagine; la dimesione delle pagine permette di " "convertirli facilmente in bytes." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Il numero di pagine lette." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Il numero di pagine scritte." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Il numero di row locks attualmente in attesa." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Il numero di righe cancellate da una tabella InnoDB." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Il numero di righe inserite da una tabella InnoDB." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Il numero di righe lette da una tabella InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Il numero di righe aggiornate da una tabella InnoDB." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10102,7 +10102,7 @@ msgstr "" "cambiati, ma che non sono stai aggiornati su disco. É conosciuto con il nome " "di Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10110,7 +10110,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:1257 +#: server_status.php:1258 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 " @@ -10120,11 +10120,11 @@ msgstr "" "segnale che indica il numero massimo di blocchi che sono stati in uso " "contemporaneamente." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10135,15 +10135,15 @@ msgstr "" "rapporto di cache miss rate può essere calcolato come Key_reads/" "Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10154,7 +10154,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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10162,12 +10162,12 @@ msgstr "" "Il massimo numero di connessioni che sono state utilizzate " "contemporaneamente dall'avvio del server." -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10175,20 +10175,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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Il numero di file che sono aperti." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Il numero di tabelle che sono aperte." -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -10198,19 +10198,19 @@ msgstr "" "potrebbero indicare problemi di fragmentazione che possono essere risolti " "con l'esecuzione dell'istruzione FLUSH QUERY CACHE." -#: server_status.php:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "L'ammontare di memoria libera nella cache delle query." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Il numero di cache hits." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Il numero di query aggiunte alla cache." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10223,7 +10223,7 @@ msgstr "" "una strategia di \"meno usate recentemente\" (LRU - least recently used) per " "decidere quali query rimuovere dalla cache." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10231,19 +10231,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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Il numero di query registrate nella cache." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Il numero totale di blocchi nella cache delle query." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Lo sato delle repliche failsafe (non ancora implementato)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10251,13 +10251,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10266,7 +10266,7 @@ msgstr "" "ogni riga. (Se questo valore non è 0, dovresti controllare attentamente gli " "indici delle tue tabelle.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10274,17 +10274,17 @@ msgstr "" "Il numero di joins che usano un range sulla prima tabella. (Non è, " "solitamente, un valore critico anche se è grande.)" -#: server_status.php:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10292,12 +10292,12 @@ msgstr "" "Numero totale di volte (dalla partenza) in cui la replica slave SQL ha " "ritentato una transazione." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10305,12 +10305,12 @@ msgstr "" "Numero di processi che hanno impiegato più di slow_launch_time secondi per " "partire." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10320,23 +10320,23 @@ msgstr "" "fatte. Se questo valore è grande, dovresti incrementare la variabile di " "sistema sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 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:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Il numero di righe ordinate." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10348,7 +10348,7 @@ msgstr "" "performance, dovresti prima ottimizzare le query, oppure sia utilizzare le " "repliche, sia dividere le tabelle." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10358,11 +10358,11 @@ msgstr "" "essere calcolato come processi_creati/connessioni. Se questo valore è rosso " "devi aumentare la tua thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Il numero di connessioni correntemente aperte." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10374,63 +10374,63 @@ msgstr "" "(Normalmente questo non fornisce un significatico incremento delle " "performace se hai una buona implementazione dei processi.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Il numero di processi non in attesa." -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "Avvia monitoraggio" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "Istruzioni/Configurazione" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "Ho finito di modificare/muovere i grafici" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "Aggiungi grafico" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "Muovi/modifica i grafici" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Ritmo di aggiornamenti" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Chart columns:" msgid "Chart columns" msgstr "Campi del grafico:" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Gestione degli errori:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Ripristinare valori predefiniti" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "Istruzioni per monitoraggio" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10439,7 +10439,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10447,13 +10447,13 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Arresta il monitoraggio" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10461,7 +10461,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10469,11 +10469,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11058,12 +11058,12 @@ msgstr "Mostrando la query SQL" msgid "Validated SQL" msgstr "SQL Validato" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi con gli indici della tabella `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Etichetta" diff --git a/po/ja.po b/po/ja.po index 2aeefb9abb..37202e902d 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-16 16:10+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" @@ -21,10 +21,10 @@ msgstr "すべて表示" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "ページ番号:" @@ -39,8 +39,8 @@ msgstr "" "のと思われます" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "検索" @@ -48,25 +48,25 @@ msgstr "検索" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "キー名" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "説明" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "この値を利用する" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "BLOB ストリーミングサーバが設定されていません!" @@ -128,7 +128,7 @@ msgstr "データベース %1$s を作成しました。" msgid "Database comment: " msgstr "データベースのコメント" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "テーブルのコメント" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "カラム" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "種別" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "NULL" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "デフォルト値" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "リンク先" @@ -196,8 +196,8 @@ msgstr "リンク先" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "コメント" @@ -208,7 +208,7 @@ msgstr "コメント" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "いいえ" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "リレーショナルスキーマを編集またはエクスポートす #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "使用中" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "作成日時" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "最終更新" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "最終検査" @@ -495,7 +495,7 @@ msgstr "クエリを実行する" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "アクセスは拒否されました" @@ -528,7 +528,7 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s 件(テーブル %s)" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "表示" @@ -540,10 +540,10 @@ msgstr "テーブル %s に対して条件に一致したものを削除しま #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -658,12 +658,12 @@ msgstr "すべてのチェックを外す" msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認する" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "エクスポート" @@ -673,13 +673,13 @@ msgstr "エクスポート" msgid "Print view" msgstr "印刷用画面" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "空にする" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -713,7 +713,7 @@ msgstr "テーブル名の接頭辞を付け替える" msgid "Copy table with prefix" msgstr "接頭辞を付け替えてテーブルをコピーする" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "データ辞書" @@ -728,7 +728,7 @@ msgstr "SQL コマンドを追跡しているテーブル" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -748,7 +748,7 @@ msgstr "更新日時" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "状態" @@ -855,14 +855,14 @@ msgstr "" "アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ" "メント%s をご覧ください" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "ファイルを読み込めませんでした" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -895,7 +895,7 @@ msgstr "ブックマークを削除しました" msgid "Showing bookmark" msgstr "表示中のブックマーク" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "ブックマーク %s を作成しました" @@ -922,7 +922,7 @@ msgstr "" "PHP の時間制限を伸ばさない限りこのデータのインポートはできません" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1038,9 +1038,9 @@ msgstr "閉じる" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "編集" @@ -1063,13 +1063,13 @@ msgstr "統計データ" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "合計" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "その他" @@ -1099,7 +1099,7 @@ msgstr "サーバのトラフィック (単位:KiB)" msgid "Connections since last refresh" msgstr "更新間隔中の接続数" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "プロセス" @@ -1124,7 +1124,7 @@ msgstr "クエリの統計" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "設定ファイルの読み込みに失敗しました" #: js/messages.php:94 @@ -1223,7 +1223,7 @@ msgstr "送信" msgid "Bytes received" msgstr "受信" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "接続" @@ -1232,12 +1232,12 @@ msgstr "接続" msgid "Questions" msgstr "問い合わせ" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "トラフィック" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "設定" @@ -1260,7 +1260,7 @@ msgstr "少なくとも1つの系列を追加してください" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "なし" @@ -1485,7 +1485,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "インポート" @@ -1497,7 +1497,6 @@ msgid "Analyse Query" msgstr "クエリを更新する" #: js/messages.php:196 -#| msgid "Apply a divisor" msgid "Advisor system" msgstr "アドバイザ・システム" @@ -1661,7 +1660,7 @@ msgid "Query execution time" msgstr "最大実行時間" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2078,25 +2077,25 @@ msgstr "分" msgid "Second" msgstr "秒" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "フォントサイズ" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "アップロードされたファイルではありません。" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "アップロード中に予期しないエラーが発生しました。" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "アップロードしたファイルは php.ini に指定されている upload_max_filesize ディ" "レクティブの値を超えています。" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2104,27 +2103,27 @@ msgstr "" "アップロードしたファイルは HTML フォームに指定されている MAX_FILE_SIZE ディレ" "クティブの値を超えています。" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "一時フォルダが見つかりません。" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "ファイルをディスクに書き込めません。" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "拡張のせいでファイルのアップロードが中断されました。" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "ファイルのアップロード中に予期しないエラーが発生しました。" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2132,11 +2131,11 @@ msgstr "" "アップロードされたファイルの移動に失敗しました。[a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a] をご覧ください。" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2164,7 +2163,7 @@ msgid "Cardinality" msgstr "一意な値の数" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "コメント" @@ -2187,14 +2186,14 @@ msgstr "" "インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし" "れません。" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "データベース" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2291,16 +2290,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "テーマ %s の画像パスが無効です!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "プレビューは利用できません" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "これにする" @@ -2314,12 +2313,12 @@ msgstr "デフォルトテーマ %s が見つかりません!" msgid "Theme %s not found!" msgstr "テーマ %s が見つかりません!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "テーマ %s のテーマパスが見つかりません!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "テーマ" @@ -2328,7 +2327,7 @@ msgid "Cannot connect: invalid settings." msgstr "接続できません: 設定が無効です" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%s へようこそ" @@ -2353,58 +2352,58 @@ msgstr "" "ユーザ名、パスワードが MySQL サーバの管理者から与えられた情報と一致するか確認" "してください" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "ログイン" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin のドキュメント" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "「ホスト名/IPアドレス」と「ポート」を空白で区切って入力することができます。" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "サーバ" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "ユーザ名:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "パスワード:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "サーバの選択" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "クッキーを有効にしてください" -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "パスワードなしログインは設定 (AllowNoPassword) によって禁止されています。" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s 秒以上操作をしませんでした。ログインしなおしてください" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL サーバにログインできません" @@ -2436,39 +2435,39 @@ msgstr "有効な認証キーが接続されていません" msgid "Authenticating..." msgstr "認証中..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS エラー" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS 接続に失敗しました:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS が BLOB 情報取得に失敗しました:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "PBMS が BLOB の Content-Type の 取得に失敗しました" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "イメージの表示" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "オーディオの再生" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "ビデオの再生" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "ダウンロードファイル" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "ファイルを開くことができませんでした:%s" @@ -2607,7 +2606,7 @@ msgid "Documentation" msgstr "ドキュメント" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "実行した SQL" @@ -2617,7 +2616,7 @@ msgstr "実行した SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2666,7 +2665,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "インライン" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "プロファイリング" @@ -2757,7 +2756,7 @@ msgid "Click to toggle" msgstr "クリックでオン/オフ切り替え" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2777,8 +2776,8 @@ msgstr "構造" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "挿入" @@ -2789,25 +2788,25 @@ msgstr "挿入" msgid "Operations" msgstr "操作" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "アップロードファイル:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "指定したアップロードディレクトリが利用できません" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "アップロードファイルがありません" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "実行" @@ -2972,7 +2971,7 @@ msgid "Allow users to customize this value" msgstr "この値の変更をユーザに許可する" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "リセット" @@ -5283,8 +5282,8 @@ msgstr "データベース %s にテーブルを作成する" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5596,7 +5595,7 @@ msgstr "キーでソート" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "オプション" @@ -5656,7 +5655,7 @@ msgid "The row has been deleted" msgstr "行を削除しました" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "停止" @@ -6242,7 +6241,7 @@ msgstr "MIME タイプの表示" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "ホスト" @@ -6461,7 +6460,7 @@ msgstr "SQL の結果" msgid "Generated by" msgstr "生成環境" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした(行数0)" @@ -6565,7 +6564,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "テーブル名" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "カラム名" @@ -6921,7 +6920,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "更新した設定ファイルを読み込むために phpMyAdmin にログインし直します。" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "説明がありません" @@ -6958,14 +6957,14 @@ msgid "Slave status" msgstr "スレーブステータス" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "変数" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "値" @@ -7029,7 +7028,7 @@ msgstr "パスワードを生成する" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7064,14 +7063,14 @@ msgstr "リクエストの処理中に 1 つ以上のエラーが発生しま msgid "Edit event" msgstr "イベントを編集する" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "要求処理中でのエラー" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "詳細" @@ -7084,7 +7083,7 @@ msgstr "イベント名" msgid "Event type" msgstr "イベント種別" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7108,7 +7107,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "終了" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "定義" @@ -7119,12 +7118,12 @@ msgstr "定義" msgid "On completion preserve" msgstr "完全な INSERT 文を作成する" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "DEFINER" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7176,7 +7175,7 @@ msgid "Returns" msgstr "返り値の種類" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "時間" @@ -7196,7 +7195,7 @@ msgstr "" "するようにしてください。" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "ルーチンタイプが不正です: \"%s\"" @@ -7215,69 +7214,69 @@ msgstr "ルーチン %1$s を変更しました。" msgid "Routine %1$s has been created." msgstr "ルーチン %1$s を作成しました。" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "ルーチンを編集する" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "ルーチン名" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "パラメータ" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "入出力" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "長さ/値" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "パラメータを追加する" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "最後のパラメータを削除する" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "返り値の種類" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "返り値の長さ/値" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "返り値のオプション" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "DETERMINISTIC" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "SQL SECURITY" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "データ干渉方式" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "ルーチン名は必須です" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "パラメータに対して不正な入出力「%s」が与えられています。" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7285,40 +7284,40 @@ msgstr "" "ルーチンパラメータが ENUM、SET、VARCHAR、VARBINARY の場合、長さ/値は必須で" "す。" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "ルーチンの各パラメータに対して、名前と種別は必須です" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "ルーチンに対して、有効な返り値の種類を指定してください" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "ルーチンの定義は必須です" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "プロシージャ内の最後のステートメントは %d 行の変更を行いました" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "ルーチン %s の実行結果" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "ルーチンを実行する" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "ルーチンのパラメータ" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "関数" @@ -7447,7 +7446,7 @@ msgstr "表示できるイベントがありません" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7456,7 +7455,7 @@ msgstr "%s テーブルは存在しません!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7464,9 +7463,9 @@ msgid "Please configure the coordinates for table %s" msgstr "テーブル %s の座標を設定してください" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "データベース %s のスキーマ - ページ %s" @@ -7479,105 +7478,105 @@ msgstr "このページにはテーブルがありません!" msgid "SCHEMA ERROR: " msgstr "スキーマエラー:" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "リレーショナルスキーマ" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "テーブルの内容" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "属性" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "その他" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "新しいページを作成する" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "ページ名" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "自動レイアウト、チェックしたのに基づく" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "内部リレーション" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "外部キー" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "編集するページを選択してください" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "ページを選択してください" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "テーブルを選択してください" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "リレーショナルスキーマを表示する" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "エクスポートするリレーショナルタイプを選択してください" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "グリッドを表示" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "色表示" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "テーブルの大きさを表示する" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "すべてのテーブルを同じ幅で表示しますか?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "キーの表示のみ" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "横向き" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "縦向き" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "向き" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "用紙サイズ" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7585,17 +7584,17 @@ msgstr "" "このページには存在しないテーブルへの参照があります。これらの参照を削除します" "か?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "スクラッチボードを切り替える" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "言語ファイルが登録されていません: %1$s" @@ -7668,11 +7667,11 @@ msgstr "クリア" msgid "Columns" msgstr "カラム" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "この SQL をブックマークする" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "すべてのユーザがこのブックマークを利用できるようにする" @@ -8097,7 +8096,7 @@ msgstr "プロトコルバージョン" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "ユーザ" @@ -8307,7 +8306,7 @@ msgstr "すべてを大きく/小さく" msgid "Toggle small/big" msgstr "大小を切り替える" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "PDF スキーマの座標をインポート/エクスポートする" @@ -8379,39 +8378,39 @@ msgstr "" "るカラムを選択する」というアイコンをクリックしてから適切なカラム名をクリック" "ください。" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "ページが作成されました。" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "ページの作成に失敗しました。" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "ページ" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "選択したページからインポートする" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "選択したページへエクスポートする" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "ページを作成し、そこへエクスポートする。" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "新しいページの名前: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "倍率にあわせたエクスポート/インポート" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "推奨" @@ -8525,13 +8524,13 @@ msgstr "インポートファイル" msgid "All" msgstr "全部" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "" "テーブル %s が見つかりません。あるいは %s には設定されていません" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "ファイルが存在しません" @@ -8543,13 +8542,13 @@ msgstr "表示するバイナリログを選択してください" msgid "Files" msgstr "ファイル" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "クエリの表示を切り詰める" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "クエリ全体を表示" @@ -9338,7 +9337,9 @@ msgstr "はじめに" msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." -msgstr "アドバイザ・システムは、サーバの状態変数を分析することにより、サーバ変数のお勧め設定方法を提供するものです。" +msgstr "" +"アドバイザ・システムは、サーバの状態変数を分析することにより、サーバ変数のお" +"勧め設定方法を提供するものです。" #: server_status.php:810 msgid "" @@ -9346,7 +9347,8 @@ msgid "" "calculations and by rule of thumb which may not necessarily apply to your " "system." msgstr "" -"このシステムは、単純な計算を基にして経験則によってお勧め設定を提供するため、お使いのシステムに必ずしも当てはまるものではないことに注意してください。" +"このシステムは、単純な計算を基にして経験則によってお勧め設定を提供するため、" +"お使いのシステムに必ずしも当てはまるものではないことに注意してください。" #: server_status.php:812 msgid "" @@ -9368,8 +9370,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "起動以後の問い合わせ数:%s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "/時" @@ -9390,17 +9392,17 @@ msgstr "ステートメント" msgid "#" msgstr "クエリ数" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "起動以後のネットワークトラフィック:%s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9408,19 +9410,19 @@ msgstr "" "この MySQL サーバは、レプリケーションプロセスのマスタス" "レーブとして動作しています。" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" "この MySQL サーバは、レプリケーションプロセスのマスタとして動作" "しています。" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" "この MySQL サーバは、レプリケーションプロセスのスレーブとして動" "作しています。" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9428,11 +9430,11 @@ msgstr "" "サーバ上のレプリケーションステータスの詳細については、レプリケーションの節を参照してください。" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "レプリケーションステータス" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9440,45 +9442,45 @@ msgstr "" "処理が集中するサーバではバイトカウンタが超過することがあるため、MySQL サーバ" "が報告してくる統計は不正確なことがあります" -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "受信済" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "送信済" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "最大同時接続数" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "失敗回数" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "中断" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "コマンド" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "クライアントが適切に接続を閉じなかったために中断された接続数。" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "MySQL サーバへの接続を試みて失敗した回数。" -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -9487,16 +9489,16 @@ msgstr "" "一時バイナリログキャッシュを利用したものの binlog_cache_size の値を超過したた" "め一時ファイルにステートメントを保存したトランザクション数" -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "一時バイナリログキャッシュを使用したトランザクション数" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "MySQL サーバへの接続試行回数(成否に関わらず)。" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9507,24 +9509,24 @@ msgstr "" "Created_tmp_disk_tables の値が大きい場合は tmp_table_size の値を増やしてディ" "スク上ではなくメモリ上に一時テーブルを構築した方がよいかもしれません。" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "mysqld が生成した一時ファイル数" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "ステートメント実行中にサーバが自動生成したメモリ上の一時テーブル数" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "何らかのエラー (たぶんキーの重複) が発生したため INSERT DELAYED された行数" -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9532,23 +9534,23 @@ msgstr "" "使用中の INSERT DELAYED ハンドラのスレッド数。INSERT DELAYED を適用するテーブ" "ルの数だけ固有のスレッドが用意されます" -#: server_status.php:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED で書き込まれた行数" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "FLUSH 文の実行回数" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "内部で COMMIT 文を実行した回数" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "テーブルから行を削除した回数" -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -9558,7 +9560,7 @@ msgstr "" "ての情報を持っているか問い合わせることができます。これを開示と言いますが、" "Handler_discover はその開示されたタイムテーブルの数です" -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9568,7 +9570,7 @@ msgstr "" "もインデックスのフルスキャンを実行しているものと思われます。例えば SELECT " "col1 FROM foo を実行した場合 (col1 はインデックスに含まれているものとします)" -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -9576,7 +9578,7 @@ msgstr "" "キーに基づいて行を読み込んだリクエストの数。この値が高い場合はクエリとテーブ" "ルが適切にインデックスされているものと考えられます" -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9585,7 +9587,7 @@ msgstr "" "キーの順序通りに次の行を読み込んだリクエストの数。この値はインデックス列のク" "エリに範囲指定をしているか、インデックススキャンを行っているときに増加します" -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9593,7 +9595,7 @@ msgstr "" "キーの順序通りに前の行を読み込んだリクエストの数。この読み込みは主に ORDER " "BY ... DESC の最適化に利用されます" -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9605,7 +9607,7 @@ msgstr "" "キャンしなければならないクエリを大量に行っているか、結合の際のキーの使い方に" "不適切なところがあります" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9616,36 +9618,36 @@ msgstr "" "キャンを大量に実行しているためです。一般にこれはテーブルのインデックスが不適" "切か、クエリがインデックスを利用するように書かれていないことを意味します" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "内部で ROLLBACK 文を実行した回数" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "テーブル内の行を更新したリクエストの数" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "テーブル内に行を挿入したリクエストの数" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" "データが含まれるページの数 (ダーティページ、クリーンページの別を問わず)" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "現在のダーティページの数" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "フラッシュリクエストを受けたバッファプールのページ数" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "空きページ数" -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9655,7 +9657,7 @@ msgstr "" "るいは書き込んでいるページ、あるいは他の何らかの理由でフラッシュしたり削除し" "たりできなくなっているページの数です" -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9667,11 +9669,11 @@ msgstr "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data という式でも計" "算できます" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "ページのバッファプールサイズの合計" -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9679,7 +9681,7 @@ msgstr "" "InnoDB が開始したランダム読み込みの回数。これはクエリがテーブルの大部分をラン" "ダムな順番でスキャンするときに発生します" -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9687,11 +9689,11 @@ msgstr "" "InnoDB が開始したシーケンシャル読み込みの回数。これは InnoDB がシーケンシャル" "なフルテーブルスキャンを行うときに発生します" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB が実行した論理読み込みリクエストの数" -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9699,7 +9701,7 @@ msgstr "" "InnoDB がバッファプールの内容を利用できず、シングルページ読み込みを行わなけれ" "ばならなかった論理読み込みの回数" -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -9713,51 +9715,51 @@ msgstr "" "そのウェイトの回数をカウントするものです。バッファプールの値が適切に設定され" "ていれば、この値は小さいはずです" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB バッファプールへの書き込み回数" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "これまでに fsync() を実行した回数" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "現在保留されている fsync() の回数" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "現在保留されている読み込みの数" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "現在保留されている書き込みの数" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "これまでのデータ読み込み量 (単位:バイト)" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "データ読み込み回数の合計" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "データ書き込み回数の合計" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "これまでのデータの書き込み量 (単位:バイト)" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "二重書き込みの実行回数と二重書き込みが発生したページ数" -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -9765,35 +9767,35 @@ msgstr "" "ログバッファが小さすぎてフラッシュしないと作業を続行できなくなったために発生" "したウェイトの回数" -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "ログ書き込みリクエストの数" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "ログファイルへの物理書き込みの回数" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "ログファイルへの fsync 書き込みの回数" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "保留中のログファイルへの fsync 回数" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "保留中のログファイルへの書き込み回数" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "ログファイルに書き込んだバイト数" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "作成されたページ数" -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9801,51 +9803,51 @@ msgstr "" "コンパイル時の InnoDB のページサイズ (デフォルト:16KB)。多くの値がページ単位" "で計算されますが、この値を使えば簡単にバイト単位に変換できます" -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "読み込んだページ数" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "書き込んだページ数" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "現在待機中の行ロックの数" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要する平均時間 (単位:ミリ秒)" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "行ロック取得に要した時間の合計 (単位:ミリ秒)" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "行ロック取得に要した時間の最大値 (単位:ミリ秒)" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "行ロック取得時に待機した回数" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB テーブルから削除した行数" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB テーブルに挿入した行数" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB テーブルから読み込んだ行数" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB テーブルで更新された行数" -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -9853,7 +9855,7 @@ msgstr "" "変更されてからディスクにフラッシュされていないキーキャッシュのキーブロックの" "数。以前は Not_flushed_key_blocks でした" -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -9861,7 +9863,7 @@ msgstr "" "キーキャッシュの未使用ブロックの数。キーキャッシュの使用率を調べるときに使え" "ます" -#: server_status.php:1257 +#: server_status.php:1258 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 " @@ -9870,11 +9872,11 @@ msgstr "" "キーキャッシュの使用済みブロックの数。この値はこれまで一度に使用されたブロッ" "クの最大数です" -#: server_status.php:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "キャッシュからキーブロックを読み込んだリクエストの数" -#: server_status.php:1259 +#: server_status.php:1260 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 " @@ -9884,15 +9886,15 @@ msgstr "" "く key_buffer_size が小さすぎるためです。キャッシュミスの割合は Key_reads/" "Key_read_requests で計算できます" -#: server_status.php:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "キャッシュにキーブロックを書き込んだリクエストの数" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "ディスクにキーブロックを物理書き込みした回数" -#: server_status.php:1262 +#: server_status.php:1263 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 " @@ -9902,17 +9904,17 @@ msgstr "" "クエリのプランを変えたときにコストがどう変わるか比較するときに便利です。デ" "フォルト値の 0 はまだ一度もクエリをコンパイルしていないという意味です" -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "サーバが起動してからの同時接続の最大数。" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "INSERT DELAYED キューの中で書き込まれるのを待っている行数" -#: server_status.php:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9920,19 +9922,19 @@ msgstr "" "開いているテーブルの数。開いているテーブルが多い場合はおそらくテーブルキャッ" "シュの値が小さすぎます" -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "開いているファイルの数" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "開いているストリームの数 (主にログの記録用です)" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "開いているテーブルの数" -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -9942,19 +9944,19 @@ msgstr "" "ていることを示しています。FLUSH QUERY CACHE 文を発行することによって解消され" "るかもしれません。" -#: server_status.php:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "クエリキャッシュの空きメモリ量" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "キャッシュのヒット数" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "キャッシュに追加されたクエリの数" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9966,7 +9968,7 @@ msgstr "" "エリキャッシュは最後に使われた時刻が最も古いものから削除する(LRU)戦略に従って" "削除するクエリを決めます" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9974,19 +9976,19 @@ msgstr "" "キャッシュされなかった (キャッシュできないか query_cache_type の設定でキャッ" "シュしないことになっている) クエリの数" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "キャッシュに登録されているクエリの数" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "クエリキャッシュの総ブロック数" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "フェイルセーフレプリケーションの状態 (未実装)" -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -9994,11 +9996,11 @@ msgstr "" "インデックスを利用しなかった結合の数。この値が 0 でない場合はテーブルのイン" "デックスをよく確認してください" -#: server_status.php:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "参照テーブルで範囲検索をした結合の数" -#: server_status.php:1280 +#: server_status.php:1281 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.)" @@ -10006,7 +10008,7 @@ msgstr "" "キーが指定されていなかったため一行ずつキーが使われているか確認した結合の数" "(0 でない場合はテーブルのインデックスをよく確認してください)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10014,15 +10016,15 @@ msgstr "" "最初のテーブルで範囲指定された結合の数 (この値は大きくてもふつう問題ありませ" "ん)" -#: server_status.php:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "最初のテーブルをフルスキャンした結合の数" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "スレーブの SQL スレッドが現在開いている一時テーブルの数" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10030,22 +10032,22 @@ msgstr "" "レプリケーションスレーブの SQL スレッドがトランザクションを再試行した回数(起" "動時からの合計)" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "このサーバがマスタに接続するスレーブである場合は ON になります" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "slow_launch_time で指定された秒数以上に作成時間がかかったスレッドの数" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time で指定された秒数以上に時間のかかったクエリの数" -#: server_status.php:1288 +#: server_status.php:1289 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 " @@ -10054,23 +10056,23 @@ msgstr "" "ソートアルゴリズムが実行しなければならなかったマージの回数。この値が高い場合" "は sort_buffer_size システム変数の値を増やした方がよいでしょう" -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "範囲指定付きでソートが行われた回数" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "ソート済の行数" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "テーブルをスキャンしたときに実行されたソートの回数" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "テーブルロックをすぐに取得できた回数" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10081,7 +10083,7 @@ msgstr "" "フォーマンスに問題が生じている場合は、まずクエリを最適化してください。それで" "もだめならテーブルを分割するか、レプリケーションを利用してください" -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10091,11 +10093,11 @@ msgstr "" "Connections で計算できます。この値が赤くなっている場合は thread_cache_size を" "大きくしてください" -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "現在開いている接続の数" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10106,59 +10108,59 @@ msgstr "" "thread_cache_size の値を増やした方がよいかもしれません (スレッドの実装に問題" "がない場合はふつうあまりパフォーマンスは向上しません)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "スリープしていないスレッドの数" -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "モニタ開始" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "使用方法/セットアップ" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "グラフの再配置/変更完了" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "グラフの追加" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "グラフの再配置/変更" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "再描画間隔" -#: server_status.php:1467 +#: server_status.php:1468 msgid "Chart columns" msgstr "1 段のグラフ数" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "管理エラー:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "デフォルトに戻す" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "モニタの使用方法" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10172,7 +10174,7 @@ msgstr "" "お、general_log は大量のデータを生成し、サーバの負荷を 15% 増加させますので、" "注意するようにしてください。" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10184,13 +10186,13 @@ msgstr "" "グ機能は、MySQL 5.1.6 以降でサポートされています。ですが、サーバのグラフモニ" "タ機能は使用することができます。" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "モニタ一時中断" -#: server_status.php:1509 +#: server_status.php:1510 #, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " @@ -10217,7 +10219,7 @@ msgstr "" "が読み込まれ表示されますので、実行されたクエリを確認することができます。" "SELECT 文の部分をクリックすることで、更なるクエリ解析が可能です。

" -#: server_status.php:1511 +#: server_status.php:1512 #, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " @@ -10244,11 +10246,11 @@ msgstr "" "が読み込まれ表示されますので、実行されたクエリを確認することができます。" "SELECT 文の部分をクリックすることで、更なるクエリ解析が可能です。

" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 #, fuzzy #| msgid "" #| "Please note: Enabling the general_log may increase the server load " @@ -10830,12 +10832,12 @@ msgstr "SQL クエリを表示" msgid "Validated SQL" msgstr "検証した SQL 文" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "テーブル `%s` のインデックスに問題があります" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "ラベル" @@ -11583,7 +11585,9 @@ msgstr "稼働時間が 1 日未満" #: po/advisory_rules.php:6 msgid "Uptime is less than 1 day, performance tuning may not be accurate." -msgstr "稼働時間が 1 日未満です。パフォーマンスチューニングが正確でない可能性があります。" +msgstr "" +"稼働時間が 1 日未満です。パフォーマンスチューニングが正確でない可能性がありま" +"す。" #: po/advisory_rules.php:7 msgid "" @@ -11612,7 +11616,9 @@ msgstr "" msgid "" "Let the server run for a longer time until it has executed a greater amount " "of queries." -msgstr "実行されたクエリが十分な量になるまで、長時間サーバを稼動させたほうがいいでしょう。" +msgstr "" +"実行されたクエリが十分な量になるまで、長時間サーバを稼動させたほうがいいで" +"しょう。" #: po/advisory_rules.php:13 #, php-format @@ -11697,8 +11703,8 @@ msgid "" "Enable slow query logging by setting {log_slow_queries} to 'ON'. This will " "help troubleshooting badly performing queries." msgstr "" -"{log_slow_queries} " -"を「ON」に設定することで、遅いクエリのログへの記録が有効になります。これは、パフォーマンスの悪いクエリの切り分けに役立つでしょう。" +"{log_slow_queries} を「ON」に設定することで、遅いクエリのログへの記録が有効に" +"なります。これは、パフォーマンスの悪いクエリの切り分けに役立つでしょう。" #: po/advisory_rules.php:33 msgid "log_slow_queries is set to 'OFF'" @@ -11824,7 +11830,9 @@ msgstr "" #: po/advisory_rules.php:68 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" -msgstr "query_cache_size が 0 に設定されているか、query_cache_type が「OFF」に設定されています。" +msgstr "" +"query_cache_size が 0 に設定されているか、query_cache_type が「OFF」に設定さ" +"れています。" #: po/advisory_rules.php:71 msgid "Suboptimal caching method." @@ -12114,23 +12122,23 @@ msgid "" "scan, including join queries that do not use indexes. Add indexes where " "applicable." msgstr "" -"多くのクエリがインデックスを使用しない結合クエリを含んでいるために、結果のソート、テーブルの全スキャン、のいずれかもしくは両方を必要としていることを示し" -"ています。該当箇所にインデックスを追加してください。" +"多くのクエリがインデックスを使用しない結合クエリを含んでいるために、結果の" +"ソート、テーブルの全スキャン、のいずれかもしくは両方を必要としていることを示" +"しています。該当箇所にインデックスを追加してください。" #: po/advisory_rules.php:133 #, php-format msgid "" "Rate of reading fixed position average: %s, this value should be less than 1 " "per hour" -msgstr "決まった位置を読み込む割合の平均:%s。推奨値は、1 時間当たり 1 未満です。" +msgstr "" +"決まった位置を読み込む割合の平均:%s。推奨値は、1 時間当たり 1 未満です。" #: po/advisory_rules.php:135 -#| msgid "Where to show the table row links" msgid "Rate of reading next table row" msgstr "テーブルの次行を読み込む割合" #: po/advisory_rules.php:136 -#| msgid "Where to show the table row links" msgid "The rate of reading the next table row is high." msgstr "テーブルの次行を読み込む割合が高いです。" @@ -12138,7 +12146,9 @@ msgstr "テーブルの次行を読み込む割合が高いです。" msgid "" "This indicates that many queries are doing full table scans. Add indexes " "where applicable." -msgstr "多くのクエリがテーブルの全スキャンを行っていることを示しています。該当箇所にインデックスを追加してください。" +msgstr "" +"多くのクエリがテーブルの全スキャンを行っていることを示しています。該当箇所に" +"インデックスを追加してください。" #: po/advisory_rules.php:138 #, php-format @@ -12296,12 +12306,10 @@ msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" #: po/advisory_rules.php:175 -#| msgid "Create table" msgid "Rate of table open" msgstr "テーブルを開く割合" #: po/advisory_rules.php:176 -#| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "テーブルを開く割合が高いです。" @@ -12310,8 +12318,8 @@ msgid "" "Opening tables requires disk I/O which is costly. Increasing " "{table_open_cache} might avoid this." msgstr "" -"テーブルを開くことは、負荷がかかるディスクへの入出力を必要とします。{table_open_cache} " -"を大きくすることで、これを緩和できることがあります。" +"テーブルを開くことは、負荷がかかるディスクへの入出力を必要とします。" +"{table_open_cache} を大きくすることで、これを緩和できることがあります。" #: po/advisory_rules.php:178 #, php-format @@ -12335,8 +12343,8 @@ msgid "" "Consider increasing {open_files_limit}, and check the error log when " "restarting after changing open_files_limit." msgstr "" -"{open_files_limit} 増やすことを検討してください。open_files_limit " -"を変更して再起動した場合は、エラーログを確認するようにしてください。" +"{open_files_limit} 増やすことを検討してください。open_files_limit を変更して" +"再起動した場合は、エラーログを確認するようにしてください。" #: po/advisory_rules.php:183 #, php-format @@ -12345,12 +12353,10 @@ msgid "" msgstr "" #: po/advisory_rules.php:185 -#| msgid "Format of imported file" msgid "Rate of open files" msgstr "ファイルを開く割合" #: po/advisory_rules.php:186 -#| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "ファイルを開く割合が高いです。" @@ -12390,7 +12396,6 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" #: po/advisory_rules.php:200 -#| msgid "Key cache" msgid "Thread cache" msgstr "スレッドキャッシュ" diff --git a/po/ka.po b/po/ka.po index 952bf15dbb..77211edc67 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" @@ -20,10 +20,10 @@ msgstr "ყველას ჩვენება" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "გვერდის ნომერი:" @@ -38,8 +38,8 @@ msgstr "" "cross-window updates." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "ძებნა" @@ -47,25 +47,25 @@ msgstr "ძებნა" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "Keyname" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "აღწერილობა" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "გამოიყენე ეს ველი" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -127,7 +127,7 @@ msgstr "შეიქმნა მონაცემთა ბაზა %1$s." msgid "Database comment: " msgstr "მონაცემთა ბაზის კომენტარი: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -136,8 +136,8 @@ msgstr "ცხრილის კომენტარები" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -151,11 +151,11 @@ msgstr "სვეტების სახელები" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -166,8 +166,8 @@ msgstr "ტიპი" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -177,8 +177,8 @@ msgstr "ნული" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -187,8 +187,8 @@ msgstr "ნაგულისხმები" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Links to" @@ -197,8 +197,8 @@ msgstr "Links to" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "კომენტარები" @@ -209,7 +209,7 @@ msgstr "კომენტარები" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -230,7 +230,7 @@ msgstr "არა" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -369,7 +369,7 @@ msgstr "Relational schema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -393,21 +393,21 @@ msgstr "in use" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "შეიქმნა" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "უკანასკნელი განახლება" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Last check" @@ -511,7 +511,7 @@ msgstr "მოთხოვნის გაგზავნა" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "წვდომა აკრძალულია" @@ -546,7 +546,7 @@ msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "არჩევა" @@ -559,10 +559,10 @@ msgstr "Dumping data for table" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -689,12 +689,12 @@ msgstr "მონიშნვის მოხსნა ყველასთვ msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "ექსპორტი" @@ -704,13 +704,13 @@ msgstr "ექსპორტი" msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "ცარიელი" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -749,7 +749,7 @@ msgstr "Replace table data with file" msgid "Copy table with prefix" msgstr "Replace table data with file" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "მონაცემების ლექსიკონი" @@ -765,7 +765,7 @@ msgstr "დაბლოკილი ცხრილების გამოტ #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -787,7 +787,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "მდგომარეობა" @@ -896,14 +896,14 @@ msgstr "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -934,7 +934,7 @@ msgstr "The bookmark has been deleted." msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" @@ -961,7 +961,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1089,9 +1089,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "რედაქტირება" @@ -1118,13 +1118,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "სულ" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1156,7 +1156,7 @@ msgstr "სერვერის არჩევა" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "პროცესები" @@ -1185,7 +1185,7 @@ msgstr "სტატისტიკის ჩევნება" #: js/messages.php:93 #, fuzzy #| msgid "Cannot load or save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" #: js/messages.php:94 @@ -1294,7 +1294,7 @@ msgstr "" msgid "Bytes received" msgstr "მიღებულია" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "კავშირები" @@ -1304,12 +1304,12 @@ msgstr "კავშირები" msgid "Questions" msgstr "სპარსული" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "ტრაფიკი" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1338,7 +1338,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "არაა" @@ -1565,7 +1565,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "შემოტანა" @@ -1774,7 +1774,7 @@ msgid "Query execution time" msgstr "Maximum execution time" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2260,26 +2260,26 @@ msgstr "in use" msgid "Second" msgstr "წამში" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "შრიფტის ზომა" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Unknown error in file upload." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2287,27 +2287,27 @@ msgstr "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "The uploaded file was only partially uploaded." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Missing a temporary folder." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Failed to write file to disk." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "File upload stopped by extension." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Unknown error in file upload." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2315,11 +2315,11 @@ msgstr "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2347,7 +2347,7 @@ msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "კომენტარი" @@ -2370,14 +2370,14 @@ msgstr "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "მონაცემთა ბაზები" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2487,16 +2487,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "No preview available." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "take it" @@ -2510,12 +2510,12 @@ msgstr "Default theme %s not found!" msgid "Theme %s not found!" msgstr "Theme %s not found!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2524,7 +2524,7 @@ msgid "Cannot connect: invalid settings." msgstr "დაკავშირება შეუძლებელია: პარამეტრები არასწორია." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "მოგესალმებათ %s" @@ -2550,56 +2550,56 @@ msgstr "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "შესვლა" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-ის დოკუმენტაცია" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "You can enter hostname/IP address and port separated by space." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "სერვერი:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "მომხმარებელი:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "პაროლი:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "სერვერის არჩევა" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL სერვერზე შესვლა შეუძლებელია" @@ -2632,41 +2632,41 @@ msgstr "No valid authentication key plugged" msgid "Authenticating..." msgstr "ავთენტიფიკაცია..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "MySQL კავშირის კოლაცია" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "გამოსახულების ჩვენება" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "ხმის დაკვრა" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "ვიდეოს ჩვენება" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "ფაილის ჩამოტვირთვა" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2811,7 +2811,7 @@ msgid "Documentation" msgstr "დოკუმენტაცია" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL მოთხოვნა" @@ -2821,7 +2821,7 @@ msgstr "SQL მოთხოვნა" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2874,7 +2874,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ძრავები" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profiling" @@ -2975,7 +2975,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2995,8 +2995,8 @@ msgstr "სტრუქტურა" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "ჩასმა" @@ -3007,26 +3007,26 @@ msgstr "ჩასმა" msgid "Operations" msgstr "მოქმედებები" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3205,7 +3205,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "დაბრუნება" @@ -5644,8 +5644,8 @@ msgstr "Create new table on database %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -6009,7 +6009,7 @@ msgstr "Sort by key" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "პარამეტრები" @@ -6075,7 +6075,7 @@ msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Kill" @@ -6689,7 +6689,7 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "ჰოსტი" @@ -6904,7 +6904,7 @@ msgstr "SQL-ის შედეგი" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." @@ -7005,7 +7005,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "ცხრილის სახელი" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "სვეტების სახელები" @@ -7371,7 +7371,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "no description" @@ -7409,14 +7409,14 @@ msgid "Slave status" msgstr "Show slave status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "ცვლადი" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "მნიშვნელობა" @@ -7476,7 +7476,7 @@ msgstr "პაროლის დაგენერირება" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7515,16 +7515,16 @@ msgstr "" msgid "Edit event" msgstr "სერვერის რედაქტირება" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "პროცესები" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7541,7 +7541,7 @@ msgstr "მოვლენის ტიპი" msgid "Event type" msgstr "მოვლენის ტიპი" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7571,7 +7571,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "დასასრული" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7584,12 +7584,12 @@ msgstr "აღწერილობა" msgid "On completion preserve" msgstr "სრული ჩასმები" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7637,7 +7637,7 @@ msgid "Returns" msgstr "Return type" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "დრო" @@ -7653,7 +7653,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7675,128 +7675,128 @@ msgstr "Table %s has been dropped" msgid "Routine %1$s has been created." msgstr "Table %1$s has been created." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "რედაქტირების რეჟიმი" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Routines" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "პირდაპირი ბმულები" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Length/Values" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "ახალი ველის დამატება" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Rename database to" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Return type" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Length/Values" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "ცხრილის პარამეტრები" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "უსაფრთხოება" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Allows executing stored routines." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Routines" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "ფუნქცია" @@ -7960,7 +7960,7 @@ msgstr "There are no configured servers" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7970,7 +7970,7 @@ msgstr "ცხრილი \"%s\" არ არსებობს!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7978,9 +7978,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7996,115 +7996,115 @@ msgstr "File %s does not contain any key id" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relational schema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Table of contents" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "ატრიბუტები" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "ექსტრა" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "ახალი გვერდის შექმნა" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "გვერდის ნომერი:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "ავტომატური განლაგება" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Internal relations" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "გთხოვთ აირჩიოთ დასარედაქტირებელი გვერდი" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "ყველას მონიშნვა" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "ცხრილების არჩევა" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relational schema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Show grid" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "ფერის ჩვენება" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Show dimension of tables" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Display all tables with the same width" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Only show keys" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "ლანდშაფტური" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "პორტრეტული" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "შეიქმნა" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "გვერდის ზომა" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8112,17 +8112,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "უცნობი ენა: %1$s." @@ -8202,11 +8202,11 @@ msgstr "გაწმენდა" msgid "Columns" msgstr "სვეტების სახელები" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -8697,7 +8697,7 @@ msgstr "ოქმის ვერსია" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "მომხმარებელი" @@ -8921,7 +8921,7 @@ msgstr "Small/Big All" msgid "Toggle small/big" msgstr "Toggle small/big" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export coordinates for PDF schema" @@ -9013,50 +9013,50 @@ msgstr "" "field, click the \"Choose field to display\" icon, then click on the " "appropriate field name." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Table %1$s has been created." -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "pages" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "ფაილების შემოტანა" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Export/Import to scale" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "ახალი ინდექსის შექმნა" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "მომხმარებლის სახელი" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Export/Import to scale" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "რეკომენდებული" @@ -9173,12 +9173,12 @@ msgstr "ფაილების შემოტანა" msgid "All" msgstr "ყველა" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9192,13 +9192,13 @@ msgstr "აირჩიეთ საჩვენებელი ორობი msgid "Files" msgstr "ფაილები" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Show Full Queries" @@ -10031,8 +10031,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Customize startup page" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "საათში" @@ -10053,43 +10053,43 @@ msgstr "Statements" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 #, fuzzy msgid "Replication status" msgstr "რეპლიკაცია" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10097,47 +10097,47 @@ 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "მიღებულია" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "გაიგზავნა" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "max. concurrent connections" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Failed attempts" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "შეწყვეტილია" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "ბრძანება" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -10147,16 +10147,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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,98 +10168,98 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:1195 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - #: server_status.php:1196 msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." #: server_status.php:1197 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:1198 +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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 -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 "" -"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." - #: server_status.php:1203 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 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 "" -"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 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." #: server_status.php:1204 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 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 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 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:1205 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." +"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 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." +"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:1206 msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." +"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 previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." +"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:1207 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 optimize ORDER BY ... DESC." + +#: server_status.php:1208 +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 " @@ -10270,7 +10270,7 @@ msgstr "" "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:1208 +#: server_status.php:1209 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,47 +10282,47 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "The number of free pages." -#: server_status.php:1216 -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:1217 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:1218 +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 - " @@ -10333,40 +10333,40 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:1219 -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:1220 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:1221 +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:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:1222 -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:1223 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:1224 +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 " @@ -10379,51 +10379,51 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "The number of doublewrite operations that have been performed." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -10431,35 +10431,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10467,68 +10467,68 @@ 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "The number of pages read." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "The number of pages written." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:1255 -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 "" -"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:1256 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 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 "" -"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 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:1257 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:1258 +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." @@ -10537,11 +10537,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10551,15 +10551,15 @@ msgstr "" "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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10569,17 +10569,17 @@ msgstr "" "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." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10587,70 +10587,70 @@ 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:1273 -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:1274 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:1275 +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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10658,35 +10658,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:1279 +#: server_status.php:1280 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:1280 -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:1281 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:1282 +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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10694,26 +10694,26 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." - #: server_status.php:1287 msgid "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." msgstr "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." #: server_status.php:1288 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:1289 +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." @@ -10722,36 +10722,36 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 -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 " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"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 " -"should first optimize your queries, and then either split your table or " -"tables or use replication." - #: server_status.php:1294 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 " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"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 " +"should first optimize your queries, and then either split your table or " +"tables or use replication." + +#: server_status.php:1295 +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." @@ -10760,11 +10760,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10776,67 +10776,67 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Startup" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "ახალი ველის დამატება" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "განახლება" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR textarea columns" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Restore default value" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy msgid "Monitor Instructions" msgstr "ინფორმაცია" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10845,7 +10845,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10853,11 +10853,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10865,7 +10865,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10873,11 +10873,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11520,12 +11520,12 @@ msgstr "Showing SQL query" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Label" diff --git a/po/ko.po b/po/ko.po index 8a31b369b7..e8d279d61c 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-05 14:17+0200\n" "Last-Translator: Chung-Ook Lee \n" "Language-Team: korean \n" @@ -21,10 +21,10 @@ msgstr "모두 보기" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "페이지 번호:" @@ -38,8 +38,8 @@ msgstr "" "안 설정이 다른 창을 업데이트하지 못하도록 설정되어 있는 것 같습니다." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "검색" @@ -47,25 +47,25 @@ msgstr "검색" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "키 이름" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "설명" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "이 값을 사용합니다" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "blob streaming 서버 설정이 되지 않았습니다!" @@ -129,7 +129,7 @@ msgstr "데이터베이스 %1$s가 생성되었습니다." msgid "Database comment: " msgstr "데이터베이스 설명:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "테이블 설명" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -151,11 +151,11 @@ msgstr "컬럼명" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -166,8 +166,8 @@ msgstr "종류" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -177,8 +177,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -187,8 +187,8 @@ msgstr "기본값" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "링크 대상:" @@ -197,8 +197,8 @@ msgstr "링크 대상:" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "설명(코멘트)" @@ -209,7 +209,7 @@ msgstr "설명(코멘트)" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -230,7 +230,7 @@ msgstr "아니오 " #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -364,7 +364,7 @@ msgstr "" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -388,21 +388,21 @@ msgstr "사용중" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "생성" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "업데이트" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "검사" @@ -500,7 +500,7 @@ msgstr "질의 실행" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "접근이 거부되었습니다." @@ -534,7 +534,7 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s 건 일치 (테이블 %s)" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "보기" @@ -547,10 +547,10 @@ msgstr "테이블의 덤프 데이터" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -672,12 +672,12 @@ msgstr "모두 체크안함" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "내보내기" @@ -687,13 +687,13 @@ msgstr "내보내기" msgid "Print view" msgstr "인쇄용 보기" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "비우기" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -731,7 +731,7 @@ msgstr "파일로 테이블 대치하기" msgid "Copy table with prefix" msgstr "파일로 테이블 대치하기" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "데이터 사전 (전체 구조보기)" @@ -746,7 +746,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -767,7 +767,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "상태" @@ -874,14 +874,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "파일을 읽을 수 없습니다" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -911,7 +911,7 @@ msgstr "북마크를 제거했습니다." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -936,7 +936,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1060,9 +1060,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "수정" @@ -1088,13 +1088,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "전체 사용량" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1126,7 +1126,7 @@ msgstr "서버 선택" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "프로세스 목록" @@ -1154,7 +1154,7 @@ msgstr "행(레코드) 통계" #: js/messages.php:93 #, fuzzy #| msgid "Failed to write file to disk." -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "디스크 쓰기에 실패했습니다." #: js/messages.php:94 @@ -1256,7 +1256,7 @@ msgstr "" msgid "Bytes received" msgstr "받음" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "연결 수" @@ -1266,12 +1266,12 @@ msgstr "연결 수" msgid "Questions" msgstr "테이블 작업" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "소통량" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "Deleting %s" msgid "Settings" @@ -1298,7 +1298,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "없음" @@ -1522,7 +1522,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1720,7 +1720,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2150,53 +2150,53 @@ msgstr "분" msgid "Second" msgstr "초" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "글꼴 크기" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니" "다." -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "임시 폴더가 없습니다." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "디스크 쓰기에 실패했습니다." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2204,11 +2204,11 @@ msgstr "" "업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a] 참조." -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2236,7 +2236,7 @@ msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2258,14 +2258,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "데이터베이스 " -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2364,16 +2364,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2387,12 +2387,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2401,7 +2401,7 @@ msgid "Cannot connect: invalid settings." msgstr "연결할 수 없습니다: 잘못된 설정." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%s에 오셨습니다" @@ -2423,57 +2423,57 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "로그인" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin 설명서" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "서버:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "사용자명:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "암호:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "서버 선택" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "이 페이지를 넘기려면 쿠키 사용을 허용해야 합니다." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "최근 %s초 동안 아무 동작이 없어 로그아웃 되었습니다. 다시 로그인해주세요." -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL 서버에 로그인할 수 없습니다" @@ -2506,39 +2506,39 @@ msgstr "" msgid "Authenticating..." msgstr "인증중입니다..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2676,7 +2676,7 @@ msgid "Documentation" msgstr "문서" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL 질의" @@ -2686,7 +2686,7 @@ msgstr "SQL 질의" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2735,7 +2735,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2834,7 +2834,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2854,8 +2854,8 @@ msgstr "구조" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "삽입" @@ -2866,26 +2866,26 @@ msgstr "삽입" msgid "Operations" msgstr "테이블 작업" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "웹서버 업로드 디렉토리" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "업로드 디렉토리에 접근할 수 없습니다" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3061,7 +3061,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "리세트" @@ -5303,8 +5303,8 @@ msgstr "데이터베이스 %s에 새로운 테이블을 만듭니다." #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5641,7 +5641,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5706,7 +5706,7 @@ msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Kill" @@ -6253,7 +6253,7 @@ msgstr "" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "호스트" @@ -6466,7 +6466,7 @@ msgstr "SQL 결과" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴.)" @@ -6564,7 +6564,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "열(칼럼) 이름" @@ -6922,7 +6922,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "설명이 없습니다" @@ -6957,14 +6957,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "변수" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "값" @@ -7025,7 +7025,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7062,16 +7062,16 @@ msgstr "" msgid "Edit event" msgstr "보냄" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "프로세스 목록" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7086,7 +7086,7 @@ msgstr "질의 종류" msgid "Event type" msgstr "질의 종류" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7113,7 +7113,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "마지막" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7126,12 +7126,12 @@ msgstr "설명" msgid "On completion preserve" msgstr "완전한 INSERT문 작성" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7178,7 +7178,7 @@ msgid "Returns" msgstr "데이터베이스 사용량 통계" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "시간" @@ -7195,7 +7195,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7215,119 +7215,119 @@ msgstr "테이블 %s 을 제거했습니다." msgid "Routine %1$s has been created." msgstr "테이블 %s 을 제거했습니다." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "열(칼럼) 이름" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "생성" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "길이/값*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "데이터베이스 이름 변경" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "길이/값*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy msgid "Return options" msgstr "데이터베이스 사용량 통계" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "질의 종류" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "함수" @@ -7473,7 +7473,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7483,7 +7483,7 @@ msgstr "\"%s\" 테이블이 존재하지 않습니다!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7491,9 +7491,9 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7507,129 +7507,129 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 #, fuzzy msgid "Table of contents" msgstr "테이블 설명" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "보기" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "추가" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "새 페이지 만들기" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "페이지:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy msgid "Automatic layout based on" msgstr "서버 버전" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "편집할 페이지를 선택하세요" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy msgid "Select page" msgstr "모두 선택" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 #, fuzzy msgid "Select Tables" msgstr "모두 선택" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "grid 보기" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "색깔 보기" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "모든 테이블을 같은 너비로 출력할까요?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "생성" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7709,11 +7709,11 @@ msgstr "" msgid "Columns" msgstr "열(칼럼) 이름" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "이 SQL 질의를 북마크함" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -8096,7 +8096,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "사용자" @@ -8293,7 +8293,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8376,48 +8376,48 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "테이블 %s 을 제거했습니다." -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "사용법(량)" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "파일 가져오기" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "새 인덱스 만들기" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "사용자명" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8526,12 +8526,12 @@ msgstr "파일 가져오기" msgid "All" msgstr "All" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8546,13 +8546,13 @@ msgstr "" msgid "Files" msgstr "필드" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "" @@ -9372,8 +9372,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "" @@ -9394,104 +9394,104 @@ msgstr "명세" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "받음" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "보냄" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "실패한 시도" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "커맨드" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9499,78 +9499,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9578,7 +9578,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9586,42 +9586,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9629,33 +9629,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9664,227 +9664,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9892,99 +9892,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9992,18 +9992,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10011,62 +10011,62 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "토" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy msgid "Add chart" msgstr "필드 추가하기" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "컬럼 추가/삭제" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10075,7 +10075,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10083,11 +10083,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10095,7 +10095,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10103,11 +10103,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10631,12 +10631,12 @@ msgstr "SQL 쿼리 보기" msgid "Validated SQL" msgstr "SQL 검사" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Label" diff --git a/po/lt.po b/po/lt.po index bd20f91d0d..1f71b2b3da 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-08 18:05+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" @@ -22,10 +22,10 @@ msgstr "Rodyti viską" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Puslapis:" @@ -39,8 +39,8 @@ msgstr "" "naršyklė blokuoja atnaujinimus tarp langų dėl nustatyto saugumo." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Paieška" @@ -48,25 +48,25 @@ msgstr "Paieška" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Indekso pavadinimas" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Paaiškinimas" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Naudokite šią reikšmę" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Joks blob srautinio duomenų siuntimo serveris nesukonfigūruotas!" @@ -128,7 +128,7 @@ msgstr "Duomenų bazė %1$s sukurta." msgid "Database comment: " msgstr "Duomenų bazės komentaras: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Lentelės komentarai" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Stulpelis" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Tipas" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Nutylint" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Sąryšis su" @@ -196,8 +196,8 @@ msgstr "Sąryšis su" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Komentarai" @@ -208,7 +208,7 @@ msgstr "Komentarai" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -359,7 +359,7 @@ msgstr "Keisti arba eksportuoti ryšių schemą" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -383,21 +383,21 @@ msgstr "šiuo metu naudojama" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Sukurta" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Paskutinis atnaujinimas" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Paskutinis patikrinimas" @@ -496,7 +496,7 @@ msgstr "Vykdyti užklausą" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Priėjimas uždraustas" @@ -531,7 +531,7 @@ msgstr[1] "%s atitikmenys lentelėse %s" msgstr[2] "%s atitikmenų lentelėse %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Peržiūrėti" @@ -543,10 +543,10 @@ msgstr "Ištrinti sutapimus %s lentelėje(ei)?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -667,12 +667,12 @@ msgstr "Atžymėti visas" msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksportuoti" @@ -682,13 +682,13 @@ msgstr "Eksportuoti" msgid "Print view" msgstr "Spausdinti struktūrą" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Išvalyti" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -722,7 +722,7 @@ msgstr "Pakeisti lentelės pavadinimo priešdėlį" msgid "Copy table with prefix" msgstr "Kopijuoti lentelę su pavadinimo priešdėliu" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Duomenų žodynas" @@ -737,7 +737,7 @@ msgstr "Sekamos lentelės" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -757,7 +757,7 @@ msgstr "Atnaujinta" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Būsena" @@ -862,14 +862,14 @@ msgstr "" "Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti " "%sdokumentaciją%s būdams kaip apeiti šį apribojimą." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Negalima perskaityti failo" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -900,7 +900,7 @@ msgstr "Nuoroda ištrinta." msgid "Showing bookmark" msgstr "Rodomos žymelės" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Žymė %s sukurta" @@ -928,7 +928,7 @@ msgstr "" "padidintumėte PHP laiko limitą." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1043,9 +1043,9 @@ msgstr "Uždaryti" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Redaguoti" @@ -1068,13 +1068,13 @@ msgstr "Statiniai duomenys" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Iš viso" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Kita" @@ -1104,7 +1104,7 @@ msgstr "Serverio duomenų srautas (KiB)" msgid "Connections since last refresh" msgstr "prisijungimų nuo paskutinio įkėlimo iš naujo" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Procesai" @@ -1129,7 +1129,7 @@ msgstr "Užklausų statistika" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Nepavyko perskaityti konfigūracijos failo" #: js/messages.php:94 @@ -1228,7 +1228,7 @@ msgstr "Išsiųsta baitų" msgid "Bytes received" msgstr "Gauta baitų" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Prisijungimai" @@ -1239,12 +1239,12 @@ msgstr "Prisijungimai" msgid "Questions" msgstr "Versijos" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Apkrovimas" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Nustatymai" @@ -1269,7 +1269,7 @@ msgstr "Prašome pridėti bent vieną kintamąjį į eilę" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Ne" @@ -1486,7 +1486,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importuoti" @@ -1660,7 +1660,7 @@ msgid "Query execution time" msgstr "Užklausos vykdymo laikas" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2084,23 +2084,23 @@ msgstr "Minutė" msgid "Second" msgstr "Sekundės" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Šrifto dydis" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "Failas nebuvo įkeltasis failas." -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "Nežinoma klaida vykstant siuntimui." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2108,27 +2108,27 @@ msgstr "" "Įkeltas failas viršija MAX_FILE_SIZE nurodymą kuris buvo nustatytas HTML " "formoje." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Įkeliamas failas buvo tik dalinai įkeltas." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Trūksta laikino katalogo." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Nepavyko įrašyti failo į diską." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Nežinoma klaida failų įkėlime." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2136,11 +2136,11 @@ msgstr "" "Klaida perkeliant įkeltą failą, žiūrėti [a@./Documentation." "html#faq1_11@Documentation]DUK 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "Klaida perkeliant atsiųstą failą." -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "Negalima perskaityti (perkelti) įkelto failo." @@ -2168,7 +2168,7 @@ msgid "Cardinality" msgstr "Elementų skaičius" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Komentaras" @@ -2190,14 +2190,14 @@ msgid "" msgstr "" "Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Duomenų bazės" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2298,16 +2298,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nerasta tinkamo paveiksliukų kelio temai %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Peržiūra negalima." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "pasirinkti" @@ -2321,12 +2321,12 @@ msgstr "Standartinė tema %s nerasta!" msgid "Theme %s not found!" msgstr "Tema %s nerasta!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Kelias iki temos nerastas temai %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Apipavidalinimas" @@ -2335,7 +2335,7 @@ msgid "Cannot connect: invalid settings." msgstr "Neįmanoma prisijungti: neteisingi duomenys." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Jūs naudojate %s" @@ -2362,50 +2362,50 @@ msgstr "" "stoties adresą, prisijungimo vardą ir slaptažodį) ir įsitikinkite ar jie " "sutampa su duomenimis gautais iš darbinės stoties administratoriaus." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Prisijungti" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Jūs galite įvesti serverio vardą/IP adresą ir prievadą atskirtą tarpu." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Darbinė stotis" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Naudotojo vardas:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Slaptažodis:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Pasirinkti serverį" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Slapukai turi būti priimami." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Prisijungimą be slaptažodžio draudžia nustatymai (žiūrėti AllowNoPassword)." -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2413,8 +2413,8 @@ msgstr "" "Daugiau nei %s sekundžių nebuvo atlikta jokių veiksmų, prašome prisijungti " "iš naujo" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Nepavyksta prisijungti prie MySQL darbinės stoties" @@ -2445,39 +2445,39 @@ msgstr "Prijungtas netinkamas atpažinimo raktas" msgid "Authenticating..." msgstr "Nustatomas tapatumas..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS klaida" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS prisijungimo klaida:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS gavimas BLOB informacijos nepavyko:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "PBMS gauti BLOB Content-Type nepatyko" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Žiūrėti paveikslėlį" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Groti garsą" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Žiūrėti video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Atsisiųsti failą" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Nepavyko atidaryti failo: %s" @@ -2615,7 +2615,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL užklausa" @@ -2625,7 +2625,7 @@ msgstr "SQL užklausa" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2674,7 +2674,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Redaguoti čia" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profiliavimas" @@ -2773,7 +2773,7 @@ msgid "Click to toggle" msgstr "Spustelėkite suskleidimui/atskleidimui" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2793,8 +2793,8 @@ msgstr "Struktūra" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Įterpti" @@ -2805,25 +2805,25 @@ msgstr "Įterpti" msgid "Operations" msgstr "Veiksmai" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Naršyti savo kompiuteryje:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams." -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Nėra failų išsiuntimui" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Vykdyti" @@ -2989,7 +2989,7 @@ msgid "Allow users to customize this value" msgstr "Leisti naudotojams adaptuoti šią reikšmę" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Atstatyti į pradinę būseną" @@ -5258,8 +5258,8 @@ msgstr "Sukurti naują lentelę duomenų bazėje %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5565,7 +5565,7 @@ msgstr "Rūšiuoti pagal raktą" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Nustatymai" @@ -5625,7 +5625,7 @@ msgid "The row has been deleted" msgstr "Eilutė buvo ištrinta" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Stabdyti procesą" @@ -6165,7 +6165,7 @@ msgstr "Rodyti MIME-tipus" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Darbinė stotis" @@ -6388,7 +6388,7 @@ msgstr "SQL rezultatas" msgid "Generated by" msgstr "Sugeneravo" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." @@ -6491,7 +6491,7 @@ msgstr "docSQL" msgid "Table name" msgstr "Lentelės vardas" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Stulpelių vardai" @@ -6855,7 +6855,7 @@ msgstr "" "Iš naujo prisijunkite prie phpMyAdmin tam, kad užkrautumėte atnaujintą " "konfigūracijos failą." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "Aprašymo nėra" @@ -6893,14 +6893,14 @@ msgid "Slave status" msgstr "Pavaldžiojo serverio būklė (Slave status)" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Kintamasis" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Reikšmė" @@ -6960,7 +6960,7 @@ msgstr "Generuoti slaiptažodį" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -6995,14 +6995,14 @@ msgstr "Viena ar daugiau klaidų įvyko vykdant Jūsų užklausą:" msgid "Edit event" msgstr "Redaguoti įvykį" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Klaida vykdant užklausą" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Detalės" @@ -7017,7 +7017,7 @@ msgstr "Įvykio tipas" msgid "Event type" msgstr "Įvykio tipas" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Pakeisti į %s" @@ -7044,7 +7044,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Pabaiga" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7055,12 +7055,12 @@ msgstr "Paaiškinimas" msgid "On completion preserve" msgstr "Pabaigus išlaikyti" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7106,7 +7106,7 @@ msgid "Returns" msgstr "Grąžina" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Laikas" @@ -7122,7 +7122,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7144,91 +7144,91 @@ msgstr "Stulpelis %s panaikintas" msgid "Routine %1$s has been created." msgstr "Sukurta %1$s lentelė." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Redagavimo režimas" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Stulpelių vardai" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Parametrai" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Nukreipimas" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Ilgis/reikšmės*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Pridėti parametrą" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Pašalinti paskutinį parametrą" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Gražinimo tipas" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Grąžinimo Ilgis/reikšmės" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Grąžinimo parametrai" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "Yra apibrėžtas" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Saugumo tipas" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "SQL duomenų priėjimas" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7236,22 +7236,22 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funkcija" @@ -7378,7 +7378,7 @@ msgstr "Nėra įvykių rodymui." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7387,7 +7387,7 @@ msgstr "Lentelė %s neegzistuoja!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7395,9 +7395,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Nustatykite lentelės %s koordinates" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Duomenų bazės %s schema - %s puslapis" @@ -7410,105 +7410,105 @@ msgstr "Šis puslapis neturi jokių lentelių!" msgid "SCHEMA ERROR: " msgstr "SCHEMOS KLAIDA:" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Ryšių schema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Turinys" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atributai" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Papildomai" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Sukurti naują puslapį" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Puslapio vardas" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Automatinis išdėstymas paremtas" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Vidiniai sąryšiai" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Pasirinkite puslapį redagavimui" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Pasirinkite puslapį" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Pasirinkite lenteles" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Rodyti sąryšių schema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Pasirinkti eksportavimo sąryšinį tipą" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Rodyti tinklelį" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Rodyti spalvą" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Rodyti lentelių dydžius" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "rodyti visas lenteles vienodo pločio?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Rodyti tik raktus" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Peizažinis" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portretinis" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Orientacija" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Lapo dydis" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7516,17 +7516,17 @@ msgstr "" "Šis puslapis turi nuorodų į lenteles, kurios jau neegzistuoja. Ar norite " "pašalinti šias nuorodas?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "įjungti scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Nežinoma kalba: %1$s." @@ -7599,11 +7599,11 @@ msgstr "Išvalyti" msgid "Columns" msgstr "Stulpeliai" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Šios SQL užklausą pasižymėti kaip" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Leisti kitiems vartotojams naudotis šia žyme" @@ -8040,7 +8040,7 @@ msgstr "Protokolo versija" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Naudotojas" @@ -8246,7 +8246,7 @@ msgstr "Mažinti/didinti visus" msgid "Toggle small/big" msgstr "Suskleisti/Išskleisti" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Importuoti/eksportuoti koordinates PDF schemai" @@ -8322,39 +8322,39 @@ msgstr "" "rodymui, paspauskite „Pasirinkite laukus peržiūrai“ ikoną, tada paspauskite " "ant pasirinkto stulpelio vardo." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Puslapis sukurtas" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Puslapio kūrimas nepavyko" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Puslapis" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Importuoti iš pasirinkto puslapio" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Eksportuoti pasirinktą puslapį" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Sukurti puslapį ir eksportuoti į jį" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Naujas puslapio vardas:" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "rekomenduojame" @@ -8463,12 +8463,12 @@ msgstr "Importuoti failus" msgid "All" msgstr "Viską" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Lentelė %s nerasta arba nenurodyta %s faile" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Failo nėra" @@ -8480,13 +8480,13 @@ msgstr "Pasirinkti dvejetainį žurnalą (log) peržiūrai" msgid "Files" msgstr "Failai" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Trumpinti rodomas užklausas" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Rodyti pilnas užklausas" @@ -9317,8 +9317,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Adaptuoti paleidimo (pagrindinį) puslapį" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "per valandą" @@ -9339,18 +9339,18 @@ msgstr "Parametrai" msgid "#" msgstr "#" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 serverio veikimo trukmė: %s. Serveris pradėjo veikti: %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9358,19 +9358,19 @@ msgstr "" "Šis MySQL serveris veikia kaip pagrindinis ir kaip pavaldusis " "serveris dauginimo procese." -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" "Šis MySQL serveris veikia kaip pagrindinis serveris dauginimo " "procese." -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" "Šis MySQL serveris veikia kaip pavaldusis serveris dauginimo " "procese." -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9378,71 +9378,71 @@ msgstr "" "Daugiau informacijos apie dauginimo serverio būseną prašome aplankyti dauginimo skyrelį." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Dauginimo būsena" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Gauta" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Siųsta" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Daugiausia lygiagrečių prisijungimų" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Nepavykę bandymai" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Nutraukta" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Komanda" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Skaičius nepavykusių bandymų prisijungti prie MySQL serverio." -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9450,78 +9450,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Kiek laikinųjų failų mysqld sukūrė." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Įvykdytų FLUSH užklausų skaičius." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Vidinių COMMIT užklausų skaičius." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9529,7 +9529,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9537,42 +9537,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Vidinių ROLLBACK užklausų skaičius." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Tuščių puslapių skaičius." -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9580,33 +9580,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9615,227 +9615,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Esamu momentu laukiančių fsync() operacijų skaičius." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Esamu momentu laukiančių skaitymų skaičius." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Esamu momentu laukiančių rašymų skaičius." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Duomenų nuskaitymų skaičius." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Duomenų įrašymų skaičius." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Sukurtų puslapių skaičius." -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Puslapių skaitymų skaičius." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Įrašytų puslapių skaičius." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Failų kurie yra atidaryti skaičius." -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Lentelių kurios yra atidarytos skaičius." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Podėlio kreipimųsi skaičius." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9843,99 +9843,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Surikiuotų eilučių skaičius." -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "Rikiavimų kurie buvo atlikti skenuojant lentelę skaičius." -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9943,18 +9943,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9962,57 +9962,57 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "Paleisti Monitor" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "Instrukcijos/Diegimas" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "Pridėti diagramą" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Naujinimo dažnis" -#: server_status.php:1467 +#: server_status.php:1468 msgid "Chart columns" msgstr "Diagramos stulpeliai" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "Diagramos išdėstymas" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "Atstatyti numatytąsias reikšmes" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "Monitor instrukcijos" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10021,7 +10021,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10029,11 +10029,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10041,7 +10041,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10049,11 +10049,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10625,12 +10625,12 @@ msgstr "Rodoma SQL užklausa" msgid "Validated SQL" msgstr "Patikrintas SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Iškilo problemos su `%s` lentelės indeksais" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Nuorodos Antraštė" diff --git a/po/lv.po b/po/lv.po index 9dda9e1197..78749677e1 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" @@ -20,10 +20,10 @@ msgstr "Rādīt visu" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Lapas numurs:" @@ -38,8 +38,8 @@ msgstr "" "iestādījumu dēļ." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Meklēt" @@ -47,25 +47,25 @@ msgstr "Meklēt" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "Atslēgas nosaukums" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Apraksts" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "Lietot šo vērtību" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -125,7 +125,7 @@ msgstr "Datubāze %s tika izdzēsta." msgid "Database comment: " msgstr "Datubāzes komentārs: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -134,8 +134,8 @@ msgstr "Komentārs tabulai" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -149,11 +149,11 @@ msgstr "Kolonnu nosaukumi" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -164,8 +164,8 @@ msgstr "Tips" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -175,8 +175,8 @@ msgstr "Nulle" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -185,8 +185,8 @@ msgstr "Noklusēts" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Linki uz" @@ -195,8 +195,8 @@ msgstr "Linki uz" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Komentāri" @@ -207,7 +207,7 @@ msgstr "Komentāri" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -228,7 +228,7 @@ msgstr "Nē" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -367,7 +367,7 @@ msgstr "Relāciju shēma" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -391,21 +391,21 @@ msgstr "lietošanā" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Izveidošana" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Pēdējā atjaunošana" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Pēdējā pārbaude" @@ -509,7 +509,7 @@ msgstr "Izpildīt vaicājumu" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Pieeja aizliegta" @@ -544,7 +544,7 @@ msgstr[0] "%s rezultāti tabulā %s" msgstr[1] "%s rezultāti tabulā %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Apskatīt" @@ -557,10 +557,10 @@ msgstr "Dati tabulai" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -686,12 +686,12 @@ msgstr "Neiezīmēt neko" msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksports" @@ -701,13 +701,13 @@ msgstr "Eksports" msgid "Print view" msgstr "Izdrukas versija" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Iztukšot" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -745,7 +745,7 @@ msgstr "Aizvietot tabulas datus ar datiem no faila" msgid "Copy table with prefix" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Datu vārdnīca" @@ -760,7 +760,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -781,7 +781,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Statuss" @@ -888,14 +888,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Nevar nolasīt failu" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -921,7 +921,7 @@ msgstr "Ieraksts tika dzēsts." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -944,7 +944,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1072,9 +1072,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Labot" @@ -1100,13 +1100,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Kopā" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1138,7 +1138,7 @@ msgstr "Servera izvēle" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Procesi" @@ -1164,7 +1164,7 @@ msgid "Query statistics" msgstr "Rindas statistika" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1266,7 +1266,7 @@ msgstr "" msgid "Bytes received" msgstr "Saņemts" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Konekcijas" @@ -1276,12 +1276,12 @@ msgstr "Konekcijas" msgid "Questions" msgstr "Persiešu" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Datu apmaiņa" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1308,7 +1308,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nav" @@ -1532,7 +1532,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1732,7 +1732,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2210,60 +2210,60 @@ msgstr "lietošanā" msgid "Second" msgstr "sekundē" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 #, 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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2291,7 +2291,7 @@ msgid "Cardinality" msgstr "Kardinalitāte" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2313,14 +2313,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Datubāzes" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2421,16 +2421,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "izmantot šo stilu" @@ -2444,12 +2444,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2458,7 +2458,7 @@ msgid "Cannot connect: invalid settings." msgstr "Nevar pieslēgties: kļūda konfigurācijā." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Laipni lūgti %s" @@ -2482,57 +2482,57 @@ msgstr "" "failā, un pārliecinieties, ka tie atbilst informācijai, ko Jums deva MySQL " "servera administrators." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Ieiet" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentācija" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Serveris" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Lietotājvārds:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Parole:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Servera izvēle" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "\"Cookies\" ir jābūt atļautiem aiz šī punkta." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Nebija aktivitātes vairāk kā %s sekunžu laikā, lūdzu autorizējieties vēlreiz" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Nevar pieslēgties MySQL serverim" @@ -2563,41 +2563,41 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "MySQL konekcijas kārtošana" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2736,7 +2736,7 @@ msgid "Documentation" msgstr "Dokumentācija" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL vaicājums" @@ -2746,7 +2746,7 @@ msgstr "SQL vaicājums" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2795,7 +2795,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2896,7 +2896,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2916,8 +2916,8 @@ msgstr "Struktūra" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Pievienot" @@ -2928,26 +2928,26 @@ msgstr "Pievienot" msgid "Operations" msgstr "Darbības" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, 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/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3125,7 +3125,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Atcelt" @@ -5363,8 +5363,8 @@ msgstr "Izveidot jaunu tabulu datubāzē %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5702,7 +5702,7 @@ msgstr "Kārtot pēc atslēgas" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5770,7 +5770,7 @@ msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Nogalināt" @@ -6332,7 +6332,7 @@ msgstr "Pieejamie MIME tipi" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Hosts" @@ -6547,7 +6547,7 @@ msgstr "SQL rezultāts" msgid "Generated by" msgstr "Uzģenerēja" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." @@ -6645,7 +6645,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Kolonnu nosaukumi" @@ -7008,7 +7008,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "Bez apraksta" @@ -7043,14 +7043,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Mainīgais" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Vērtība" @@ -7110,7 +7110,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7147,16 +7147,16 @@ msgstr "" msgid "Edit event" msgstr "Nosūtīts" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7171,7 +7171,7 @@ msgstr "Notikuma tips" msgid "Event type" msgstr "Notikuma tips" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7200,7 +7200,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Beigas" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7213,12 +7213,12 @@ msgstr "Apraksts" msgid "On completion preserve" msgstr "Pilnas INSERT izteiksmes" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7266,7 +7266,7 @@ msgid "Returns" msgstr "Tabulas opcijas" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Laiks" @@ -7283,7 +7283,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7303,123 +7303,123 @@ msgstr "Tabula %s tika izdzēsta" msgid "Routine %1$s has been created." msgstr "Tabula %s tika izdzēsta" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Kolonnu nosaukumi" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Izveidošana" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Garums/Vērtības*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Pievienot jaunu lauku" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Pārsaukt datubāzi par" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Garums/Vērtības*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tabulas opcijas" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vaicājuma tips" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funkcija" @@ -7568,7 +7568,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7578,7 +7578,7 @@ msgstr "Tabula \"%s\" neeksistē!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7586,9 +7586,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Lūdzu konfigurējiet koordinātes tabulai %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7602,115 +7602,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relāciju shēma" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Satura rādītājs" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atribūti" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Ekstras" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Izveidot jaunu lapu" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Lapas numurs:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automātiskais izvietojums" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Iekšējās relācijas" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Izvēlieties lapu redigēšanai" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Iezīmēt visu" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Izvēlieties tabulas" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relāciju shēma" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Rādīt režģi" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Rādīt krāsas" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Rādit tabulu izmērus" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "rādīt visas tabulas vienadā platumā?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Ainava" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portrets" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Izveidošana" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Papīra izmērs" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7718,17 +7718,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "parādīt/noslēpt piezīmju tafeli" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7808,11 +7808,11 @@ msgstr "Kalendārs" msgid "Columns" msgstr "Kolonnu nosaukumi" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" @@ -8273,7 +8273,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Lietotājs" @@ -8471,7 +8471,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8555,50 +8555,50 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Tabula %s tika izdzēsta" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Aizņem" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importēt failus" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Rindas nav iezīmētas" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Izveidot jaunu indeksu" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Lietotājvārds" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8709,12 +8709,12 @@ msgstr "Importēt failus" msgid "All" msgstr "Visi" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabula %s nav atrasta vai nav atzīmeta iekš %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8729,13 +8729,13 @@ msgstr "Izvēlieties bināro log-failu apskatei" msgid "Files" msgstr "Lauki" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Ierobežot parādīto vaicājumu garumu" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Rādīt pilnos vaicājumus" @@ -9572,8 +9572,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "stundā" @@ -9594,104 +9594,104 @@ msgstr "Parametrs" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Saņemts" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Nosūtīts" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Neveiksmīgi mēģinājumi" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Pārtraukts" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Komanda" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9699,78 +9699,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9778,7 +9778,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9786,42 +9786,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9829,33 +9829,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9864,227 +9864,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10092,99 +10092,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10192,18 +10192,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10211,64 +10211,64 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "S" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Pievienot jaunu lauku" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Atjaunot" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10277,7 +10277,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10285,11 +10285,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10297,7 +10297,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10305,11 +10305,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10842,12 +10842,12 @@ msgstr "" msgid "Validated SQL" msgstr "Pārbaudīt SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problēmas ar indeksiem tabulā `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Nosaukums" diff --git a/po/mk.po b/po/mk.po index c2be8f29f8..5aca360245 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-05-19 17:04+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" @@ -21,10 +21,10 @@ msgstr "прикажи ги сите" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Број на страници:" @@ -39,8 +39,8 @@ msgstr "" "прозорима због сигурносних подешавања" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Пребарување" @@ -48,25 +48,25 @@ msgstr "Пребарување" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Име на клуч" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Опис" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Користи ја оваа вредност" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -126,7 +126,7 @@ msgstr "Базата на податоци %1$s е креирана" msgid "Database comment: " msgstr "Коментар на базата на податоци:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -135,8 +135,8 @@ msgstr "Коментар на табелата" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Имиња на колони" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Тип" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Default" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Врски кон" @@ -196,8 +196,8 @@ msgstr "Врски кон" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Коментари" @@ -208,7 +208,7 @@ msgstr "Коментари" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Не" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -366,7 +366,7 @@ msgstr "Релациона шема" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -390,21 +390,21 @@ msgstr "се користи" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Направено" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Последна измена" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Последна проверка" @@ -508,7 +508,7 @@ msgstr "Изврши SQL" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Пристапот не е допуштен" @@ -543,7 +543,7 @@ msgstr[0] "%s погодоци во табелата %s" msgstr[1] "%s погодоци во табелата %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Преглед" @@ -556,10 +556,10 @@ msgstr "Приказ на податоци од табелата" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -685,12 +685,12 @@ msgstr "ниедно" msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Извоз" @@ -700,13 +700,13 @@ msgstr "Извоз" msgid "Print view" msgstr "Преглед за печатење" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Испразни" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -740,7 +740,7 @@ msgstr "Замени го префиксот на табелата" msgid "Copy table with prefix" msgstr "Копирај табела со префикс" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Речник на податоци" @@ -755,7 +755,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -775,7 +775,7 @@ msgstr "Ажурирано" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Статус" @@ -882,14 +882,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Податотеката не е можно да се прочита" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -915,7 +915,7 @@ msgstr "Маркерот е избришан." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -938,7 +938,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1065,9 +1065,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Промени" @@ -1093,13 +1093,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Вкупно" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1131,7 +1131,7 @@ msgstr "Избор на сервер" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 #, fuzzy msgid "Processes" msgstr "Листа на процеси" @@ -1158,7 +1158,7 @@ msgid "Query statistics" msgstr "Статистики за записите" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1264,7 +1264,7 @@ msgstr "" msgid "Bytes received" msgstr "Примено" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Конекции" @@ -1274,12 +1274,12 @@ msgstr "Конекции" msgid "Questions" msgstr "Персиски" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Сообраќај" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1306,7 +1306,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "нема" @@ -1530,7 +1530,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1729,7 +1729,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2206,49 +2206,49 @@ msgstr "се користи" msgid "Second" msgstr "во секунда" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 #, fuzzy msgid "" "Error moving the uploaded file, see [a@./Documentation." @@ -2257,11 +2257,11 @@ msgstr "" "Бројот на записи може да биде приближен. За подетални информации види FAQ " "3.11" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2289,7 +2289,7 @@ msgid "Cardinality" msgstr "Кардиналност" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2311,14 +2311,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "База на податоци" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2419,16 +2419,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "превземи" @@ -2442,12 +2442,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2456,7 +2456,7 @@ msgid "Cannot connect: invalid settings." msgstr "Не може да се поврзам: лоши подесувања." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%s Добредојдовте" @@ -2480,49 +2480,49 @@ msgstr "" "config.inc.php и уверите се дека одговараат на податоците кои сте ги добили " "од администраторот на MySQL серверот." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Најави се" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документација" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Корисничко име:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Лозинка:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Избор на сервер" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "вашиот веб прелистувач треба да допушти cookies" -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2530,8 +2530,8 @@ msgstr "" "Немаше никаква активност %s или повеќе секунди, ве молиме најавете се " "повторно" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Не можам да се пријавам на MySQL серверот" @@ -2562,41 +2562,41 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "Колација за MySQL врска" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2736,7 +2736,7 @@ msgid "Documentation" msgstr "Документација" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL упит" @@ -2746,7 +2746,7 @@ msgstr "SQL упит" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2797,7 +2797,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Складишта" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2898,7 +2898,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2918,8 +2918,8 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Нов запис" @@ -2930,26 +2930,26 @@ msgstr "Нов запис" msgid "Operations" msgstr "Операции" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директориум за праќање на веб серверот " -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Директориумот кој го избравте за праќање не е достапен" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3127,7 +3127,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Поништи" @@ -5376,8 +5376,8 @@ msgstr "Креирај нова табела во базата на подато #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5716,7 +5716,7 @@ msgstr "Подредување по клуч" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5784,7 +5784,7 @@ msgid "The row has been deleted" msgstr "Записот е избришан" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Прекини" @@ -6366,7 +6366,7 @@ msgstr "Достапни MIME-типови" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6582,7 +6582,7 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерирал" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." @@ -6680,7 +6680,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Имиња на колони" @@ -7044,7 +7044,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "нема опис" @@ -7079,14 +7079,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Вредност" @@ -7146,7 +7146,7 @@ msgstr "Генерирање на лозинка" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7183,15 +7183,15 @@ msgstr "" msgid "Edit event" msgstr "Пратено" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy msgid "Error in processing request" msgstr "Листа на процеси" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7206,7 +7206,7 @@ msgstr "Вид на настан" msgid "Event type" msgstr "Вид на настан" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7235,7 +7235,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Крај" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7248,12 +7248,12 @@ msgstr "Опис" msgid "On completion preserve" msgstr "Комплетен INSERT (со имиња на полињата)" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7301,7 +7301,7 @@ msgid "Returns" msgstr "Опции на табелата" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Време" @@ -7318,7 +7318,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7338,128 +7338,128 @@ msgstr "Табелата %s е избришана" msgid "Routine %1$s has been created." msgstr "Табелата %s е избришана" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Рутини" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Рутини" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Направено" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Должина/Вредност*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Додади ново поле" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Избриши ја базата на податоци." -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Должина/Вредност*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Опции на табелата" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Вид на упит" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дозволува извршување на stored рутини." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Рутини" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Функција" @@ -7608,7 +7608,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7618,7 +7618,7 @@ msgstr "Табелата \"%s\" не постои!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7626,9 +7626,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Подесете ги координатите за табелата %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7642,115 +7642,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Релациона шема" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Содржина" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Атрибути" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Дополнително" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Направи нова страница" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број на страници:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автоматски распоред" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Внатрешни релации" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Изберете страница која менувате" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "избери се" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Избери табели" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Релациона шема" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Прикажи мрежа" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Прикажи боја" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Прикажи ги димензиите на табелите" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Приказ на сите табели со иста ширина?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Легнато" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Вертикално" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Направено" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Димензија на хартијата" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7758,17 +7758,17 @@ msgstr "" "Актуелната страница има референци кон табели кои не постојат. Сакате ли да " "ги избиршете тие референци?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Вклучи/исклучи работна табела" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7848,11 +7848,11 @@ msgstr "Календар" msgid "Columns" msgstr "Имиња на колони" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "дади дозвола на секој корисник да пристапува на овој упит." @@ -8329,7 +8329,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Корисник" @@ -8533,7 +8533,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8617,50 +8617,50 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Табелата %s е избришана" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "страница" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Увоз на податотека" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Нема селектирани записи" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Креирај нов клуч" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Назив на корисник" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8771,12 +8771,12 @@ msgstr "Увоз на податотека" msgid "All" msgstr "Се" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s табелата не е пронајдена или не е поставена во %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8791,13 +8791,13 @@ msgstr "Изберете бинарен дневник за преглед" msgid "Files" msgstr "Полиња" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Прикажи скратени упити" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Прикажи комплетни упити" @@ -9638,8 +9638,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "на час" @@ -9660,105 +9660,105 @@ msgstr "Име" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Примено" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Пратено" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Неуспешни обиди" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Прекинато" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Наредба" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "" "Го ограничува бројот на нови конекции кои корисникот може да ги отвори за " "еден час." -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9766,78 +9766,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9845,7 +9845,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9853,42 +9853,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9896,33 +9896,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9931,227 +9931,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10159,99 +10159,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10259,18 +10259,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10278,64 +10278,64 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Саб" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Додади ново поле" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Освежи" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Додади/избриши колона" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10344,7 +10344,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10352,11 +10352,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10364,7 +10364,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10372,11 +10372,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10909,12 +10909,12 @@ msgstr "" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирање на табелата `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Назив" diff --git a/po/ml.po b/po/ml.po index e5c1a8e5ef..9bc9bcbd16 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" @@ -22,10 +22,10 @@ msgstr "" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "" @@ -37,8 +37,8 @@ msgid "" msgstr "" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "" @@ -46,25 +46,25 @@ msgstr "" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -86,7 +86,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "" @@ -96,7 +96,7 @@ msgid "Use this value" msgstr "" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -124,7 +124,7 @@ msgstr "" msgid "Database comment: " msgstr "" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -133,8 +133,8 @@ msgstr "" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -146,11 +146,11 @@ msgstr "" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -161,8 +161,8 @@ msgstr "" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -172,8 +172,8 @@ msgstr "" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -182,8 +182,8 @@ msgstr "" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "" @@ -192,8 +192,8 @@ msgstr "" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "" @@ -204,7 +204,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -225,7 +225,7 @@ msgstr "" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -354,7 +354,7 @@ msgstr "" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -378,21 +378,21 @@ msgstr "" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "" @@ -490,7 +490,7 @@ msgstr "" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "" @@ -524,7 +524,7 @@ msgstr[0] "" msgstr[1] "" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "" @@ -536,10 +536,10 @@ msgstr "" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -655,12 +655,12 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "" @@ -670,13 +670,13 @@ msgstr "" msgid "Print view" msgstr "" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -710,7 +710,7 @@ msgstr "" msgid "Copy table with prefix" msgstr "" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "" @@ -725,7 +725,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -745,7 +745,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "" @@ -846,14 +846,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -879,7 +879,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -902,7 +902,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1016,9 +1016,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "" @@ -1041,13 +1041,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1077,7 +1077,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "" @@ -1100,7 +1100,7 @@ msgid "Query statistics" msgstr "" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1193,7 +1193,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "" @@ -1202,12 +1202,12 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "" @@ -1230,7 +1230,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "" @@ -1437,7 +1437,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "" @@ -1600,7 +1600,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2007,59 +2007,59 @@ msgstr "" msgid "Second" msgstr "" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2087,7 +2087,7 @@ msgid "Cardinality" msgstr "" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "" @@ -2108,14 +2108,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2211,16 +2211,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2234,12 +2234,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2248,7 +2248,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "" @@ -2268,56 +2268,56 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "" @@ -2348,39 +2348,39 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2515,7 +2515,7 @@ msgid "Documentation" msgstr "" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "" @@ -2525,7 +2525,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2574,7 +2574,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2665,7 +2665,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2685,8 +2685,8 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" @@ -2697,25 +2697,25 @@ msgstr "" msgid "Operations" msgstr "" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -2880,7 +2880,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "" @@ -5014,8 +5014,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5306,7 +5306,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "" @@ -5366,7 +5366,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "" @@ -5892,7 +5892,7 @@ msgstr "" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "" @@ -6095,7 +6095,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6189,7 +6189,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "" @@ -6541,7 +6541,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "" @@ -6576,14 +6576,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "" @@ -6643,7 +6643,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -6678,14 +6678,14 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -6698,7 +6698,7 @@ msgstr "" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "" @@ -6721,7 +6721,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "" @@ -6730,12 +6730,12 @@ msgstr "" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -6781,7 +6781,7 @@ msgid "Returns" msgstr "" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "" @@ -6797,7 +6797,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -6816,109 +6816,109 @@ msgstr "" msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "" @@ -7045,7 +7045,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7054,7 +7054,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7062,9 +7062,9 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -7077,121 +7077,121 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7264,11 +7264,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -7624,7 +7624,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "" @@ -7804,7 +7804,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -7873,39 +7873,39 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8012,12 +8012,12 @@ msgstr "" msgid "All" msgstr "" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "" @@ -8029,13 +8029,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "" @@ -8815,8 +8815,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "" @@ -8837,101 +8837,101 @@ msgstr "" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -8939,78 +8939,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9018,7 +9018,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9026,42 +9026,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9069,33 +9069,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9104,227 +9104,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9332,99 +9332,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9432,18 +9432,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9451,57 +9451,57 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "" -#: server_status.php:1467 +#: server_status.php:1468 msgid "Chart columns" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -9510,7 +9510,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -9518,11 +9518,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -9530,7 +9530,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -9538,11 +9538,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10051,12 +10051,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "" diff --git a/po/mn.po b/po/mn.po index ac216f7f1c..a5a2a0a151 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" @@ -20,10 +20,10 @@ msgstr "Бүгдийг харах" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Хуудасны дугаар:" @@ -37,8 +37,8 @@ msgstr "" "таны хөтөч хамгаалалтын тохиргооны улмаас шинэчлэлтийг хориглогдсон" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Хайх" @@ -46,25 +46,25 @@ msgstr "Хайх" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -86,7 +86,7 @@ msgstr "Түлхүүрийн нэр" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Тайлбар" @@ -96,7 +96,7 @@ msgid "Use this value" msgstr "Уг утгыг хэрэглэх" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -124,7 +124,7 @@ msgstr "" msgid "Database comment: " msgstr "ӨС-ийн тайлбар: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -133,8 +133,8 @@ msgstr "Хүснэгтийн тайлбар" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -148,11 +148,11 @@ msgstr "Баганын нэрс" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -163,8 +163,8 @@ msgstr "Төрөл" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -174,8 +174,8 @@ msgstr "Хоосон" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -184,8 +184,8 @@ msgstr "Анхдагч" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Холбоос" @@ -194,8 +194,8 @@ msgstr "Холбоос" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Тайлбар" @@ -206,7 +206,7 @@ msgstr "Тайлбар" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -227,7 +227,7 @@ msgstr "Үгүй" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -367,7 +367,7 @@ msgstr "Хамааралтай схем" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -391,21 +391,21 @@ msgstr "хэрэглэгдэж байна" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Үүсгэлт" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Сүүлийн шинэчлэл" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Сүүлийн шалгалт" @@ -509,7 +509,7 @@ msgstr "Асуултыг илгээх" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Хандах эрхгүй" @@ -544,7 +544,7 @@ msgstr[0] "%s олдоц(ууд) хүснэгт %s-д" msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Хөтлөх" @@ -557,10 +557,10 @@ msgstr "Хүснэгтийн өгөгдлийг устгах" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -685,12 +685,12 @@ msgstr "Бүх чагтыг болих" msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Гаргах" @@ -700,13 +700,13 @@ msgstr "Гаргах" msgid "Print view" msgstr "Хэвлэхээр харах" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Хоосон" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -744,7 +744,7 @@ msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" msgid "Copy table with prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Өгөгдлийн толь" @@ -759,7 +759,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -779,7 +779,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Статус" @@ -881,14 +881,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Файл уншигдахгүй байна" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -914,7 +914,7 @@ msgstr "Тэмдэглэгээ устгагдсан." msgid "Showing bookmark" msgstr "Тэмдэглэл харуулах" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" @@ -937,7 +937,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1065,9 +1065,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Засах" @@ -1094,13 +1094,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Нийт" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1132,7 +1132,7 @@ msgstr "Сервэр сонго" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Процессууд" @@ -1161,7 +1161,7 @@ msgstr "Өгөгдлийн сангийн статистик" #: js/messages.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" #: js/messages.php:94 @@ -1270,7 +1270,7 @@ msgstr "" msgid "Bytes received" msgstr "Ирсэн" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Холболт" @@ -1281,12 +1281,12 @@ msgstr "Холболт" msgid "Questions" msgstr "Хамаарал" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Гуйвуулга" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1313,7 +1313,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Байхгүй" @@ -1539,7 +1539,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Оруулах" @@ -1742,7 +1742,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2222,59 +2222,59 @@ msgstr "хэрэглэгдэж байна" msgid "Second" msgstr "секундэд" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Үсгийн хэмжээ" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2302,7 +2302,7 @@ msgid "Cardinality" msgstr "Ерөнхий" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "" @@ -2323,14 +2323,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Өгөгдлийн сангууд" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2436,16 +2436,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Сэдэв %s-д олдсон зургийн зам буруу байна!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Боломжит харагдац байхгүй байна." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "авах" @@ -2459,12 +2459,12 @@ msgstr "Анхдагч сэдэв %s байхгүй байна!" msgid "Theme %s not found!" msgstr "Сэдэв %s олдсонгүй!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2473,7 +2473,7 @@ msgid "Cannot connect: invalid settings." msgstr "Холбогдсонгүй: тохируулга буруу." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%s-д тавтай морилно уу" @@ -2497,56 +2497,56 @@ msgstr "" "phpMyAdmin нь MySQL сервэр лүү холбогдох гэсэн ч, сервэр хүлээн авсангүй. " "config.inc.php дэх сервэр, хэрэглэгчийн нэр болон нууц үгээ шалга." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Нэвтрэх" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin баримтжилт" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Сервэр" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Нэвтрэгч:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Нууц үг:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Сервэр сонго" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Энэ газарт Cookies нээлттэй байх ёстой." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s секунд ба түүнээс их идэвхгүй байжээ, дахин нэвтэрнэ үү" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL руу нэвтэрч чадсангүй" @@ -2577,41 +2577,41 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "MySQL холболтын кодлол" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2755,7 +2755,7 @@ msgid "Documentation" msgstr "Баримт" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-асуулт" @@ -2765,7 +2765,7 @@ msgstr "SQL-асуулт" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2816,7 +2816,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Хөдөлгүүрүүд" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2917,7 +2917,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2937,8 +2937,8 @@ msgstr "Бүтэц" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Оруулах" @@ -2949,26 +2949,26 @@ msgstr "Оруулах" msgid "Operations" msgstr "Үйлдлүүд" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3145,7 +3145,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Да.эхлэх" @@ -5373,8 +5373,8 @@ msgstr "%s ӨС-д шинэ хүснэгт үүсгэх" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5729,7 +5729,7 @@ msgstr "Түлхүүрээр эрэмбэлэх" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Сонголтууд" @@ -5795,7 +5795,7 @@ msgid "The row has been deleted" msgstr "Мөр устгагдсан" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Алах" @@ -6372,7 +6372,7 @@ msgstr "Идэвхтэй MIME-төрлүүд" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Хост" @@ -6586,7 +6586,7 @@ msgstr "SQL-үр дүн" msgid "Generated by" msgstr "Үүсгэгч" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." @@ -6684,7 +6684,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Хүснэгтийн нэр" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Баганын нэрс" @@ -7047,7 +7047,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "тайлбаргүй" @@ -7082,14 +7082,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Хувьсагч" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Утга" @@ -7149,7 +7149,7 @@ msgstr "Нууц үг бий болгох" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7188,16 +7188,16 @@ msgstr "" msgid "Edit event" msgstr "Үзэгдэл" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Процессууд" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7212,7 +7212,7 @@ msgstr "Хэрэг явдлын төрөл" msgid "Event type" msgstr "Хэрэг явдлын төрөл" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7240,7 +7240,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Төгс" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7253,12 +7253,12 @@ msgstr "Тайлбар" msgid "On completion preserve" msgstr "Оруулалтыг дуусгах" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7306,7 +7306,7 @@ msgid "Returns" msgstr "Хүснэгтийн сонголтууд" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Цаг" @@ -7322,7 +7322,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7344,124 +7344,124 @@ msgstr "Хүснэгт %s нь устгагдлаа" msgid "Routine %1$s has been created." msgstr "Хүснэгт %s нь устгагдлаа" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Баганын нэрс" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Шууд холбоос" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Урт/Утгууд*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Шинэ талбар нэмэх" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Өгөгдлийн санг д.нэрлэх нь" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Урт/Утгууд*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Хүснэгтийн сонголтууд" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Асуултын төрөл" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Функц" @@ -7618,7 +7618,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7628,7 +7628,7 @@ msgstr "Хүснэгт \"%s\" байхгүй байна!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7636,9 +7636,9 @@ msgid "Please configure the coordinates for table %s" msgstr "%s хүснэгтийн координатыг тохируулна уу" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7652,115 +7652,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Хамааралтай схем" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Агуулгын хүснэгт" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Атрибутууд" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Нэмэлт" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Шинэ хуудас үүсгэх" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Хуудасны дугаар:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автомат байрлал" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Дотоод хамаарал" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Засах Хуудсаа сонго" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Бүгдийг сонгох" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Хүснэгтүүд сонго" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Хамааралтай схем" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Тор харуулах" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Өнгө харах" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Хүснэгтийн харьцаа харуулах" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "бүх хүснэгтийг ижил өргөнөөр харуулах уу?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Ландшафт" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Дүрслэл" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Үүсгэлт" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Цаасны хэмжээ" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7768,17 +7768,17 @@ msgstr "" "Хүснэгтийн лавлахтай хуудас нь удаан оршихгүй, Та эдгээр лавлахуудыг устгах " "уу?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "toggle scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Үл мэдэгдэх хэл: %1$s." @@ -7855,11 +7855,11 @@ msgstr "" msgid "Columns" msgstr "Баганын нэрс" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" @@ -8324,7 +8324,7 @@ msgstr "Протоколын хувилбар" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Хэрэглэгч" @@ -8526,7 +8526,7 @@ msgstr "Жижиш/Том Бүгдийг" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Оруулах/Гаргах PDF схемийн координат" @@ -8611,49 +8611,49 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "хуудсууд" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Файл оруулах" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Гаргах/Оруулах хэмжээс" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Шинэ индекс үүсгэх" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Хэрэглэгчийн нэр" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Гаргах/Оруулах хэмжээс" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "сайшаагдсан" @@ -8764,12 +8764,12 @@ msgstr "Файл оруулах" msgid "All" msgstr "Бүх" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s хүснэгт олдсонгүй эсвэл %s-д сонгогдоогүй" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8783,13 +8783,13 @@ msgstr "Харах хоёртын log сонго" msgid "Files" msgstr "Файлууд" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Бүтэн асуулт харуулах" @@ -9611,8 +9611,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "цагт" @@ -9633,88 +9633,88 @@ msgstr "Баримтжуулал" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Ирсэн" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Илгээгдэв" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "ХИ. давхацсан холболтууд" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Бүтэлгүйтсэн оролдлого" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Таслагдсан" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Команд" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, fuzzy #| msgid "Limits 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:1190 +#: server_status.php:1191 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 " @@ -9724,16 +9724,16 @@ msgstr "" "хэрэглэгдэх завсрын файлын утгаас хэтэрсэн хоёртын тэмдэглэлийн нөөцлөлд " "хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "Завсрын хоёртын тэмдэглэлийн нөөцөлөлт хэрэглэгдэх хэлэлцээрийн тоо." -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9745,11 +9745,11 @@ msgstr "" "оронд санах ойд суурилсан завсрын хүснэгтийн tmp хүснэгтийн хэмжээн утгыг " "нэмэгдүүлэхийг хүсэж байж болно." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Хичнээн завсрын файл mysqld-д үүсгэгдэв." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9757,7 +9757,7 @@ msgstr "" "Сервэрийн ажиллуулсан хэлэлцээрийн үед автоматаар үүссэн санах ойн " "хүснэгтүүдийн тоо." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9765,7 +9765,7 @@ msgstr "" "Ижил алдаа өгөх (түлхүүр давхардсан байж болзошгүй) бүрт ДАВТАЛТТАЙ ОРУУЛАЛТ-" "аар бичигдсэн мөрүүдийн тоо." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9773,23 +9773,23 @@ msgstr "" "Хэрэглэгдэж буй ДАВТАЛТТАЙ ОРУУЛАЛТ-ын thread баригчийн тоо. Ялгаатай " "хүснэгт бүр ДАВТАЛТТАЙ ОРУУЛАЛТ-д өөрийн thread-ийг хэрэглэнэ." -#: server_status.php:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "ДАВТАЛТТАЙ ОРУУЛАЛТ-аар бичигдсэн мөрийн тоо." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "ЦЭВЭРЛЭХ хэлэлцээрийн ажилласан тоо." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "дотоод COMMIT хэлэлцээриийн тоо." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Хүснэгтээс мөр устгасан тоо." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -9799,7 +9799,7 @@ msgstr "" "NDB Кластер хадгалуурын хөдөлгүүрийг асууж чадна. Үүнийг ололт гэж нэрлэнэ. " "Ололтын баригч нь ололт хийгдсэн хүснэгтийн хичнээн удааг илэрхийлэх тоо юм." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9809,7 +9809,7 @@ msgstr "" "бүтэн индекс шалгалтыг энэ сервэр хийснийг илтгэнэ; Жишээлбэл, SELECT col1 " "FROM foo, энд col1 индекслэгдсэн байна." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -9817,7 +9817,7 @@ msgstr "" "Түлхүүрт суурилсан мөр унших хүсэлтийн тоо. Хэрэв энэ нь өндөр бол, таны " "асуудлууд болон хүснэгтүүд зөв индекслэгдсэнийг илтгэнэ." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9827,7 +9827,7 @@ msgstr "" "та мужийн нөхцөлтэйгээр баганын индекс шаардах эсвэл индекс шалгалтыг хийхэд " "нэмэгдэж байдаг." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9835,7 +9835,7 @@ msgstr "" "Түлхүүрийн дараалал дахь өмнөх мөрийг унших хүсэлтийн тоо. Энэ унших арга нь " "голчлон ORDER BY ... DESC-д хэрэглэгддэг." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9847,7 +9847,7 @@ msgstr "" "Та магадгүй хүснэгтийг бүрэн шалгахыг MySQL-ээс цөөнгүй хүссэн эсвэл нэгдэлд " "түлхүүрийг зөв ашиглаагүй байх." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9859,35 +9859,35 @@ msgstr "" "ерөнхийдөө, таны хүснэгтүүд зөв индекслэгдээгүй эсвэл индексүүд чинь " "асуудалд зөв бичигдээгүйг илтгэнэ." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Дотоод ROLLBACK хэлэлцээрийн тоо." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Хүснэгт дэх мөрийг шинэчлэх хүсэлтийн тоо." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Хүснэгтэд мөр оруулах хүсэлтийн тоо." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Өгөгдөл агуулж буй (бохир, цэвэр) хуудсын тоо." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Одоогоор бохир байгаа хуудсын тоо." -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Цэвэрлэх хүсэлт дэх буфферийн хуудсын тоо." -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Чөлөөтэй байгаа хуудсуудын тоо." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9897,7 +9897,7 @@ msgstr "" "одоогоор унших, бичих эсвэл цэвэрлэгдэж чадаагүй, мөн бусад шалгааны улмаас " "хасагдсан." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9909,11 +9909,11 @@ msgstr "" "InndoDB буфферийн нөөцийн нийт хуудас - Innodb_буфферийн нөөцийн чөлөөт " "хуудас - Innodb_буфферийн нөөцийн хуудсын өгөгдөл зэргээс бодогддог." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Хуудас дахь буфферийн нөөцийн хэмжээ." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9921,7 +9921,7 @@ msgstr "" "InnoDB үүсгэсэн \"санамсаргүй\" өмнөх уншилтын тоо. Замбараагүй " "эрэмбэлэгдсэн хүснэгтийн нилээд хувийг шалгасан асуудлыг илэрхийлнэ." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9929,11 +9929,11 @@ msgstr "" "InnoDB үүсгэсэн дараалсан өмнөх уншилтын тоо. Хүснэгтийн дараалсан бүтэн " "шалгалтыг InnoDB хийснийг илэрхийлнэ." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "InndoDB-ийн хийсэн логик уншилтын хүсэлтийн тоо." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9941,7 +9941,7 @@ msgstr "" "InnoDB буфферийн нөөцөөс нийцэмжгүй ба ганц хуудас уншилт хийсэн логик " "уншилтын тоо." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -9950,227 +9950,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфферийн нөөц рүү бичигдэж дууссан тоо." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "fsync() үйлдлийн ойрхон хийгдсэн тоо." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "fsync() үйлдлийн хүлээгдэж буй тухайн тоо." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Уншихаар хүлээгдэж буй тухайн тоо." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Бичихээр хүлээгдэж буй тухайн тоо." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Өгөгдөл ойрхон уншсан дүн, байтаар." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Өгөгдөл уншилтийн нийт тоо." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Өгөгдөл бичилтийн нийт тоо." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Өгөгдөл ойрхон бичсэн дүн, байтаар." -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Тэмдэглэл бичих хүсэлтийн тоо." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Тэмдэглэлийн файлын физик бичилтийн тоо." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Тэмдэглэлийн файл руу бичих хүлээлт." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10178,99 +10178,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Эрэмбэлэгдсэн мөрийн тоо." -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10278,18 +10278,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10297,63 +10297,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Шинэ талбар нэмэх" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Да.дуудах" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Багана нэмэх/устгах" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy msgid "Monitor Instructions" msgstr "Мэдээлэл" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10362,7 +10362,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10370,11 +10370,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10382,7 +10382,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10390,11 +10390,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10927,12 +10927,12 @@ msgstr "SQL асуудал харуулах" msgid "Validated SQL" msgstr "SQL-ийг батлах" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Хүснэгт `%s`-ийн индекс асуудалтай" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Хаяг" diff --git a/po/ms.po b/po/ms.po index 4e22c8c521..3087fef415 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" @@ -20,10 +20,10 @@ msgstr "Papar semua" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Muka Surat:" @@ -35,8 +35,8 @@ msgid "" msgstr "" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Cari" @@ -44,25 +44,25 @@ msgstr "Cari" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -84,7 +84,7 @@ msgstr "Nama Kekunci" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Keterangan" @@ -94,7 +94,7 @@ msgid "Use this value" msgstr "Guna nilai ini" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -125,7 +125,7 @@ msgstr "angkalan data %s telah digugurkan." msgid "Database comment: " msgstr "Komen jadual" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -134,8 +134,8 @@ msgstr "Komen jadual" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -149,11 +149,11 @@ msgstr "Nama Kolum" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -164,8 +164,8 @@ msgstr "Jenis" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -175,8 +175,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -185,8 +185,8 @@ msgstr "Asal" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Pautan ke" @@ -195,8 +195,8 @@ msgstr "Pautan ke" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Komen" @@ -207,7 +207,7 @@ msgstr "Komen" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -228,7 +228,7 @@ msgstr "Tidak" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -369,7 +369,7 @@ msgstr "Skema Hubungan" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -393,7 +393,7 @@ msgstr "sedang digunakan" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 #, fuzzy msgid "Creation" @@ -401,14 +401,14 @@ msgstr "Cipta" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Semakan Terakhir" @@ -511,7 +511,7 @@ msgstr "Hantar Kueri" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Akses dinafikan" @@ -546,7 +546,7 @@ msgstr[0] "%s padanan di dalam jadual %s" msgstr[1] "%s padanan di dalam jadual %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Lungsur" @@ -559,10 +559,10 @@ msgstr "Melonggok data bagi jadual" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -687,12 +687,12 @@ msgstr "Nyahtanda Semua" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksport" @@ -702,13 +702,13 @@ msgstr "Eksport" msgid "Print view" msgstr "Paparan Cetak" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Kosong" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -746,7 +746,7 @@ msgstr "Ganti data jadual dengan fail" msgid "Copy table with prefix" msgstr "Ganti data jadual dengan fail" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Kamus Data" @@ -761,7 +761,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -782,7 +782,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -887,14 +887,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -920,7 +920,7 @@ msgstr "TandaBuku telah dipadam." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -943,7 +943,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1064,9 +1064,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Ubah" @@ -1092,13 +1092,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Jumlah" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1130,7 +1130,7 @@ msgstr "Pilihan Pelayan" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Proses-proses" @@ -1156,7 +1156,7 @@ msgid "Query statistics" msgstr "Statistik Baris" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1258,7 +1258,7 @@ msgstr "" msgid "Bytes received" msgstr "DiTerima" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Hubungan" @@ -1268,12 +1268,12 @@ msgstr "Hubungan" msgid "Questions" msgstr "Operasi" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Kesibukan" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1299,7 +1299,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Tiada" @@ -1521,7 +1521,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1716,7 +1716,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2193,59 +2193,59 @@ msgstr "sedang digunakan" msgid "Second" msgstr "Rekod" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2273,7 +2273,7 @@ msgid "Cardinality" msgstr "Kardinaliti" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2295,14 +2295,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "pangkalan data" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2399,16 +2399,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2422,12 +2422,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2436,7 +2436,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Selamat Datang ke %s" @@ -2456,57 +2456,57 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Logmasuk" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Dokumentasi phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 #, fuzzy msgid "Server:" msgstr "Pelayan" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Namapengguna:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Katalaluan:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Pilihan Pelayan" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Cecikut mestilah dihidupkan ketika ini." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Tidak boleh log-masuk ke server MySQL" @@ -2537,39 +2537,39 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2707,7 +2707,7 @@ msgid "Documentation" msgstr "Dokumentasi" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "kueri-SQL" @@ -2717,7 +2717,7 @@ msgstr "kueri-SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2766,7 +2766,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2865,7 +2865,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2885,8 +2885,8 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Selit" @@ -2897,26 +2897,26 @@ msgstr "Selit" msgid "Operations" msgstr "Operasi" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direktori muatnaik pelayan-web" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3094,7 +3094,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Ulangtetap" @@ -5311,8 +5311,8 @@ msgstr "Cipta jadual baru pada pangkalan data %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5647,7 +5647,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5715,7 +5715,7 @@ msgid "The row has been deleted" msgstr "Baris telah dipadam" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Bunuh" @@ -6266,7 +6266,7 @@ msgstr "Paparkan Ciri-ciri" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Hos" @@ -6476,7 +6476,7 @@ msgstr "Hasil SQL" msgid "Generated by" msgstr "Dijana oleh" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)" @@ -6574,7 +6574,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Nama Kolum" @@ -6931,7 +6931,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "tiada keterangan" @@ -6966,14 +6966,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Pembolehubah" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Nilai" @@ -7034,7 +7034,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7071,16 +7071,16 @@ msgstr "" msgid "Edit event" msgstr "Hantar" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proses-proses" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7095,7 +7095,7 @@ msgstr "Jenis Kueri" msgid "Event type" msgstr "Jenis Kueri" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7122,7 +7122,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Tamat" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7135,12 +7135,12 @@ msgstr "Keterangan" msgid "On completion preserve" msgstr "Kemasukkan Selesai" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7187,7 +7187,7 @@ msgid "Returns" msgstr "Statistik pangkalan data" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Masa" @@ -7204,7 +7204,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7224,118 +7224,118 @@ msgstr "Jadual %s telah digugurkan" msgid "Routine %1$s has been created." msgstr "Jadual %s telah digugurkan" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Nama Kolum" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy msgid "Direction" msgstr "Cipta" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Panjang/Nilai*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy msgid "Remove last parameter" msgstr "Tukarnama jadual ke" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Panjang/Nilai*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy msgid "Return options" msgstr "Statistik pangkalan data" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Jenis Kueri" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Fungsi" @@ -7481,7 +7481,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7491,7 +7491,7 @@ msgstr "Jadual \"%s\" tidak wujud!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7499,9 +7499,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Sila konfigurasikan kordinat bagi jadual %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7515,129 +7515,129 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Skema Hubungan" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Kandungan" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atribut" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Cipta Halaman baru" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Muka Surat:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy msgid "Automatic layout based on" msgstr "Versi Pelayan" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Sila Pilih Laman untuk diubah" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Sila pilih pangkalan data" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Pilih Jadual" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Skema Hubungan" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Papar grid" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Papar warna" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Papar dimensi jadual" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "paparkan semua Jadual dengan kelebaran yang sama?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Menegak" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Melintang" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy msgid "Orientation" msgstr "Cipta" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7717,11 +7717,11 @@ msgstr "" msgid "Columns" msgstr "Nama Kolum" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "andabuku kueri-SQL ini" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -8122,7 +8122,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Pengguna" @@ -8320,7 +8320,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8403,46 +8403,46 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Jadual %s telah digugurkan" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Penggunaan" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Cipta indeks baru" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Kata Pengenalan" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8551,12 +8551,12 @@ msgstr "" msgid "All" msgstr "Semua" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Jadual %s tidak dijumpai atau ditetapkan pada %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8571,13 +8571,13 @@ msgstr "" msgid "Files" msgstr "Medan" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "" @@ -9393,8 +9393,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "per jam" @@ -9415,103 +9415,103 @@ msgstr "Penyataan" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "DiTerima" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Hantar" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Percubaan Gagal" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "DiBatalkan" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Arahan" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9519,78 +9519,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9598,7 +9598,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9606,42 +9606,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9649,33 +9649,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9684,227 +9684,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9912,99 +9912,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10012,18 +10012,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10031,63 +10031,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sab" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy msgid "Add chart" msgstr "Tambah medan baru" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Dijana oleh" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Tambah/Padam Kolum Medan" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10096,7 +10096,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10104,11 +10104,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10116,7 +10116,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10124,11 +10124,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10660,12 +10660,12 @@ msgstr "" msgid "Validated SQL" msgstr "Mengesahkan SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Label" diff --git a/po/nb.po b/po/nb.po index 1f04ca24e3..beb92a58b3 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" @@ -21,10 +21,10 @@ msgstr "Vis alle" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Sidenummer:" @@ -38,8 +38,8 @@ msgstr "" "din nettleser blokkerer vindu-til-vindu oppdateringer av sikkerhetsårsaker." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Søk" @@ -47,25 +47,25 @@ msgstr "Søk" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "Nøkkel" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Beskrivelse" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "Bruk denne verdien" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Ingen blob streaming tjener er konfigurert!" @@ -127,7 +127,7 @@ msgstr "Databasen %1$s har blitt opprettet." msgid "Database comment: " msgstr "Database kommentar: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -136,8 +136,8 @@ msgstr "Tabellkommentarer" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -149,11 +149,11 @@ msgstr "Kolonne" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -164,8 +164,8 @@ msgstr "Type" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -175,8 +175,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -185,8 +185,8 @@ msgstr "Standard" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Linker til" @@ -195,8 +195,8 @@ msgstr "Linker til" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Kommentarer" @@ -207,7 +207,7 @@ msgstr "Kommentarer" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -228,7 +228,7 @@ msgstr "Nei" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -358,7 +358,7 @@ msgstr "Rediger eller eksporter relasjonsskjema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -382,21 +382,21 @@ msgstr "i bruk" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Opprettet" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Sist oppdatert" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Sist kontrollert" @@ -495,7 +495,7 @@ msgstr "Kjør spørring" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Ingen tilgang" @@ -529,7 +529,7 @@ msgstr[0] "%s treff i tabell %s" msgstr[1] "%s treff i tabell %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Se på" @@ -541,10 +541,10 @@ msgstr "Slett treffene for %s tabellen?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -664,12 +664,12 @@ msgstr "Fjern merking" msgid "Check tables having overhead" msgstr "Merk overheng" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksporter" @@ -679,13 +679,13 @@ msgstr "Eksporter" msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Tøm" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -725,7 +725,7 @@ msgstr "Erstatt tabell med filen" msgid "Copy table with prefix" msgstr "Erstatt tabell med filen" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Dataordbok" @@ -740,7 +740,7 @@ msgstr "Overvåkede tabeller" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -760,7 +760,7 @@ msgstr "Oppdatert" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -866,14 +866,14 @@ msgstr "" "Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen" "%s for måter å omgå denne begrensningen." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Fila kunne ikke leses" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -905,7 +905,7 @@ msgstr "Bokmerket har blitt slettet." msgid "Showing bookmark" msgstr "Vis bokmerke" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Bokmerke %s opprettet" @@ -933,7 +933,7 @@ msgstr "" "øker php tidsgrensen." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1056,9 +1056,9 @@ msgstr "Lukk" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Rediger" @@ -1085,13 +1085,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Totalt" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1123,7 +1123,7 @@ msgstr "Tjenervalg" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Prosesser" @@ -1150,7 +1150,7 @@ msgstr "Spørringsstatistikk" #: js/messages.php:93 #, fuzzy #| msgid "Could not save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Kunne ikke lagre konfigurasjonen" #: js/messages.php:94 @@ -1259,7 +1259,7 @@ msgstr "" msgid "Bytes received" msgstr "Mottatt" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "tilkoblinger" @@ -1270,12 +1270,12 @@ msgstr "tilkoblinger" msgid "Questions" msgstr "Versjoner" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Trafikk" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Iinnstillinger" @@ -1302,7 +1302,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Ingen" @@ -1532,7 +1532,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importer" @@ -1719,7 +1719,7 @@ msgid "Query execution time" msgstr "Maks kjøretid" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2147,27 +2147,27 @@ msgstr "Minutt" msgid "Second" msgstr "Sekund" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Fontstørrelse" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Ukjent feil oppstod under filopplastingen." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2175,38 +2175,38 @@ msgstr "" "Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i " "HTML-skjemaet." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Opplastingsfila ble bare delvis opplastet." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Mangler en midlertidig mappe." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Klarte ikke å skrive fila til harddisken." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Filopplasting stoppet av utvidelse." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Ukjent feil oppstod under filopplastingen." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2234,7 +2234,7 @@ msgid "Cardinality" msgstr "Kardinalitet" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Kommentar" @@ -2257,14 +2257,14 @@ msgstr "" "Indeksene %1$s og %2$s ser ut til å være like og en av dem burde kunne " "fjernes." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Databaser" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2371,16 +2371,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Ingen gyldig bildesti for stilen %s ble funnet!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Ingen forhandsvisning tilgjengelig." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "velg" @@ -2394,12 +2394,12 @@ msgstr "Standard stil %s ble ikke funnet!" msgid "Theme %s not found!" msgstr "Stilen %s ble ikke funnet!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Stilsti ble ikke funnet for stilen %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2408,7 +2408,7 @@ msgid "Cannot connect: invalid settings." msgstr "Kan ikke koble til: ugyldige innstillinger." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Velkommen til %s" @@ -2434,57 +2434,57 @@ msgstr "" "passord (password) i config.inc.php og sjekke at de tilsvarer den " "informasjonen du fikk fra MySQL-server administratoren." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Logg inn" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin-Dokumentasjon" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Du kan skrive vertsnavn/IP adresse og port separert med mellomrom." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Tjener" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Brukernavn:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Passord:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Tjenervalg" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Cookies må være slått på forbi dette punkt." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Innlogging uten passord er forbudt av konfigurasjonen (see AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Ingen aktivitet på %s sekunder eller mer, du må logge inn på nytt" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Kan ikke logge inn til MySQL tjeneren" @@ -2517,41 +2517,41 @@ msgstr "Ingen gyldig autentiseringsnøkkel plugget" msgid "Authenticating..." msgstr "Autentiserer..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS feil" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS tilkoblingen feilet:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS get BLOB info feilet:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "get BLOB Content-Type feilet:" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Vis bilde" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Spill lyd" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Vis video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Last ned fil" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Kunne ikke åpne fil: %s" @@ -2690,7 +2690,7 @@ msgid "Documentation" msgstr "Dokumentasjon" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-spørring" @@ -2700,7 +2700,7 @@ msgstr "SQL-spørring" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2749,7 +2749,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profilering" @@ -2852,7 +2852,7 @@ msgid "Click to toggle" msgstr "Klikk for å velge" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2872,8 +2872,8 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Sett inn" @@ -2884,25 +2884,25 @@ msgstr "Sett inn" msgid "Operations" msgstr "Operasjoner" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Bla gjennom datamaskinen:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen du anga for opplasting kan ikke nåes" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Det er ingen filer å laste opp" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3068,7 +3068,7 @@ msgid "Allow users to customize this value" msgstr "Tillat brukere å endre denne verdien" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Tilbakestill" @@ -5408,8 +5408,8 @@ msgstr "Opprett ny tabell i database %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5743,7 +5743,7 @@ msgstr "Sorter etter nøkkel" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Innstillinger" @@ -5807,7 +5807,7 @@ msgid "The row has been deleted" msgstr "Raden er slettet" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Avslutt" @@ -6409,7 +6409,7 @@ msgstr "Vis MIME-typer" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Vert" @@ -6623,7 +6623,7 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Generert av" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." @@ -6726,7 +6726,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Tabellnavn" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Kolonnenavn" @@ -7099,7 +7099,7 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-logginn til phpMyAdmin for å laste den oppdaterte konfigurasjonsfila." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "ingen beskrivelse" @@ -7136,14 +7136,14 @@ msgid "Slave status" msgstr "Slavestatus" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variabler" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Verdi" @@ -7207,7 +7207,7 @@ msgstr "Generer passord" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7247,16 +7247,16 @@ msgstr "" msgid "Edit event" msgstr "Rediger tjener" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Feil i prosesseringsforespørsel" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7273,7 +7273,7 @@ msgstr "Hendelsestype" msgid "Event type" msgstr "Hendelsestype" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7301,7 +7301,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Slutt" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7314,12 +7314,12 @@ msgstr "Beskrivelse" msgid "On completion preserve" msgstr "Komplette inserts" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7367,7 +7367,7 @@ msgid "Returns" msgstr "Returtype" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Tid" @@ -7383,7 +7383,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7405,128 +7405,128 @@ msgstr "Kolonne %s har blitt slettet" msgid "Routine %1$s has been created." msgstr "Tabellen %1$s har blitt opprettet." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Redigeringsmodus" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutiner" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Direkte linker" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Lengde/Sett*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Utfør indeks(er)" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Fjern database" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Returtype" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lengde/Sett*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tabellinnstillinger" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Sikkerhet" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Tillater utføring av lagrede rutiner." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Rutiner" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funksjon" @@ -7691,7 +7691,7 @@ msgstr "Det er ingen filer å laste opp" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7700,7 +7700,7 @@ msgstr "Tabellen %s eksisterer ikke!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7708,9 +7708,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Vennligst konfigurer koordinatene for tabell %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Skjema for %s databasen - Side %s" @@ -7725,109 +7725,109 @@ msgstr "Fila %s inneholder ingen nøkkel id" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relasjonsskjema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Innholdsfortegnelse" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Attributter" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Lag en ny side" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Sidenummer" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Automatisk disposisjon" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Interne relasjoner" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Vennligst velg en side for redigering" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Velg side" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Velg tabeller" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relasjonsskjema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Vis rutenett" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Vis farger" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Vis tabelldimensjoner" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "vis alle tabeller med samme bredde?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Bare vis nøkler" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Landskapsformat" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portrettformat" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Opprettet" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Papirstørrelse" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7835,17 +7835,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "slå av/på kladdevindu" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Ukjent språk: %1$s." @@ -7918,11 +7918,11 @@ msgstr "Fjern" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "La alle brukere ha adgang til dette bokmerket" @@ -8357,7 +8357,7 @@ msgstr "Protokollversjon" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Bruker" @@ -8582,7 +8582,7 @@ msgstr "Liten/Stor alle" msgid "Toggle small/big" msgstr "Veksle mellom liten/stor" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Eksporter koordinater for PDF skjema" @@ -8670,49 +8670,49 @@ msgstr "" "visningskolonne, klikk på \"Velg kolonne for visning\" ikonet, klikk så på " "det aktuelle kolonnenavnet." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Siden har blitt opprettet" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Sideopprettelsen feilet" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "sider" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importer filer" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Lag en ny indeks" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Brukernavn" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "anbefalt" @@ -8829,12 +8829,12 @@ msgstr "Importer filer" msgid "All" msgstr "Alle" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabellen ble ikke funnet eller ikke konfigurert i %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The %s table doesn't exist!" msgid "File doesn't exist" @@ -8848,13 +8848,13 @@ msgstr "Velg binærlogg for visning" msgid "Files" msgstr "Filer" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Forkort vist spørring" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Vis hele spørringen" @@ -9695,8 +9695,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Endre oppstartssiden" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "per time" @@ -9717,18 +9717,18 @@ msgstr "Oversikt" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 "Denne MySQL tjeneren har kjørt i %s. Den startet opp den %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9736,19 +9736,19 @@ msgstr "" "Denne tjeneren jobber både som tjener og slave i " "replikasjonsprosessen." -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" "Denne tjeneren er konfigurert som tjener i en replikasjonsprosess." -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" "Denne tjeneren er konfigurert som slave i en replikasjonsprosess." -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9756,11 +9756,11 @@ msgstr "" "For mer informasjon om replikasjonsstatusen for tjeneren, gå til replikasjonsseksjonen." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Replikasjonsstatus" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9768,47 +9768,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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Mottatt" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Sendt" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "maks. samtidige tilkoblinger" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Feilede forsøk" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Avbrutt" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Kommando" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -9818,17 +9818,17 @@ msgstr "" "som overskred verdien av binlog_size og brukte en midlertidig fil for å " "lagre spørringer fra transaksjonen." -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Antall transaksjoner som brukte den midlertidige binærloggmellomlageret." -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9840,11 +9840,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:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Antall midlertidige filer mysqld har opprettet." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9852,7 +9852,7 @@ msgstr "" "Antall midlertidige tabeller i minnet automatisk opprettet av tjeneren under " "utføriing av spørringer." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9860,7 +9860,7 @@ msgstr "" "Antall rader skrevet med INSERT DELAYED hvor en eller annen form for feil " "oppstod (mest sannsynlig duplisert nøkkel)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9868,23 +9868,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Antall INSERT DELAYED rader skrevet." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Antall utførte FLUSH uttrykk." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Antall interne COMMIT uttrykk." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9894,7 +9894,7 @@ msgstr "" "tabell med et gitt navn. Dette blir kalt oppdaging (discovery). " "Handler_discover indikerer antall ganger tabeller har blitt oppdaget." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9904,7 +9904,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:1204 +#: server_status.php:1205 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." @@ -9913,7 +9913,7 @@ msgstr "" "er høyt gir dette en god indikasjon på at dine spørringer og tabeller er " "riktig indeksert." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9924,7 +9924,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:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9932,7 +9932,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:1207 +#: server_status.php:1208 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 " @@ -9944,7 +9944,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:1208 +#: server_status.php:1209 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 " @@ -9956,37 +9956,37 @@ msgstr "" "tabeller ikke er rett indeksert eller at dine spørringer ikke er skrevet for " "å utnytte de indeksene du har." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Antall interne ROLLBACK kommandoer." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Antall sider som inneholder data (endret eller uendret)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Antall sider for tiden endret." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Antall tomme sider." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9995,7 +9995,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:1217 +#: server_status.php:1218 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 " @@ -10007,11 +10007,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:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Total størrelse på midlertidig mellomlager i sider." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10019,7 +10019,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10027,11 +10027,11 @@ msgstr "" "Antall sekvensielle \"read-aheads\" InnoDB startet. Denne skjer når InnoDB " "utfører en sekvensiell full tabellskanning." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Antall logiske leseforespørsler InnoDB har utført." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10039,7 +10039,7 @@ msgstr "" "Antall logiske lesninger som InnoDN ikke kunne tilfredsstille fra " "mellomlageret og måtte utføre en enkelsidelesnining." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -10053,55 +10053,55 @@ msgstr "" "telleren viser antall slike ventinger. Hvis mellomlagerstørrelsen er godt " "innstilt så vil denne verdien være liten." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antall skrivinger til InnoDBs midlertidig mellomlager." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Antall fsync() operasjoner så langt." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Antall ventende fsync() operasjoner." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Antall ventende lesinger." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Antall ventende skrivinger." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Mengden data lest så langt, i bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Antall utførte lesninger." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Antall utførte skrivinger." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Mengden data skrevet så langt, i bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -10109,35 +10109,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Antall loggskrivingsforespørsler." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Antall fysiske skrivinger til loggfila." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Antall fsync-skrivinger utført på loggfila." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Antall ventende loggfil-fsyncs." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Ventende loggfilskrivinger." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Antall bytes skrevet til loggfila." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Antall sider opprettet." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10145,51 +10145,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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Antall sidelesninger." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Antall sideskrivinger." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Antall ventende radlåsinger." -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Gjennomsnittlig tid for å oppnå radlåsing, i millisekunder." -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Total tid brukt for å få radlåsinger, i millisekunder." -#: server_status.php:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Antall rader slettet fra InnoDB tabeller." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Antall rader satt inn i InnoDB tabeller." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Antall rader lest fra InnoDB tabeller." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Antall rader oppdatert i InnoDB tabeller." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10198,7 +10198,7 @@ msgstr "" "ennå har blitt skrevet til harddisken. Dette var tidligere kjent som " "Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10206,7 +10206,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:1257 +#: server_status.php:1258 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 " @@ -10215,11 +10215,11 @@ 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:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10229,15 +10229,15 @@ msgstr "" "stor er nok din key_buffer_size verdi for liten. Mellomlagertreffraten kan " "kalkuleres med Key_reads/Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10248,17 +10248,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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10266,38 +10266,38 @@ msgstr "" "Antall tabeller som har blitt åpnet. Hvis denne er stor er nok din " "tabellmellomlagerverdi for liten." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Antall åpne filer." -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "Antall åpne dataflyter (hovedsaklig brukt til logging)." -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Antall åpne tabeller." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Mengden ledig minne i spørringsmellomlager." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Antall mellomlagertreff." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Antall spørringer lagt til i mellomlageret." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10310,7 +10310,7 @@ msgstr "" "og sist brukt (least recently used (LRU)) strategi for å finne hvilke " "spørringer som skal fjernes fra mellomlageret." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10318,19 +10318,19 @@ msgstr "" "Antallet ikkelagrede spørringer (kan ikke lagres, eller ikke lagret p.g.a. " "query_cache_type innstillingen)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Antall spørringer registrert i mellomlageret." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Totale antall blokker i spørringsmellomlageret." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Failsafe replikasjonsstatus (ikke implementert ennå)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10338,11 +10338,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10350,7 +10350,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:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10358,15 +10358,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10374,12 +10374,12 @@ msgstr "" "Det totale antall ganger (siden oppstart) replikasjonsslave-SQL-tråden har " "gjentatt transaksjoner." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10387,12 +10387,12 @@ msgstr "" "Antall tråder som har brukt mer enn slow_launch_time sekunder under " "opprettelse." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10402,24 +10402,24 @@ msgstr "" "denne verdien er stor bør du vurdere å øke verdien av sort_buffer_size " "systemvariabelen." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Antall sorteringer som ble utført med rekkefølger." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Antall sorterte rader." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10431,7 +10431,7 @@ msgstr "" "først optimalisere dine spørringer, og deretter enten splitte din tabell " "eller tabeller eller bruke replikasjon." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10441,11 +10441,11 @@ msgstr "" "Threads_created/Connections. Hvis denne verdien er rød bør du øke din " "thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Antall åpne tilkoblinger." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10456,69 +10456,69 @@ 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:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Antall tråder som ikke sover." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "CHAR textarea rows" msgid "Start Monitor" msgstr "CHAR textarea rader" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Utfør indeks(er)" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Oppdater" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR textarea kolonner" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Feilbehandling:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Gjennopprett standard verdi" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy msgid "Monitor Instructions" msgstr "Informasjon" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10527,7 +10527,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10535,11 +10535,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10547,7 +10547,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10555,11 +10555,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11198,12 +11198,12 @@ msgstr "Viser SQL spørring" msgid "Validated SQL" msgstr "Validert SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene i tabellen `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Navn" diff --git a/po/nl.po b/po/nl.po index 7c65d3ed87..b94f6ff834 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-06-04 15:19+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" @@ -21,10 +21,10 @@ msgstr "Toon alles" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Paginanummer:" @@ -38,8 +38,8 @@ msgstr "" "afgesloten of uw browser blokkeert bijwerkingen van uw venster." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Zoeken" @@ -47,25 +47,25 @@ msgstr "Zoeken" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "Sleutelnaam" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Beschrijving" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "Gebruik deze waarde" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Geen blob streaming server geconfigureerd!" @@ -127,7 +127,7 @@ msgstr "Database %1$s is aangemaakt." msgid "Database comment: " msgstr "Database opmerking: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -136,8 +136,8 @@ msgstr "Tabelopmerkingen" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -149,11 +149,11 @@ msgstr "Kolom" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -164,8 +164,8 @@ msgstr "Type" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -175,8 +175,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -185,8 +185,8 @@ msgstr "Standaardwaarde" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Verwijst naar" @@ -195,8 +195,8 @@ msgstr "Verwijst naar" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Opmerkingen" @@ -207,7 +207,7 @@ msgstr "Opmerkingen" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -228,7 +228,7 @@ msgstr "Nee" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -359,7 +359,7 @@ msgstr "Bewerk of exporteer relationeel schema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -383,21 +383,21 @@ msgstr "in gebruik" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Gecreëerd" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Laatst bijgewerkt" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Laatst gecontroleerd" @@ -496,7 +496,7 @@ msgstr "Query uitvoeren" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Toegang geweigerd" @@ -530,7 +530,7 @@ msgstr[0] "%s overeenkomst in de tabel %s" msgstr[1] "%s overeenkomsten in de tabel %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Verkennen" @@ -542,10 +542,10 @@ msgstr "Verwijder gevonden rijen voor de tabel %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -666,12 +666,12 @@ msgstr "Deselecteer alles" msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exporteer" @@ -681,13 +681,13 @@ msgstr "Exporteer" msgid "Print view" msgstr "Afdrukken" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Legen" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -721,7 +721,7 @@ msgstr "Vervang tabelvoorvoegsel" msgid "Copy table with prefix" msgstr "Vervang tabel met voorvoegsel" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Data Woordenboek" @@ -736,7 +736,7 @@ msgstr "Tabellen met tracker" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -756,7 +756,7 @@ msgstr "Bijgewerkt" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -863,14 +863,14 @@ msgstr "" "U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de " "%sdocumentatie%s voor mogelijkheden om dit te omzeilen." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Bestand kon niet worden gelezen" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -905,7 +905,7 @@ msgstr "De boekenlegger (Bookmark) is verwijderd." msgid "Showing bookmark" msgstr "Toon bookmark" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s aangemaakt" @@ -933,7 +933,7 @@ msgstr "" "worden versoepeld." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1051,9 +1051,9 @@ msgstr "Sluiten" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Wijzig" @@ -1080,13 +1080,13 @@ msgstr "Statische data" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Totaal" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Andere" @@ -1118,7 +1118,7 @@ msgstr "Serverkeuze" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Processen" @@ -1145,7 +1145,7 @@ msgstr "Toon statistieken" #: js/messages.php:93 #, fuzzy #| msgid "Could not save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Opslaan van het configuratiebestand is niet mogelijk" #: js/messages.php:94 @@ -1254,7 +1254,7 @@ msgstr "" msgid "Bytes received" msgstr "Ontvangen" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Connecties" @@ -1265,12 +1265,12 @@ msgstr "Connecties" msgid "Questions" msgstr "Versies" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Verkeer" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Instellingen" @@ -1297,7 +1297,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Geen" @@ -1527,7 +1527,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importeer" @@ -1706,7 +1706,7 @@ msgid "Query execution time" msgstr "Maximale uitvoertijd" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2132,27 +2132,27 @@ msgstr "Minuut" msgid "Second" msgstr "Seconde" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Lettertypegrootte" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Onbekende fout bij het uploaden." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Het geuploade bestand is groter dan de 'upload_max_filesize' optie uit uw " "php.ini." -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2160,27 +2160,27 @@ msgstr "" "Het geuploade bestand overschrijd de MAX_FILE_SIZE-optie die was opgegeven " "in het HTML formulier." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Het geuploade bestand was slechts gedeeltelijk ontvangen." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "De map voor tijdelijkebestanden ontbreekt." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Opslaan van het bestand op de hardeschijf is mislukt." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Upload afgebroken vanwege de extensie." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Onbekende fout bij het uploaden." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2188,11 +2188,11 @@ msgstr "" "Fout bij het verplaatsen van het geuploade bestand, zie [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2220,7 +2220,7 @@ msgid "Cardinality" msgstr "Kardinaliteit" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Opmerking" @@ -2243,14 +2243,14 @@ msgstr "" "De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden " "verwijderd." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Databases" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2352,16 +2352,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Geen geldig afbeeldingen pad voor thema %s gevonden!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Geen preview beschikbaar." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "neem het" @@ -2375,12 +2375,12 @@ msgstr "Standaard thema %s niet gevonden!" msgid "Theme %s not found!" msgstr "Thema %s niet gevonden!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Thema pad niet gevonden voor thema %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2389,7 +2389,7 @@ msgid "Cannot connect: invalid settings." msgstr "Kan niet verbinden: ongeldige instellingen." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Welkom op %s" @@ -2415,45 +2415,45 @@ msgstr "" "wachtwoord in config.inc.php en zorg er voor dat deze overeenkomen met de " "informatie die u van de Beheerder van de MySQL-server kreeg." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Inloggen" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin Documentatie" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "U kunt een machinenaam/IP adres en poortnummer gescheiden door een spatie " "opgeven." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Gebruikersnaam:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Wachtwoord:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Serverkeuze" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Cookies moeten aan staan voorbij dit punt." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2461,14 +2461,14 @@ msgstr "" "Inloggen zonder wachtwoord is niet toegestaan vanuit de instellingen (zie " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Geen activiteit voor %s seconden of meer, log a.u.b. opnieuw in" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Kan niet inloggen op de MySQL-server" @@ -2501,41 +2501,41 @@ msgstr "Geen geldige authenticatie sleutel aanwezig" msgid "Authenticating..." msgstr "Authenticeren..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS fout" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS connectie mislukt:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS BLOB info ophalen mislukt:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "ophalen van BLOB Content-type mislukt" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Bekijk afbeelding" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Afspelen" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Bekijk video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Download bestand" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Bestand kon niet worden geopend: %s" @@ -2675,7 +2675,7 @@ msgid "Documentation" msgstr "Documentatie" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-query" @@ -2685,7 +2685,7 @@ msgstr "SQL-query" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2736,7 +2736,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Rechtstreeks" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profiling" @@ -2839,7 +2839,7 @@ msgid "Click to toggle" msgstr "Klik om te selecteren" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2859,8 +2859,8 @@ msgstr "Structuur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Invoegen" @@ -2871,25 +2871,25 @@ msgstr "Invoegen" msgid "Operations" msgstr "Handelingen" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Blader op uw eigen pc:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecteer uit de web-server upload directory %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 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/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Er zijn geen bestanden om te uploaden" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3056,7 +3056,7 @@ msgid "Allow users to customize this value" msgstr "Sta gebruikers toe deze waarde aan te passen" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Herstel" @@ -5412,8 +5412,8 @@ msgstr "Nieuwe tabel aanmaken in database %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5733,7 +5733,7 @@ msgstr "Sorteren op sleutel" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Opties" @@ -5793,7 +5793,7 @@ msgid "The row has been deleted" msgstr "De rij is verwijderd" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "stop proces" @@ -6393,7 +6393,7 @@ msgstr "Toon beschikbare MIME-types" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Machine" @@ -6623,7 +6623,7 @@ msgstr "SQL-resultaat" msgid "Generated by" msgstr "Gegenereerd door" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultaat set terug (0 rijen)." @@ -6731,7 +6731,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Tabelnaam" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Kolom namen" @@ -7094,7 +7094,7 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Log opnieuw in op phpMyAdmin om het bijgewerkte configuratiebestand te laden." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "Geen beschrijving aanwezig" @@ -7132,14 +7132,14 @@ msgid "Slave status" msgstr "Slave status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variabelen" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Waarde" @@ -7203,7 +7203,7 @@ msgstr "Genereer wachtwoord" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7243,16 +7243,16 @@ msgstr "" msgid "Edit event" msgstr "Wijzig server" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Fout tijdens het verwerken van de opdracht" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7269,7 +7269,7 @@ msgstr "Gebeurtenis type" msgid "Event type" msgstr "Gebeurtenis type" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7297,7 +7297,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Einde" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7310,12 +7310,12 @@ msgstr "Beschrijving" msgid "On completion preserve" msgstr "volledige invoegingen" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7363,7 +7363,7 @@ msgid "Returns" msgstr "Retour type" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Tijd" @@ -7379,7 +7379,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7401,128 +7401,128 @@ msgstr "Kolom %s is verwijderd" msgid "Routine %1$s has been created." msgstr "Tabel %1$s is aangemaakt." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Wijzig-mode" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Routines" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Directe verbindingen" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Lengte/Waardes*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add prefix" msgid "Add parameter" msgstr "Voeg voorvoegsel toe" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Verwijder database" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Retour type" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lengte/Waardes*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tabelopties" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Beveiliging" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Maakt het mogelijk om stored routines uit te voeren." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Routines" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Functie" @@ -7687,7 +7687,7 @@ msgstr "Er zijn geen bestanden om te uploaden" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7696,7 +7696,7 @@ msgstr "De tabel %s bestaat niet!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7704,9 +7704,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Configureer de coördinaten voor de tabel %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schema van de %s database - Pagina %s" @@ -7719,105 +7719,105 @@ msgstr "Deze pagina bevat geen tabellen!" msgid "SCHEMA ERROR: " msgstr "SCHEMA ERROR: " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relationeel schema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Inhoudsopgave" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Attributen" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Creëer een nieuwe pagina" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Paginanaam" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Automatische lay-out gebaseerd op" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Interne relaties" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Kies een pagina om aan te passen" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Selecteer pagina" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Selecteer tabellen" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Toon relationeel schema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Selecteer uitvoer relationeel type" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Toon raster" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Toon kleur" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Geef de dimensies van de tabellen weer" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Geef alle tabellen weer met dezelfde breedte" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Alleen sleutels tonen" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Landschap" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portret" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Oriëntatie" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Papierformaat" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7825,17 +7825,17 @@ msgstr "" "De huidige pagina heeft referenties met tabellen die niet langer bestaan. " "Wilt u deze referenties verwijderen?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Aan/uit voorbeeldkader" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Onbekende taal: %1$s." @@ -7908,11 +7908,11 @@ msgstr "Clear" msgid "Columns" msgstr "Kolommen" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Sla deze SQL-query op" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Geef elke gebruiker toegang tot deze bookmark" @@ -8348,7 +8348,7 @@ msgstr "Protocolversie" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Gebruiker" @@ -8562,7 +8562,7 @@ msgstr "Alles In/uitklappen" msgid "Toggle small/big" msgstr "Wissel klein/groot" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Importeer/Exporteer coördinaten voor PDF-schema" @@ -8637,39 +8637,39 @@ msgstr "" # Verleden tijd: "is aangemaakt" => "werd aangemaakt", ookal bestaat het nog # steeds. # Wat doet "%1$s" hier? -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "De pagina werd aangemaakt" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Het aanmaken van de pagina is mislukt" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Pagina" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Import vanaf geselecteerde pagina" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Exporteer naar geselecteerde pagina" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Maak een pagina aan en exporteer ernaar" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Nieuwe pagina naam: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Exporteer/Importeer naar schaal" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "aangeraden" @@ -8783,12 +8783,12 @@ msgstr "Bestanden importeren" msgid "All" msgstr "Alle" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabel niet gevonden of niet ingesteld in %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Bestand bestaat niet" @@ -8800,13 +8800,13 @@ msgstr "Selecteer de te bekijken binaire log" msgid "Files" msgstr "Bestanden" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Getoonde queries afkappen" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Toon volledige Queries" @@ -9657,8 +9657,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Aanpassen beginpagina" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "per uur" @@ -9679,18 +9679,18 @@ msgstr "Opdrachten" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 "Deze MySQL-server draait inmiddels %s. Hij is gestart op %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9698,13 +9698,13 @@ msgstr "" "Deze MySQL server is ingesteld als master en slave in een " "replicatie proces." -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" "Deze MySQL server is ingesteld als master in een replicatie " "proces." -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" "Deze MySQL server is ingesteld als slave in een replicatie " @@ -9713,7 +9713,7 @@ msgstr "" # Er moet een betere vertaling voor "replication" zijn. "Nadoen"? # "Deze MySQL-server functioneert als %s in een replicatie proces." # weggehaald. -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9721,11 +9721,11 @@ msgstr "" "Kijk voor meer informatie over de replicatiestatus op deze server in de replicatiestatus sectie." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Replicatie status" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9733,47 +9733,47 @@ msgstr "" "Op drukke servers kunnen de byte-tellers over hun maximum heengaan. Hierdoor " "kunnen de gerapporteerde statistieken afwijken." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Ontvangen" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Verzonden" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Max. gelijktijdige verbindingen" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Mislukte pogingen" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Afgehaakte" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Commando" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Er kan geen verbinding worden gemaakt met de server" -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -9784,18 +9784,18 @@ msgstr "" "hebben gemaakt van een tijdelijkbestand om opdrachten uit de transactie op " "te slaan." -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" "Het aantal transactie dat gebruik maakte van het tijdelijke binaire log " "cache." -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9807,11 +9807,11 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Het aantal tijdelijke bestanden dat door MySQL werd aangemaakt." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9819,7 +9819,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:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9827,7 +9827,7 @@ msgstr "" "Het aantal met INSERT DELAYED opgeslagen rijen waarbij er een fout optrad " "(mogelijk een reeds bestaande sleutel)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9836,23 +9836,23 @@ msgstr "" "afzonderlijke tabel waarop INSERT DELAYED wordt toegepast krijgt een eigen " "thread." -#: server_status.php:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Het aantal met INSERT DELAYED opgeslagen rijen." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Het aantal uitgevoerde FLUSH opdrachten." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Het aantal interne COMMIT opdrachten." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9862,7 +9862,7 @@ msgstr "" "met een bepaalde naam. Dit wordt discovery genoemd. Handler_discover geeft " "aan hoeveel tabellen met discovery werden opgezocht." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9872,7 +9872,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:1204 +#: server_status.php:1205 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." @@ -9881,7 +9881,7 @@ msgstr "" "hoog is dit een indicatie dat er goed gebruik wordt gemaakt van de aanwezige " "indexen." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9891,7 +9891,7 @@ msgstr "" "wordt verhoogd wanneer u een index kolom raadpleegt met een bereik beperking " "of bij het doen van een index scan." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9899,7 +9899,7 @@ msgstr "" "Het aantal leesopdrachten voor de voorgaande rij in de sleutel volgorde. Dit " "wordt hoofdzakelijk gebruikt voor het optimaliseren van ORDER BY ... DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9912,7 +9912,7 @@ msgstr "" "gehele tabel moet scannen of er worden joins toegepast die niet goed " "gebruikmaken van sleutels." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9925,35 +9925,35 @@ msgstr "" "zijn voorzien of dat de toegepaste queries hier niet optimaal gebruik van " "maken." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Het aantal interne ROLLBACK opdrachten." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Het aantal update opdrachten voor een tabel rij." -#: server_status.php:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Het aantal pages dat data bevat (dirty en clean)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Het aantal pages dat momenteel dirty is." -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Het aantal buffer pool pages dat is geschoond." -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Het aantal vrije pages." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9963,7 +9963,7 @@ msgstr "" "momenteel wordt gelezen of geschreven, of die om een andere reden niet " "geschoond of verwijderd kunnen worden." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9975,11 +9975,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Totale formaat van de buffer pool, in pages." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9988,7 +9988,7 @@ msgstr "" "gebeurd wanneer een query een groot deel van een tabel laat scannen, maar in " "willekeurige volgorde." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9996,11 +9996,11 @@ msgstr "" "Het aantal sequentiele read-aheads dat door InnoDB werd geïnitieerd. Dit " "gebeurd wanneer er een volledige tabelscan wordt uitgevoerd." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Het aantal logische read requests dat door InnoDB werd uitgevoerd." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10008,7 +10008,7 @@ msgstr "" "Het aantal logische lees operaties dat InnoDB niet kon doen vanuit de buffer " "pool maar waarvoor een extra page ingeladen moest worden." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -10022,86 +10022,86 @@ msgstr "" "geschoond. Deze teller houd bij hoe vaak dit voorkomt. Indien het buffer " "pool formaat goed is ingesteld hoort deze waarde laag te zijn." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Het aantal schrijf operaties uitgevoerd op de InnoDB buffer pool." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Het aantal fsync() operaties." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Het aantal momenteel openstaande fsync() operaties." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Het aantal momenteel openstaande lees operaties." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Het aantal momenteel openstaande schrijf operaties." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "De hoeveelheid gelezen data, in bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Het totale aantal data lees operaties." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Het totale aantal data schrijf operaties." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "De hoeveelheid geschreven data, in bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "Het aantal uitgevoerde doublewrite operaties." -#: server_status.php:1235 +#: server_status.php:1236 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 log buffer." -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Het aantal log schrijf opdrachten." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Het aantal fysieke schrijf operaties op het log bestand." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Het aantal fsync() schrijf operaties uitgevoerd op het log bestand." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Het aantal momenteel openstaande fsync operaties op het logbestand." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Het aantal momenteel openstaande schrijf operaties op het logbestand." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Het aantal bytes dat naar het logbestand werd geschreven." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Het aantal pages dat werd aangemaakt." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10110,54 +10110,54 @@ msgstr "" "Veel waarden worden geteld in pages. Een vaste page grootte maakt het " "eenvoudig deze te converteren naar bytes." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Het aantal gelezen pages." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Het aantal geschreven pages." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Het aantal gelockte rijen waar momenteel op wordt gewacht." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Het aantal rijen dat werd verwijderd uit InnoDB tabellen." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Het aantal rijen dat werd ingevoegd in InnoDB tabellen." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Het aantal rijen dat werd gelezen uit InnoDB tabellen." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Het aantal rijen dat werd bijgewerkt in InnoDB tabellen." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10166,13 +10166,13 @@ msgstr "" "niet naar disk zijn geschreven. Dit stond voorheen bekend als " "Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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 " @@ -10181,11 +10181,11 @@ msgstr "" "Het aantal gebruikte blokken in het sleutelcache. Dit is de maximaal " "behaalde waarde sinds het starten van de server." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10195,15 +10195,15 @@ 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "Het aantal schrijf opdrachten voor een sleutelblok naar het cache." -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "Het aantal fysieke schrijf opdrachten voor een sleutelblok naar disk." -#: server_status.php:1262 +#: server_status.php:1263 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 " @@ -10214,19 +10214,19 @@ msgstr "" "verschillende query plans voor dezelfde query. De standaardwaarde 0 betekend " "dat er nog geen query is gecompiled." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Het aantal rijen dat klaar staan om te worden geschreven in INSERT DELAYED " "wachtrijen." -#: server_status.php:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10234,39 +10234,39 @@ msgstr "" "Het aantal tabellen dat werd geopend. Indien hoog, is mogelijk de table " "cache waarde te laag." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Het totaal aantal geopende bestanden." -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Het aantal open streams (hoofdzakelijk gebruikt voor het schrijven van log)." -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Het totaal aantal open tabellen." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "De hoeveelheid vrij geheugen voor het query cache." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Het aantal cache hits." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Het aantal queries dat aan het cache werd toegevoegd." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10279,7 +10279,7 @@ msgstr "" "recent gebruikt (least recently used, LRU) strategie om te bepalen welke " "queries worden verwijderd." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10287,19 +10287,19 @@ msgstr "" "Het aantal niet gecachte queries (niet cachebaar, danwel niet gecached " "vanwege de query_cache_type instelling)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Het aantal queries dat in het cache staat." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Het totaal aantal blokken in het query cache." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "De status van failsafe replicatie (nog niet geïmplementeerd)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10307,13 +10307,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10322,7 +10322,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:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10330,17 +10330,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Het aantal momenteel openstaande tijdelijke tabellen voor de slave SQL " "threas." -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10348,13 +10348,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:1285 +#: server_status.php:1286 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 master server." -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10362,14 +10362,14 @@ msgstr "" "Het aantal threads waarvoor het opstarten langer dan slow_launch_time " "seconden duurde." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10379,24 +10379,24 @@ msgstr "" "uitvoeren. Indien deze waarde hoog is, is het een optie om de systeem " "variabele sort_buffer_size te vergroten." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Het aantal sorteringen dat werd uitgevoerd met een bereikbeperking." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Het aantal gesorteerde rijen." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10408,7 +10408,7 @@ msgstr "" "problemen, kunt u het beste eerst uw queries optimalizeren. Daarna kunt u " "nog kijken naar het splitsen van tabellen en het gebruik van replicatie." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10418,11 +10418,11 @@ msgstr "" "berekend met Threads_created/Connections. Indien deze waarde rood staat " "aangegeven is het aan te raden om thread_cache_size te vergroten." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Het aantal momenteel openstaande verbindingen." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10434,72 +10434,72 @@ msgstr "" "verhogen. (Dit geeft echter in de meeste gevallen, bij gebruik van een goede " "thead implementatie, geen noemenswaardige prestatie verbetering.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Het aantal threads dat actief bezig is." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" msgstr "Tekstveld regels" -#: server_status.php:1445 +#: server_status.php:1446 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Inleiding" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add prefix" msgid "Add chart" msgstr "Voeg voorvoegsel toe" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Vernieuw" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "Textarea kolommen" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Fouten beheer:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Herstel standaard waarde" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy #| msgid "Introduction" msgid "Monitor Instructions" msgstr "Inleiding" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10508,7 +10508,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10516,11 +10516,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10528,7 +10528,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10536,11 +10536,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11132,12 +11132,12 @@ msgstr "Toont SQL-query" msgid "Validated SQL" msgstr "Gevalideerde SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemen met de indexen van de tabel `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Label" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index a451105ee7..ed2f0979a8 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -25,10 +25,10 @@ msgstr "" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "" @@ -40,8 +40,8 @@ msgid "" msgstr "" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "" @@ -49,25 +49,25 @@ msgstr "" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -127,7 +127,7 @@ msgstr "" msgid "Database comment: " msgstr "" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -136,8 +136,8 @@ msgstr "" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -149,11 +149,11 @@ msgstr "" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -164,8 +164,8 @@ msgstr "" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -175,8 +175,8 @@ msgstr "" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -185,8 +185,8 @@ msgstr "" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "" @@ -195,8 +195,8 @@ msgstr "" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "" @@ -207,7 +207,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -228,7 +228,7 @@ msgstr "" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -357,7 +357,7 @@ msgstr "" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -381,21 +381,21 @@ msgstr "" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "" @@ -493,7 +493,7 @@ msgstr "" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "" @@ -527,7 +527,7 @@ msgstr[0] "" msgstr[1] "" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "" @@ -539,10 +539,10 @@ msgstr "" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -658,12 +658,12 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "" @@ -673,13 +673,13 @@ msgstr "" msgid "Print view" msgstr "" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -713,7 +713,7 @@ msgstr "" msgid "Copy table with prefix" msgstr "" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "" @@ -728,7 +728,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -748,7 +748,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "" @@ -849,14 +849,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, possible-php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -882,7 +882,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, possible-php-format msgid "Bookmark %s created" msgstr "" @@ -905,7 +905,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1019,9 +1019,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "" @@ -1044,13 +1044,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1080,7 +1080,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "" @@ -1103,7 +1103,7 @@ msgid "Query statistics" msgstr "" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1196,7 +1196,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "" @@ -1205,12 +1205,12 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "" @@ -1233,7 +1233,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "" @@ -1440,7 +1440,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "" @@ -1603,7 +1603,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2010,59 +2010,59 @@ msgstr "" msgid "Second" msgstr "" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2090,7 +2090,7 @@ msgid "Cardinality" msgstr "" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "" @@ -2111,14 +2111,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2214,16 +2214,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, possible-php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2237,12 +2237,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, possible-php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2251,7 +2251,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, possible-php-format msgid "Welcome to %s" msgstr "" @@ -2271,56 +2271,56 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, possible-php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "" @@ -2351,39 +2351,39 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, possible-php-format msgid "Could not open file: %s" msgstr "" @@ -2518,7 +2518,7 @@ msgid "Documentation" msgstr "" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "" @@ -2528,7 +2528,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2577,7 +2577,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2668,7 +2668,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2688,8 +2688,8 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" @@ -2700,25 +2700,25 @@ msgstr "" msgid "Operations" msgstr "" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, possible-php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -2883,7 +2883,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "" @@ -5017,8 +5017,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5309,7 +5309,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "" @@ -5369,7 +5369,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "" @@ -5895,7 +5895,7 @@ msgstr "" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "" @@ -6098,7 +6098,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6192,7 +6192,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "" @@ -6544,7 +6544,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "" @@ -6579,14 +6579,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "" @@ -6646,7 +6646,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, possible-php-format @@ -6681,14 +6681,14 @@ msgstr "" msgid "Edit event" msgstr "" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -6701,7 +6701,7 @@ msgstr "" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, possible-php-format msgid "Change to %s" msgstr "" @@ -6724,7 +6724,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "" @@ -6733,12 +6733,12 @@ msgstr "" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -6784,7 +6784,7 @@ msgid "Returns" msgstr "" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "" @@ -6800,7 +6800,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, possible-php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -6819,109 +6819,109 @@ msgstr "" msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, possible-php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, possible-php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, possible-php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "" @@ -7048,7 +7048,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, possible-php-format @@ -7057,7 +7057,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, possible-php-format @@ -7065,9 +7065,9 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, possible-php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -7080,121 +7080,121 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, possible-php-format msgid "Unknown language: %1$s." msgstr "" @@ -7267,11 +7267,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -7627,7 +7627,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "" @@ -7807,7 +7807,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -7876,39 +7876,39 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8015,12 +8015,12 @@ msgstr "" msgid "All" msgstr "" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, possible-php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "" @@ -8032,13 +8032,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "" @@ -8818,8 +8818,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "" @@ -8840,101 +8840,101 @@ msgstr "" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, possible-php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, possible-php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -8942,78 +8942,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9021,7 +9021,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9029,42 +9029,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9072,33 +9072,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9107,227 +9107,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9335,99 +9335,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9435,18 +9435,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9454,57 +9454,57 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "" -#: server_status.php:1467 +#: server_status.php:1468 msgid "Chart columns" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -9513,7 +9513,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -9521,11 +9521,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -9533,7 +9533,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -9541,11 +9541,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10054,12 +10054,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:890 +#: sql.php:918 #, possible-php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "" diff --git a/po/pl.po b/po/pl.po index fecd61822e..e95b345347 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: polish \n" @@ -22,10 +22,10 @@ msgstr "Pokaż wszystko" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Numer strony:" @@ -40,8 +40,8 @@ msgstr "" "bezpieczeństwa, blokuje aktualizacje pomiędzy oknami" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Szukaj" @@ -49,25 +49,25 @@ msgstr "Szukaj" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "Nazwa klucza" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Opis" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "Użyj tej wartości" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Nie skonfigurowano żadnego serwera blob" @@ -129,7 +129,7 @@ msgstr "Baza danych %1$s została utworzona." msgid "Database comment: " msgstr "Komentarz bazy danych: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "Komentarze tabeli" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -151,11 +151,11 @@ msgstr "Kolumna" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -166,8 +166,8 @@ msgstr "Typ" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -177,8 +177,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -187,8 +187,8 @@ msgstr "Domyślnie" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Łącze" @@ -197,8 +197,8 @@ msgstr "Łącze" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Komentarze" @@ -209,7 +209,7 @@ msgstr "Komentarze" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -230,7 +230,7 @@ msgstr "Nie" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -364,7 +364,7 @@ msgstr "Edytuj lub eksportuj schemat relacji" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -388,21 +388,21 @@ msgstr "w użyciu" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Utworzenie" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Ostatnia aktualizacja" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Ostatnie sprawdzenie" @@ -504,7 +504,7 @@ msgstr "Wykonaj zapytania" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Brak dostępu" @@ -539,7 +539,7 @@ msgstr[1] "%s trafienia wewnątrz tabeli %s" msgstr[2] "%s trafień wewnątrz tabeli %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Przeglądaj" @@ -551,10 +551,10 @@ msgstr "Usuń wszystkie trafienia dla tabeli %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -677,12 +677,12 @@ msgstr "Usuń zaznaczenie" msgid "Check tables having overhead" msgstr "Zaznacz nieoptymalne" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksport" @@ -692,13 +692,13 @@ msgstr "Eksport" msgid "Print view" msgstr "Widok do druku" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Wyczyść" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -734,7 +734,7 @@ msgstr "Zmień prefiks tabeli" msgid "Copy table with prefix" msgstr "Zamiana danych tabeli z plikiem" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Słownik danych" @@ -749,7 +749,7 @@ msgstr "Monitorowane tabele" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -769,7 +769,7 @@ msgstr "Zaktualizowane" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -874,14 +874,14 @@ msgstr "" "Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego " "limitu, proszę zapoznać się z %sdokumenacją%s." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Nie można odczytać pliku" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -912,7 +912,7 @@ msgstr "Zapamiętane zapytanie SQL zostało usunięte." msgid "Showing bookmark" msgstr "Pokaz zapamiętanego zapytania" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Zapytanie %s zostało zapamiętane" @@ -940,7 +940,7 @@ msgstr "" "importu bez zwiększenia limitów czasowych PHP." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1066,9 +1066,9 @@ msgstr "Zamknij" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Edytuj" @@ -1095,13 +1095,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Sumarycznie" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1133,7 +1133,7 @@ msgstr "Wybór serwera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Procesy" @@ -1160,7 +1160,7 @@ msgstr "Statystyki zapytań" #: js/messages.php:93 #, fuzzy #| msgid "Cannot load or save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Nie udało się załadować lub zapisać konfiguracji" #: js/messages.php:94 @@ -1269,7 +1269,7 @@ msgstr "" msgid "Bytes received" msgstr "Otrzymane" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Połączenia" @@ -1280,12 +1280,12 @@ msgstr "Połączenia" msgid "Questions" msgstr "Propozycje:" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Ruch" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1314,7 +1314,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Brak" @@ -1544,7 +1544,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" @@ -1735,7 +1735,7 @@ msgid "Query execution time" msgstr "Maksymalny czas wykonania" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2183,27 +2183,27 @@ msgstr "Minuta" msgid "Second" msgstr "Sekunda" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Rozmiar pisma" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Nieznany błąd przesyłania pliku." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Rozmiar wrzucanego pliku jest większy niż wartość dyrektywy " "upload_max_filesize w php.ini." -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2211,27 +2211,27 @@ msgstr "" "Rozmiar wrzucanego pliku jest więcszy niż wartość dyrektywy MAX_FILE_SIZE " "określonej w formularzu HTML." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Plik został przesłany jedynie częściowo." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Nie znaleziono katalogu tymczasowego." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Nie udało się zapisać pliku na dysk." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Nieznany błąd przesyłania pliku." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2239,11 +2239,11 @@ msgstr "" "Błąd podczas przenoszenia przesłanego pliku. Zobacz [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2271,7 +2271,7 @@ msgid "Cardinality" msgstr "Moc" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Komentarz" @@ -2294,14 +2294,14 @@ msgstr "" "Indeksy %1$s i %2$s wyglądają na identyczne i jeden z nich mógłby zostać " "usunięty." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Bazy danych" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2410,17 +2410,17 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" "Nie znaleziono prawidłowej ścieżki do obrazka dla motywu graficznego %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Podgląd niedostępny." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "użyj" @@ -2434,12 +2434,12 @@ msgstr "Nie znaleziono domyślnego motywu graficznego %s!" msgid "Theme %s not found!" msgstr "Nie znaleziono motywu graficznego %s!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Nie znaleziono ścieżki do motywu %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2448,7 +2448,7 @@ msgid "Cannot connect: invalid settings." msgstr "Nie udało się nawiązać połączenia: błędne ustawienia." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Witamy w %s" @@ -2474,57 +2474,57 @@ msgstr "" "pliku config.inc.php i upewnić się, że odpowiadają one informacjom danym " "przez administratora serwera MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Login" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Dokumentacja phpMyAdmina" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Można podać nawę hosta/adres IP i port oddzielone spacją." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Serwer" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Użytkownik:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Hasło:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Wybór serwera" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Odtąd musi być włączona obsługa ciasteczek." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Konfiguracja zabrania logowania bez hasła (zobacz AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Brak aktywności przez co najmniej %s sekund, proszę zalogować się jeszcze raz" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Nie udało się zalogować na serwer MySQL" @@ -2557,41 +2557,41 @@ msgstr "Prawidłowy klucz uwierzytelniający nie jest podłączony" msgid "Authenticating..." msgstr "Trwa uwierzytelnianie…" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "Błąd PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "Błąd połączenia z PBMS" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "Pobieranie Content-Type dla pola BLOB nie udało się" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Zobacz obraz" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Odegraj dźwięk" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Obejrzyj film" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Ściągnij plik" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Nie udało się otworzyć pliku: %s" @@ -2735,7 +2735,7 @@ msgid "Documentation" msgstr "Dokumentacja" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "Zapytanie SQL" @@ -2745,7 +2745,7 @@ msgstr "Zapytanie SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2798,7 +2798,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Mechanizmy" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profilowanie" @@ -2901,7 +2901,7 @@ msgid "Click to toggle" msgstr "Kliknij, aby zaznaczyć" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2921,8 +2921,8 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Dodaj" @@ -2933,26 +2933,26 @@ msgstr "Dodaj" msgid "Operations" msgstr "Operacje" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Wyszukaj w komputerze" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "katalog serwera WWW dla uploadu" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Nie podałeś plików do wgrania na serwer" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3128,7 +3128,7 @@ msgid "Allow users to customize this value" msgstr "Zezwól użytkownikom na zmianę tej wartości" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Resetuj" @@ -5522,8 +5522,8 @@ msgstr "Utwórz nową tabelę w bazie danych %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5895,7 +5895,7 @@ msgstr "Sortuj wg klucza" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Opcje" @@ -5961,7 +5961,7 @@ msgid "The row has been deleted" msgstr "Rekord został skasowany" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Unicestwij" @@ -6572,7 +6572,7 @@ msgstr "Dostępne typy MIME" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6794,7 +6794,7 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Wygenerowany przez" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero rekordów)." @@ -6900,7 +6900,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Nazwa tabeli" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Nazwy kolumn" @@ -7270,7 +7270,7 @@ msgstr "" "Zaloguj się ponownie do phpMyAdmin, żeby załadować zmieniony plik " "konfiguracyjny." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "brak opisu" @@ -7307,14 +7307,14 @@ msgid "Slave status" msgstr "Stan serwera podrzędnego" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Zmienna" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Wartość" @@ -7378,7 +7378,7 @@ msgstr "Generuj hasło" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7418,16 +7418,16 @@ msgstr "" msgid "Edit event" msgstr "Edytuj serwer" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Błąd przetwarzania wywołania" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7444,7 +7444,7 @@ msgstr "Typ zdarzenia" msgid "Event type" msgstr "Typ zdarzenia" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7474,7 +7474,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Koniec" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7487,12 +7487,12 @@ msgstr "Opis" msgid "On completion preserve" msgstr "Pełne dodania" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7540,7 +7540,7 @@ msgid "Returns" msgstr "Zwracany typ" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Czas" @@ -7556,7 +7556,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7578,103 +7578,103 @@ msgstr "Tabela %s została usunięta" msgid "Routine %1$s has been created." msgstr "Tabela %1$s została utworzona." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Tryb edycji" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Procedury i funkcje" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Bezpośrednie połączenia" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Długość/Wartości*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Dołącz indeks(y)" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Usuń bazę danych" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Zwracany typ" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Długość/Wartości*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcje tabeli" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Bezpieczeństwo" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7682,25 +7682,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Pozwól wykonywać procedury składowane." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Procedury i funkcje" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funkcja" @@ -7865,7 +7865,7 @@ msgstr "Nie podałeś plików do wgrania na serwer" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7875,7 +7875,7 @@ msgstr "Tabela \"%s\" nie istnieje!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7883,9 +7883,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Proszę skonfigurować współrzędne dla tabeli %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7901,115 +7901,115 @@ msgstr "Plik %s nie zawiera żadnego identyfikatora klucza" msgid "SCHEMA ERROR: " msgstr "Błąd SCHEMA:" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Schemat relacyjny" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Spis treści" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atrybuty" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Dodatkowo" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Utwórz nową stronę" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Numer strony:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Układ automatyczny" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Wewnętrzne relacje" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "KLUCZ OBCY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Proszę wybrać stronę do edycji" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Wybierz tabele" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Wybierz tabele" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Schemat relacyjny" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Pokaż siatkę" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Pokaż kolor" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Pokaż wymiary tabel" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Wyświetl wszystkie tabele z taką samą szerokością" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Pokaż tylko klucze" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Orientacja pozioma" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Orientacja pionowa" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Utworzenie" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Rozmiar papieru" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8017,17 +8017,17 @@ msgstr "" "Aktualna strona ma powiązania z tabelą, która już nie istnieje. Czy chcesz " "usunąć te powiązania?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "włącz / wyłącz scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Nieznany język: %1$s." @@ -8104,11 +8104,11 @@ msgstr "Wyczyść" msgid "Columns" msgstr "Nazwy kolumn" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Pamiętaj zapytanie SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Pozwól na dostęp wszystkim użytkownikom" @@ -8603,7 +8603,7 @@ msgstr "Wersja protokołu" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Użytkownik" @@ -8829,7 +8829,7 @@ msgstr "Wszystko małe/duże" msgid "Toggle small/big" msgstr "Przełącz małe/duże" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Importuj/eksportuj współrzędne schematu PDF" @@ -8913,50 +8913,50 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Tabela %1$s została utworzona." -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Błąd tworzenia strony" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "stron" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Import plików" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Eksport/import w skali" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Utwórz nowy indeksu" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nazwa użytkownika" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Eksport/import w skali" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "zalecana" @@ -9074,12 +9074,12 @@ msgstr "Import plików" msgid "All" msgstr "Wszystko" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabela %s nie została znaleziona lub nie jest ustawiona w %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9093,13 +9093,13 @@ msgstr "Wybierz dziennik binarny do podglądu" msgid "Files" msgstr "Pliki" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Ucinaj wyświetlane zapytania" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Pokaż pełne zapytania" @@ -9956,8 +9956,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Personalizuj stronę startową" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "na godzinę" @@ -9978,18 +9978,18 @@ msgstr "Cecha" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 "Serwer MySQL działa przez %s. Początek pracy: %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9997,25 +9997,25 @@ msgstr "" "Ten serwer MySQL jest ustawiony jako master i slave w procesie " "replikacji." -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Stan replikacji" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10023,47 +10023,47 @@ msgstr "" "Na aktywnym serwerze liczniki bajtów mogą się przekręcić, więc statystyki " "jakich dostarcza serwer MySQL nie są wiarygodne." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Otrzymane" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Wysłane" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Maks. jednoczesnych połączeń" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Nieudane próby" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Przerwane" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Polecenie" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." msgstr "Nie można połączyć się z serwerem MySQL" -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -10073,18 +10073,18 @@ msgstr "" "binarnego, które przekroczyły wartość binlog_cache_size i do zapisania " "instrukcji transakcji został użyty plik tymczasowy." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -10096,11 +10096,11 @@ msgstr "" "zwiększenie wartości tmp_table_size spowoduje tworzenie tymczasowych tabel w " "pamięci, a nie na dysku." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Ile plików tymczasowych utworzył mysqld." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10108,7 +10108,7 @@ msgstr "" "Liczba tabel tymczasowych w pamięci, utworzonych automatycznie przez serwer " "podczas wykonywania instrukcji." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10116,7 +10116,7 @@ msgstr "" "Liczba rekordów zapisanych przy pomocy INSERT DELAYED, dla których wystąpił " "jakiś błąd (prawdopodobnie zdublowany klucz)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -10124,23 +10124,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Liczba rekordów zapisanych poprzez INSERT DELAYED." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Liczba wykonanych instrukcji FLUSH." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Liczba wewnętrznych instrukcji COMMIT." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Ile razy rekord został usunięty z tabeli." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -10150,7 +10150,7 @@ msgstr "" "informacje o tabeli o zadanej nazwie. Nazywamy to odkryciem (discovery). Handler_discover wskazuje, ile razy tabela została odkryta." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -10160,7 +10160,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:1204 +#: server_status.php:1205 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." @@ -10168,7 +10168,7 @@ msgstr "" "Liczba żądań odczytu rekordu na podstawie indeksu. Duża wartość to dobra " "oznaka tego, że zapytania i tabele są właściwie zindeksowane." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -10178,7 +10178,7 @@ msgstr "" "jest zwiększana przy odpytywaniu o zindeksowaną kolumnę na ograniczonym " "przedziale lub przy przeszukiwaniu indeksu." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10186,7 +10186,7 @@ msgstr "" "Liczba żądań odczytu poprzedniego rekordu w porządku indeksowym. Metoda " "używana głównie do optymalizacji ORDER BY … DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -10198,7 +10198,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:1208 +#: server_status.php:1209 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 " @@ -10210,35 +10210,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:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Liczba wewnętrznych instrukcji ROLLBACK." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Liczba żądań zmiany rekordu w tabeli." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Liczba żądań dodania rekordu do tabeli." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Liczba stron zawierających dane (brudnych lub czystych)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Liczba aktualnie brudnych stron." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Liczba wolnych stron." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -10248,7 +10248,7 @@ msgstr "" "odczytywane lub zapisywane lub takie, które nie mogą zostać wymiecione lub " "usunięte z jakiegoś innego powodu." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -10261,11 +10261,11 @@ msgstr "" "Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Łączny rozmiar puli bufora, w stronach." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10274,7 +10274,7 @@ msgstr "" "Występuje gdy zapytane przeszukiwałoby duże fragmenty tabeli, ale w dowolnej " "kolejności." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10282,11 +10282,11 @@ msgstr "" "Liczba sekwencyjnych odczytów z wyprzedzeniem zainicjowanych przez InnoDB. " "Występuje gdy InnoDB wykonuje sekwencyjne pełne przeszukiwanie tabeli." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Liczba żądań logicznych odczytów które wykonał InnoDB." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10294,7 +10294,7 @@ msgstr "" "Liczba logicznych odczytów, których InnoDB nie mógł zaspokoić pulą bufora i " "musiał wykonać odczyt pojedynczej strony." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -10308,51 +10308,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:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Liczba wykonanych zapisów do puli bufora InnoDB." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Liczba dotąd wykonanych operacji fsync()." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Aktualna liczba operacji fsync() w toku." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Aktualna liczba odczytów w toku." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Aktualna liczba zapisów w toku." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Ilość dotąd odczytanych danych, w bajtach." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Łączna liczba odczytów danych." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Łączna liczba zapisów danych." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Ilość dotąd zapisanych danych, w bajtach." -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "Liczba przeprowadzonych zapisów typu doublewrite." -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "Liczba stron zapisanych przy zapisie typu doublewrite." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -10360,35 +10360,35 @@ msgstr "" "Ile razy czekano, bo bufor dziennika był zbyt mały i przed wznowieniem pracy " "oczekiwano na jego opróżnienie." -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Liczba żądań zapisów do dziennika." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Liczba fizycznych zapisów do pliku dziennika." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Liczba synchronicznych zapisów do pliku dziennika." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Liczba wywołań fsync dla pliku dziennika w toku." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Liczba zapisów do pliku dziennika w toku." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Liczba bajtów zapisanych do pliku dziennika." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Liczba utworzonych stron." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10397,51 +10397,51 @@ msgstr "" "mierzonych w stronach; znajomość wielkości strony pozwala na ich łatwą " "konwersję na bajty." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Liczba odczytanych stron." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Liczba zapisanych stron." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Liczba blokad rekordów na które aktualnie się czeka." -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Średni czas uzyskania blokady rekordu, w milisekundach." -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Całkowity czas zużyty na uzyskiwanie blokad rekordów, w milisekundach." -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Maksymalny czas uzyskania blokady rekordu, w milisekundach." -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "Ile razy czekano na blokadę rekordu." -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Liczba rekordów usuniętych z tabel InnoDB." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Liczba rekordów dodanych do tabel InnoDB." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Liczba rekordów odczytanych z tabel InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Liczba rekordów zmienionych w tabelach InnoDB." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10450,7 +10450,7 @@ msgstr "" "jeszcze nie wymiecione na dysk. Wcześniej zmienna miała nazwę " "Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10458,7 +10458,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:1257 +#: server_status.php:1258 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 " @@ -10467,11 +10467,11 @@ 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:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10482,15 +10482,15 @@ msgstr "" "Współczynnik chybień bufora podręcznego można policzyć ze wzoru Key_reads/" "Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10501,17 +10501,17 @@ msgstr "" "wykonania tego samego zapytania. Domyślna wartość 0 oznacza, że jeszcze " "żadne zapytanie nie zostało skompilowane." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Liczba rekordów oczekujących na zapisanie w kolejkach INSERT DELAYED." -#: server_status.php:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10519,39 +10519,39 @@ 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Liczba otwartych plików." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Liczba otwartych tabel." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Ilość dostępnej pamięci w podręcznym buforze zapytań." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Liczba trafień pamięci podręcznej." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Liczba zapytań dodanych do pamięci podręcznej." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10564,7 +10564,7 @@ msgstr "" "bufora podręcznego używana jest strategia \"najpierw najdłużej nieużywany" "\" (least recently used - LRU)." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10572,19 +10572,19 @@ msgstr "" "Liczba niezbuforowanych zapytań (nie dających się zbuforować lub " "niezbuforowanych z powodu ustawienia query_cache_type)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Liczba zapytań zarejestrowanych w buforze podręcznym." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Całkowita liczba bloków w buforze podręcznym zapytań." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stan replikacji zabezpieczającej (jeszcze nie zaimplementowane)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10592,13 +10592,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10607,7 +10607,7 @@ msgstr "" "dla każdego rekordu. (Wartość różna od 0 sugeruje staranne przyjrzenie się " "indeksom tabel.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10615,16 +10615,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10632,26 +10632,26 @@ msgstr "" "Ile raz łącznie (od startu) podrzędny wątek SQL replikacji ponawiał " "transakcje." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 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:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10661,23 +10661,23 @@ msgstr "" "dużej wartości, warto wziąć pod uwagę zwiększenie wartości zmiennej " "systemowej sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Liczba sortowań wykonanych przy użyciu zakresów." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Liczba posortowanych rekordów." -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "Liczba sortowań wykonanych poprzez przeszukiwanie tabeli." -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "Ile razy blokada tabeli została uzyskana natychmiastowo." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10689,7 +10689,7 @@ msgstr "" "się najpierw zoptymalizować zapytania, a następnie podzielić tabelę (tabele) " "lub użyć replikacji." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10699,11 +10699,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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Liczba aktualnie otwartych połączeń." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10715,72 +10715,72 @@ msgstr "" "(W przypadku dobrej implementacja wątków zwykle nie daje to zauważalnego " "polepszenia wydajności.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Liczba nieuśpionych wątków." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Start" -#: server_status.php:1445 +#: server_status.php:1446 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Wprowadzenie" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Dołącz indeks(y)" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Odśwież" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/usuń pola" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Błąd zarządzania:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Przywróć wartość domyślną" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy #| msgid "Introduction" msgid "Monitor Instructions" msgstr "Wprowadzenie" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10789,7 +10789,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10797,11 +10797,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10809,7 +10809,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10817,11 +10817,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11468,12 +11468,12 @@ msgstr "Wyświetlane jest zapytanie SQL." msgid "Validated SQL" msgstr "Sprawdź poprawność SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemy z indeksami tabeli `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Nazwa" diff --git a/po/pt.po b/po/pt.po index 9a3d0badb7..ac08571a18 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-13 19:21+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" @@ -21,10 +21,10 @@ msgstr "Mostrar tudo" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Número de página:" @@ -40,8 +40,8 @@ msgstr "" "janelas." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Pesquisar" @@ -49,25 +49,25 @@ msgstr "Pesquisar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "Nome do Índice" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Descrição" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "Usar este valor" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Nenhum servidor de blob streaming configurado!" @@ -129,7 +129,7 @@ msgstr "A base de dados %s foi criada." msgid "Database comment: " msgstr "Comentário da Base de Dados: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "Comentários da tabela" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -151,11 +151,11 @@ msgstr "Coluna" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -166,8 +166,8 @@ msgstr "Tipo" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -177,8 +177,8 @@ msgstr "Nulo" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -187,8 +187,8 @@ msgstr "Omissão" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Links para" @@ -197,8 +197,8 @@ msgstr "Links para" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Comentários" @@ -209,7 +209,7 @@ msgstr "Comentários" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -230,7 +230,7 @@ msgstr "Não" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -361,7 +361,7 @@ msgstr "Editar ou exporta o esquema relacional (schema)" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -385,21 +385,21 @@ msgstr "em uso" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Criação" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Última actualização" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Última Verificação" @@ -498,7 +498,7 @@ msgstr "Executar Comando SQL" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Acesso Negado" @@ -532,7 +532,7 @@ msgstr[0] "%s resultado na tabela %s" msgstr[1] "%s resultados na tabela %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Visualizar" @@ -544,10 +544,10 @@ msgstr "Apagar os semelhantes para a %s tabela?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -668,12 +668,12 @@ msgstr "Nenhum" msgid "Check tables having overhead" msgstr "Verificar tabelas com overhead" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportar" @@ -683,13 +683,13 @@ msgstr "Exportar" msgid "Print view" msgstr "Vista de impressão" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Limpa" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -725,7 +725,7 @@ msgstr "Substituir prefixo da tabela" msgid "Copy table with prefix" msgstr "Substituir os dados da tabela pelos do arquivo" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Dicionario de dados" @@ -740,7 +740,7 @@ msgstr "Tabelas em tracking" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -760,7 +760,7 @@ msgstr "Actualizado" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Estado" @@ -866,14 +866,14 @@ msgstr "" "favor reveja a %sdocumentação%s para encontrar formas de contornar este " "limite." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Não foi possível ler o ficheiro" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -908,7 +908,7 @@ msgstr "Marcador apagado com sucesso." msgid "Showing bookmark" msgstr "Mostrando Marcador" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" @@ -936,7 +936,7 @@ msgstr "" "incremente os tempos de limite de php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1059,9 +1059,9 @@ msgstr "Fechar" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Edita" @@ -1087,13 +1087,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1125,7 +1125,7 @@ msgstr "Escolha do Servidor" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Processos" @@ -1151,7 +1151,7 @@ msgid "Query statistics" msgstr "Estatísticas dos registos" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1253,7 +1253,7 @@ msgstr "" msgid "Bytes received" msgstr "Recebido" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Ligações" @@ -1264,12 +1264,12 @@ msgstr "Ligações" msgid "Questions" msgstr "Versões" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Tráfego" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1296,7 +1296,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nenhum" @@ -1522,7 +1522,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1704,7 +1704,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2182,59 +2182,59 @@ msgstr "em uso" msgid "Second" msgstr "por segundo" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2262,7 +2262,7 @@ msgid "Cardinality" msgstr "Quantidade" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2284,14 +2284,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Base de Dados" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2392,16 +2392,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2415,12 +2415,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2429,7 +2429,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Bemvindo ao %s" @@ -2455,56 +2455,56 @@ msgstr "" "inc.php e assegure-se que correspondem à informação fornecida pelo " "administrador do MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Entrada" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Documentação do phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Servidor" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Utilizador :" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Palavra-passe :" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Escolha do Servidor" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "O mecanismo de \"Cookies\" tem de estar ligado a partir deste ponto." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Não é possível fazer login no servidor MySQL" @@ -2535,39 +2535,39 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2706,7 +2706,7 @@ msgid "Documentation" msgstr "Documentação" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "Comando SQL" @@ -2716,7 +2716,7 @@ msgstr "Comando SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2765,7 +2765,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2866,7 +2866,7 @@ msgid "Click to toggle" msgstr "Clique para seleccionar" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2886,8 +2886,8 @@ msgstr "Estrutura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insere" @@ -2898,26 +2898,26 @@ msgstr "Insere" msgid "Operations" msgstr "Operações" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Directoria no servidor web para fazer upload" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 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/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3094,7 +3094,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Limpa" @@ -5341,8 +5341,8 @@ msgstr "Criar nova tabela na base de dados %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5680,7 +5680,7 @@ msgstr "Ordenar por chave" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5748,7 +5748,7 @@ msgid "The row has been deleted" msgstr "Registo eliminado" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Termina" @@ -6304,7 +6304,7 @@ msgstr "MIME-types disponíveis" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Máquina" @@ -6519,7 +6519,7 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Gerado por" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." @@ -6618,7 +6618,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Nome dos Campos" @@ -6981,7 +6981,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "sem Descrição" @@ -7016,14 +7016,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variável" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valor" @@ -7084,7 +7084,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7121,16 +7121,16 @@ msgstr "" msgid "Edit event" msgstr "Enviado" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "Erro a Processar Pedido" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7145,7 +7145,7 @@ msgstr "Tipo de Exportação" msgid "Event type" msgstr "Tipo de Exportação" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7172,7 +7172,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Fim" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7185,12 +7185,12 @@ msgstr "Descrição" msgid "On completion preserve" msgstr "Instrucções de inserção completas" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7238,7 +7238,7 @@ msgid "Returns" msgstr "Opções da tabela" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Tempo" @@ -7255,7 +7255,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7275,121 +7275,121 @@ msgstr "A tabela %s foi eliminada" msgid "Routine %1$s has been created." msgstr "A tabela %s foi eliminada" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Nome dos Campos" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Criação" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Tamanho/Valores*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Remover a Base de Dados" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Tamanho/Valores*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opções da tabela" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Tipo de Query" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format msgid "Execution results of routine %s" msgstr "Permite criar novas tabelas." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funções" @@ -7541,7 +7541,7 @@ msgstr "Tabelas em tracking" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7551,7 +7551,7 @@ msgstr "A tabela \"%s\" não existe!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7559,9 +7559,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Configure as cordenadas para a tabela %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7575,131 +7575,131 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Esquema relacional" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Índice" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atributos" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Criar uma Página nova" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Página número:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Layout automático" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Relações internas" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Escolha uma Página para editar" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Seleccionar Tabelas" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Seleccionar Tabelas" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Esquema relacional" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Mostrar grelha" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Mostrar côr" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Mostrar dimensão das tabelas" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "mostrar todas as tabelas com a mesma altura?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Paisagem/ao baixo" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Retrato/Ao alto" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Criação" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Tamanho do papel" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7779,11 +7779,11 @@ msgstr "" msgid "Columns" msgstr "Nome dos Campos" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Marcar este comando SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Deixar todos os utilizadores acederem a este marcador" @@ -8192,7 +8192,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Utilizador" @@ -8393,7 +8393,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8477,48 +8477,48 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "A tabela %s foi eliminada" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Utilização" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importar" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Criar um novo índice" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nome do Utilizador" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8627,12 +8627,12 @@ msgstr "Importar" msgid "All" msgstr "Todas" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "A Tabela %s não foi encontrada ou não foi definida em %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8647,13 +8647,13 @@ msgstr "" msgid "Files" msgstr "Qtd Campos" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Truncar os Queries mostrados" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Mostrar queries completos" @@ -9485,8 +9485,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "por hora" @@ -9507,104 +9507,104 @@ msgstr "Itens" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 "Este servidor de mySQL estar a correr há %s. Foi iniciado em/a %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 #, fuzzy msgid "Replication status" msgstr "Relações" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Recebido" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Enviado" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Tentativas falhadas" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Abortado" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Comando" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9612,78 +9612,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9691,7 +9691,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9699,42 +9699,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9742,33 +9742,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9777,227 +9777,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10005,99 +10005,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10105,18 +10105,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10124,62 +10124,62 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy msgid "Start Monitor" msgstr "Estado" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy msgid "Add chart" msgstr "Adiciona novo campo" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Gerado por" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adicionar/Remover Campos" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10188,7 +10188,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10196,11 +10196,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10208,7 +10208,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10216,11 +10216,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10756,12 +10756,12 @@ msgstr "Mostrar queries completos" msgid "Validated SQL" msgstr "Validar SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Etiqueta" diff --git a/po/pt_BR.po b/po/pt_BR.po index 35816aa053..5ca4d959b5 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-07-30 02:20+0200\n" "Last-Translator: Julio Cesar Zuppa \n" "Language-Team: brazilian_portuguese \n" @@ -21,10 +21,10 @@ msgstr "Mostrar todos" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Numero da página:" @@ -39,8 +39,8 @@ msgstr "" "configuradas para bloquear a comunicação entre janelas." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Procurar" @@ -48,25 +48,25 @@ msgstr "Procurar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Nome chave" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Descrição" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Usar este valor" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Servidor de streaming de blob não encontrado!" @@ -128,7 +128,7 @@ msgstr "Banco de dados %1$s foi criado." msgid "Database comment: " msgstr "Comentário do Banco de Dados: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Comentários da tabela" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Coluna" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Tipo" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Nulo" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Padrão" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Links para" @@ -196,8 +196,8 @@ msgstr "Links para" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Comentários" @@ -208,7 +208,7 @@ msgstr "Comentários" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Não" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Editar ou exportar esquema relacional" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "em uso" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Criação" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Última atualização" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Última verificação" @@ -497,7 +497,7 @@ msgstr "Enviar consulta SQL" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Acesso negado" @@ -531,7 +531,7 @@ msgstr[0] "%s resultado dentro da tabela %s" msgstr[1] "%s resultados dentro da tabela %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Visualizar" @@ -543,10 +543,10 @@ msgstr "Excluir correspondentes para a tabela %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -664,12 +664,12 @@ msgstr "Desmarcar todos" msgid "Check tables having overhead" msgstr "Verificar sobre-carga" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportar" @@ -679,13 +679,13 @@ msgstr "Exportar" msgid "Print view" msgstr "Visualização para impressão" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Limpar" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -719,7 +719,7 @@ msgstr "Substituir prefixo da tabela" msgid "Copy table with prefix" msgstr "Copiar tabela com o prefixo" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Dicionário de dados" @@ -734,7 +734,7 @@ msgstr "Tabelas rastreadas" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -754,7 +754,7 @@ msgstr "Atualizado" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -859,14 +859,14 @@ msgstr "" "Você provavelmente tentou carregar um arquivo muito grande. Veja referências " "na %sdocumentation%s para burlar esses limites." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "O arquivo não pode ser lido" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -899,7 +899,7 @@ msgstr "O marcador foi removido." msgid "Showing bookmark" msgstr "Exibindo marcadores" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" @@ -927,7 +927,7 @@ msgstr "" "aumente o tempo limite do PHP." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1044,9 +1044,9 @@ msgstr "Fechar" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Editar" @@ -1069,13 +1069,13 @@ msgstr "Dado(s) estático(s)" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Outro" @@ -1105,7 +1105,7 @@ msgstr "Tráfego do Servidor (em KiB)" msgid "Connections since last refresh" msgstr "Conexões desde a última atualização" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Processos" @@ -1130,7 +1130,7 @@ msgstr "Estatísticas de Consultas" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Falhou ao ler o arquivo de configuração" #: js/messages.php:94 @@ -1245,7 +1245,7 @@ msgstr "" msgid "Bytes received" msgstr "Recebido" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Conexões" @@ -1254,12 +1254,12 @@ msgstr "Conexões" msgid "Questions" msgstr "Requisições" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Tráfego" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Configurações" @@ -1290,7 +1290,7 @@ msgstr "Por favor adicione no mínimo uma variável à série" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nenhum" @@ -1518,7 +1518,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importar" @@ -1692,7 +1692,7 @@ msgid "Query execution time" msgstr "Tempo máximo de execução" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2133,27 +2133,27 @@ msgstr "Minuto" msgid "Second" msgstr "Segundo" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Tamanho da fonte" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Erro desconhecido no carregamento do arquivo." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2161,37 +2161,37 @@ msgstr "" "O arquivo carregado excede o tamanho definido na diretriz MAX_FILE_SIZE do " "formulário HTM." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Carregamento do arquivo foi apenas parcial." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Pasta temporária não encontrada." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Falhou ao salvar arquivo no disco." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Carregamento do arquivo parado pela extenção." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Erro desconhecido no carregamento do arquivo." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Erro ao mover o arquivo carregado, veja FAQ 1.11" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2219,7 +2219,7 @@ msgid "Cardinality" msgstr "Cardinalidade" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Cometário" @@ -2242,14 +2242,14 @@ msgstr "" "A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido " "removida." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Banco de Dados" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2351,16 +2351,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Encontrado caminho inválido para imagens para o tema %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Nenhuma pré-visualização disponível." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "tome" @@ -2374,12 +2374,12 @@ msgstr "Tema padrão %s não encontrado!" msgid "Theme %s not found!" msgstr "Tema %s não encontrado!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Encontrado caminho inválido para o tema %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2388,7 +2388,7 @@ msgid "Cannot connect: invalid settings." msgstr "Não pode conectar: configurações inválidas." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Bem vindo ao %s" @@ -2414,43 +2414,43 @@ msgstr "" "certificar que correspondam com as informações fornecidas pelo administrador " "do servidor MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Autenticação" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Documentação do phpMyAdmin " -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Você pode digitar a url/IP e a porta separados por um espaço." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Servidor:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Usuário:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Senha:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Seleção do Servidor" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Cookies devem estar ativos após este ponto." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2458,14 +2458,14 @@ msgstr "" "Autenticação sem uma senha é proibida pela configuração (veja " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Sem atividade por %s segundos ou mais, faça o login novamente" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Não foi possível se logar no servidor MySQL" @@ -2496,41 +2496,41 @@ msgstr "Nenhuma chave de autenticação válida foi conectada" msgid "Authenticating..." msgstr "Autenticando..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "Erro PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "Falha na conexão PBMS:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "o PBMS falhou na obtenção de informações BLOB:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "a obtenção do Tipo de conteúdo do BLOB falhou" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Visualizar imagem" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Executar áudio" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Visualizar vídeo" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Baixar arquivo" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Não foi possível abrir o arquivo: %s" @@ -2670,7 +2670,7 @@ msgid "Documentation" msgstr "Documentação" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "consulta SQL" @@ -2680,7 +2680,7 @@ msgstr "consulta SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2729,7 +2729,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "na linha" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Perfil" @@ -2830,7 +2830,7 @@ msgid "Click to toggle" msgstr "Clique para alternar" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2850,8 +2850,8 @@ msgstr "Estrutura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserir" @@ -2862,26 +2862,26 @@ msgstr "Inserir" msgid "Operations" msgstr "Operações" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir do diretório de upload do servidor %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "" "O diretório que você especificou para subir arquivos não foi encontrado" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Não existem arquivos para fazer upload" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Executar" @@ -3047,7 +3047,7 @@ msgid "Allow users to customize this value" msgstr "Permitir a todos os usuários alterar esse valor" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Restaurar" @@ -5283,8 +5283,8 @@ msgstr "Criar nova tabela no Banco de Dados %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5619,7 +5619,7 @@ msgstr "Ordenar pela chave" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Opções" @@ -5686,7 +5686,7 @@ msgid "The row has been deleted" msgstr "Registro eliminado" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Matar" @@ -6256,7 +6256,7 @@ msgstr "MIME-type disponíveis" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Servidor" @@ -6471,7 +6471,7 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Gerado por" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou um conjunto vazio (ex. zero registros)." @@ -6572,7 +6572,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Nome da Tabela" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Nome das colunas" @@ -6935,7 +6935,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "sem Descrição" @@ -6972,14 +6972,14 @@ msgid "Slave status" msgstr "Exibir status dos escravos" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variáveis" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valor" @@ -7039,7 +7039,7 @@ msgstr "Gerar Senha" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7081,14 +7081,14 @@ msgstr "" msgid "Edit event" msgstr "Editar servidor" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Erro no processamento da requisição" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Detalhes" @@ -7103,7 +7103,7 @@ msgstr "Tipo de evento" msgid "Event type" msgstr "Tipo de evento" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7134,7 +7134,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Fim" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7147,12 +7147,12 @@ msgstr "Descrição" msgid "On completion preserve" msgstr "Inserções completas" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7200,7 +7200,7 @@ msgid "Returns" msgstr "Tipo de returno" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Tempo" @@ -7220,7 +7220,7 @@ msgstr "" "quaisquer problemas." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Tipo de rotina inválido: \"%s\"" @@ -7239,125 +7239,125 @@ msgstr "A rotina %1$s foi modificada." msgid "Routine %1$s has been created." msgstr "A rotina %1$s foi criada." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Editar rotina" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rotinas" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Links diretos" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Tamanho/Definir*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add index" msgid "Add parameter" msgstr "Adicionar índice" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Remover Banco de Dados" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Tipo de returno" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Tamanho/Definir*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opções da tabela" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Segurança" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d linha afetada pela última instrução dentro do procedimento" msgstr[1] "%d linhas afetadas pela última instrução dentro do procedimento" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Resultados da execução da rotina %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Executar rotina" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Rotinas" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Função" @@ -7516,7 +7516,7 @@ msgstr "Não existem eventos para serem mostrados" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7526,7 +7526,7 @@ msgstr "A tabela \"%s\" não existe!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7534,9 +7534,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Configure as coordenadas para a tabela %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7550,113 +7550,113 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Esquema relacional" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Tabela de conteúdos" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atributos" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Criar uma nova página" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Numero da página:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Leiaute automático" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Relações internas" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Escolha a página para editar" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Tabelas selecionadas" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Tabelas selecionadas" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Esquema relacional" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Mostrar grade" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Mostrar cor" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Mostrar dimensão das tabelas" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Mostrar todas as tabelas com o mesmo tamanho" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Paisagem" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Retrato" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Criação" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Tamanho do papel" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7664,17 +7664,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "mudar o estado do Scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Linguagem desconhecida: %1$s." @@ -7753,11 +7753,11 @@ msgstr "Limpar" msgid "Columns" msgstr "Nome das colunas" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Gravar essa consulta SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Deixar qualquer usuário acessar esse marcador" @@ -8238,7 +8238,7 @@ msgstr "Versão do Protocolo" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Usuário" @@ -8448,7 +8448,7 @@ msgstr "Tudo Pequeno/Grande" msgid "Toggle small/big" msgstr "Mudar para pequeno/grande" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema PDF" @@ -8540,49 +8540,49 @@ msgstr "" "campo de exibição, clique no ícone \"Escolher campo para exibição\", então " "clique no nome do campo apropriado." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "A página foi criada" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "páginas" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importar arquivos" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Exportar/Importar para escala" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Criar um novo índice" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nome do usuário" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Exportar/Importar para escala" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "recomendado" @@ -8693,12 +8693,12 @@ msgstr "Importar arquivos" msgid "All" msgstr "Todos" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format 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:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8712,13 +8712,13 @@ msgstr "Selecionar log binário para exibir" msgid "Files" msgstr "Arquivos" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Truncar as consultas SQL exibidas" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Mostrar consultas completas" @@ -9551,8 +9551,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "por hora" @@ -9573,43 +9573,43 @@ msgstr "Comandos" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 "Esse servidor MySQL está rodando por %s. Ele foi iniciado em %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 #, fuzzy msgid "Replication status" msgstr "Replicação" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9617,47 +9617,47 @@ 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Recebido" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Enviar" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "máx. de conexões concorrentes" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Tentativas falharam" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Abortado" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Comando" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, fuzzy #| msgid "Whether to enable SSL for connection to MySQL server." msgid "The number of failed attempts to connect to the MySQL server." msgstr "Caso queira ativar o SSL para conexões com o servidor MySQL." -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -9667,16 +9667,16 @@ msgstr "" "excederam o valor do binlog_cache_size e usaram o arquivo temporário para " "armazenar enunciados da transação." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9688,11 +9688,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:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Quantos arquivos temporários o MySQL tinha criado." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9700,7 +9700,7 @@ msgstr "" "O número de tabelas temporárias na memória criadas automaticamente pelo " "servidor enquanto executava os enunciados." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9708,7 +9708,7 @@ msgstr "" "O número de linhas escritas com INSERT DELAYED para cada erro ocorrido " "(provavelmente chave duplicada)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9716,23 +9716,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "O número de linhas INSERT DELAYED escritas." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "O número de enunciados FLUSH executados." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "O número de enunciados COMMIT internos." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9742,7 +9742,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:1203 +#: server_status.php:1204 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, " @@ -9752,7 +9752,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:1204 +#: server_status.php:1205 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." @@ -9761,7 +9761,7 @@ msgstr "" "alto, é uma boa indicação de que suas consultas e tabelas estejam " "corretamente indexadas." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9771,7 +9771,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:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9779,7 +9779,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:1207 +#: server_status.php:1208 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 " @@ -9792,7 +9792,7 @@ msgstr "" "faça a varredura de tabelas inteiras ou você tem junções que não usam as " "chaves corretamente." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9804,37 +9804,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:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "O número de enunciados ROLLBACK internos." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 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:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "O número de páginas atualmente sujas." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "O número de páginas livres." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9844,7 +9844,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:1217 +#: server_status.php:1218 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 " @@ -9856,11 +9856,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:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Tamanho total do buffer pool, em páginas." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9869,7 +9869,7 @@ msgstr "" "uma consulta faz a varredura de uma parcela grande de uma tabela mas na " "ordem aleatória." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9877,11 +9877,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:1221 +#: server_status.php:1222 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:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9889,7 +9889,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:1223 +#: server_status.php:1224 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 " @@ -9903,55 +9903,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:1224 +#: server_status.php:1225 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:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "O número de operações fsync() à fazer." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "O número atual de operações fsync() pendentes." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "O número atual de leituras pendentes." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "O número atual de escritas pendentes." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "O montante de leitura de dados à fazer, em bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "O número total de dados lidos." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "O número total de dados escritos." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "O montante de escrita de dados à fazer, em bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -9959,35 +9959,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "O número de requisições de escrita de log." -#: server_status.php:1237 +#: server_status.php:1238 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:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "O número de arquivos de log fsyncs pendentes." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Escrita de arquivos de log pendentes." -#: server_status.php:1241 +#: server_status.php:1242 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:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "O número de páginas criadas." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9996,52 +9996,52 @@ msgstr "" "contados em páginas; o tamanho de página permite que sejam facilmente " "convertidos em bytes." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "O número de páginas lidas." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "O número de páginas escritas." -#: server_status.php:1246 +#: server_status.php:1247 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:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "O número de linhas deletadas de tabelas InnoDB." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "O número de linhas inseridas em tabelas InnoDB." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "O número de linhas lidas de tabelas InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "O número de linhas atualizadas em tabelas InnoDB." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10049,7 +10049,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:1256 +#: server_status.php:1257 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." @@ -10057,7 +10057,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:1257 +#: server_status.php:1258 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 " @@ -10067,11 +10067,11 @@ msgstr "" "indica o número máximo de blocos que estiveram sempre em uso em algum " "momento." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10081,15 +10081,15 @@ 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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10100,18 +10100,18 @@ msgstr "" "a mesma consulta. O valor padrão 0 significa que nenhuma consulta foi " "compilada ainda." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10119,39 +10119,39 @@ 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "O número de arquivos que estão abertos." -#: server_status.php:1267 +#: server_status.php:1268 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)." -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "O número de tabelas que estão abertas." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "O montante de memória livre para a consulta do cache." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "O número de hits do cache." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "O número de consultas adicionadas no cache." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10164,7 +10164,7 @@ msgstr "" "recentemente\" (LRU - least recently used) para decidir qual consulta " "remover do cache." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10172,19 +10172,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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "O número de consultas registradas no cache." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "O número total de blocos na consulta do cache." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "O status da replicação à prova de falhas (não implementado)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10192,13 +10192,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10207,7 +10207,7 @@ msgstr "" "após cada linha. (Se este não for 0, você deve cuidadosamente verificar os " "índices de suas tabelas.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10215,16 +10215,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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." -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10232,11 +10232,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:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10244,12 +10244,12 @@ msgstr "" "O número de processos que levaram mais que slow_launch_time segundos para " "serem criadas." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10259,24 +10259,24 @@ msgstr "" "valor for alto, você deve considerar aumentar o valor da variável " "sort_buffer_size do sistema." -#: server_status.php:1289 +#: server_status.php:1290 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:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "O número de linhas ordenadas." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10288,7 +10288,7 @@ msgstr "" "performance, você precisa primeiramente otimizar suas consultas e então, ou " "dividir sua tabela ou usar replicação." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10298,11 +10298,11 @@ msgstr "" "ser calculada como Threads_created/conexões. Se este valor for vermelho você " "deve aumentar seu thread_cache_size" -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "O número de conexões atualmente abertas." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10314,69 +10314,69 @@ msgstr "" "isso não da um aumento notável de performance se você tem uma boa " "implementação de processos.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "O número de processos que não estão dormindo." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy msgid "Start Monitor" msgstr "Status" -#: server_status.php:1445 +#: server_status.php:1446 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Introdução" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "Adicionar índice" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Atualizar" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adicionar/Remover colunas" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Restaurar valor padrão" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy #| msgid "1. Introduction" msgid "Monitor Instructions" msgstr "1. Introdução" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10385,7 +10385,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10393,13 +10393,13 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Pausar o monitoramento" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10407,7 +10407,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10415,11 +10415,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10970,12 +10970,12 @@ msgstr "Exibindo consulta SQL" msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas com o índice da tabela `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Nome" diff --git a/po/ro.po b/po/ro.po index 08de3dbed6..9918429f9d 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" @@ -22,10 +22,10 @@ msgstr "Arată toate" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Numărul paginii:" @@ -40,8 +40,8 @@ msgstr "" "sistemului." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Caută" @@ -49,25 +49,25 @@ msgstr "Caută" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "Nume cheie" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Descriere" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "Folosește această valoare" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -129,7 +129,7 @@ msgstr "Baza de date %1$s a fost creată." msgid "Database comment: " msgstr "Comentarii referitoare la baza de date: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "Comentarii tabel" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -153,11 +153,11 @@ msgstr "Denumirile coloanelor" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -168,8 +168,8 @@ msgstr "Tip" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -179,8 +179,8 @@ msgstr "Nul" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -189,8 +189,8 @@ msgstr "Setare de bază" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Trimitere la" @@ -199,8 +199,8 @@ msgstr "Trimitere la" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Comentarii" @@ -211,7 +211,7 @@ msgstr "Comentarii" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -232,7 +232,7 @@ msgstr "Nu" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -371,7 +371,7 @@ msgstr "Schema relațională" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -395,21 +395,21 @@ msgstr "în folosință" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Creare" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Ultima actualizare" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Ultima verficare" @@ -514,7 +514,7 @@ msgstr "Trimite comanda" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Acces interzis" @@ -550,7 +550,7 @@ msgstr[1] "%s rezultat(e) în interiorul tabelului %s" msgstr[2] "%s rezultat(e) în interiorul tabelului %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Navigare" @@ -562,10 +562,10 @@ msgstr "Șterge datele urmărite din acest tabel" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -690,12 +690,12 @@ msgstr "Demarchează toate" msgid "Check tables having overhead" msgstr "Verificare depășit" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportă" @@ -705,13 +705,13 @@ msgstr "Exportă" msgid "Print view" msgstr "Vizualizare imprimare" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Golește" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -750,7 +750,7 @@ msgstr "Înlocuiește datele tabelului cu fișier" msgid "Copy table with prefix" msgstr "Înlocuiește datele tabelului cu fișier" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Dicționar de date" @@ -766,7 +766,7 @@ msgstr "Tabelele urmărite" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -786,7 +786,7 @@ msgstr "Actualizat(ă)" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Stare" @@ -898,14 +898,14 @@ msgstr "" "Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la " "%sdocumentație%s pentru căi de ocolire a acestei limite." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Fișierul nu poate fi citit" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -939,7 +939,7 @@ msgstr "Eticheta a fost ștearsă." msgid "Showing bookmark" msgstr "Afișînd semn de carte" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Semnul de carte %s a fost creat" @@ -966,7 +966,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1095,9 +1095,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Editare" @@ -1123,13 +1123,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1161,7 +1161,7 @@ msgstr "Alegerea serverului" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Procese" @@ -1189,7 +1189,7 @@ msgstr "Statisticile rîndului" #: js/messages.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”" #: js/messages.php:94 @@ -1298,7 +1298,7 @@ msgstr "" msgid "Bytes received" msgstr "Recepționat" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Conexiuni" @@ -1309,12 +1309,12 @@ msgstr "Conexiuni" msgid "Questions" msgstr "Versiuni" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Trafic" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1343,7 +1343,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nici unul(a)" @@ -1568,7 +1568,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importă" @@ -1770,7 +1770,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2242,25 +2242,25 @@ msgstr "în folosință" msgid "Second" msgstr "pe secundă" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Dimensiune font" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Eroare necunoscută la încărcarea fișierului." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2268,37 +2268,37 @@ msgstr "" "Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în " "formularul HTML." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Fișierul a fost încărcat numai parțial." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Lipsește un dosar temporar." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Eșec la scrierea fișierului pe disc." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Încărcarea fișierului a fost împiedicată de extensie." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Eroare necunoscută la încărcarea fișierului." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "Eroare la mutarea fișierului încărcat, vezi FAQ 1.11" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2326,7 +2326,7 @@ msgid "Cardinality" msgstr "Cardinalitate" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Comentariu" @@ -2347,14 +2347,14 @@ msgid "" "removed." msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Baze de date" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2466,16 +2466,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Nici o previzualizare disponibilă." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "alege" @@ -2489,12 +2489,12 @@ msgstr "Tema implicită %s nu a fost găsită!" msgid "Theme %s not found!" msgstr "Tema %s nu a fost găsită!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Calea temei nu a fost găsită pentru tema %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2503,7 +2503,7 @@ msgid "Cannot connect: invalid settings." msgstr "Conexiune esuata: setari invalide." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Bine ați venit la %s" @@ -2530,49 +2530,49 @@ msgstr "" "fișierul de configurare și asigurați-vă că ele corespund informațiilor " "furnizate de administratorul serverului MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Autentificare" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Documentație phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Nume utilizator:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Parolă:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Alegerea serverului" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Trebuie sa aveti activat \"cookies\"." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2580,8 +2580,8 @@ msgstr "" "Nu ați avut activitate de mai mult de %s secunde, vă rugăm să vă " "autentificați din nou" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Nu pot face conexiunea catre serverul MySQL" @@ -2613,41 +2613,41 @@ msgstr "No valid authentication key plugged" msgid "Authenticating..." msgstr "Authenticating..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "MySQL connection collation" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Vizualizează imaginea" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Redă audio" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Vizualizează video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Descarcă fișierul" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2793,7 +2793,7 @@ msgid "Documentation" msgstr "Documentație" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "Comanda SQL" @@ -2803,7 +2803,7 @@ msgstr "Comanda SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2855,7 +2855,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Motoare" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Creare profil" @@ -2958,7 +2958,7 @@ msgid "Click to toggle" msgstr "Click pentru a selecta" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2978,8 +2978,8 @@ msgstr "Structură" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserare" @@ -2990,26 +2990,26 @@ msgstr "Inserare" msgid "Operations" msgstr "Operații" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, 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/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3187,7 +3187,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Resetare" @@ -5462,8 +5462,8 @@ msgstr "Creează tabel nou în baza de date %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5826,7 +5826,7 @@ msgstr "Sortare după cheie" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Opțiuni" @@ -5892,7 +5892,7 @@ msgid "The row has been deleted" msgstr "Linia a fost ștearsă" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Oprește" @@ -6504,7 +6504,7 @@ msgstr "Tipuri MIME disponibile" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Gazda" @@ -6719,7 +6719,7 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Generat de" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." @@ -6819,7 +6819,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Denumire tabel" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Denumirile coloanelor" @@ -7181,7 +7181,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "Nu există descriere" @@ -7218,14 +7218,14 @@ msgid "Slave status" msgstr "Afișează stare sclav" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variabil" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valoare" @@ -7285,7 +7285,7 @@ msgstr "Generează parolă" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7324,16 +7324,16 @@ msgstr "" msgid "Edit event" msgstr "Redactează serverul" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procese" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7350,7 +7350,7 @@ msgstr "Tip eveniment" msgid "Event type" msgstr "Tip eveniment" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7379,7 +7379,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Sfîrșit" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7392,12 +7392,12 @@ msgstr "Descriere" msgid "On completion preserve" msgstr "Inserări complete" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7445,7 +7445,7 @@ msgid "Returns" msgstr "Tipul întors" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Timp" @@ -7461,7 +7461,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7483,101 +7483,101 @@ msgstr "Tabelul %s a fost aruncat" msgid "Routine %1$s has been created." msgstr "Tabelul %1$s a fost creat." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Regim de redactare" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Legături directe" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Lungime/Setare" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Redenumire bază de date în" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Tipul întors" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Lungime/Setare" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opțiuni tabel" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Tip interogare" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7585,25 +7585,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Permite executarea rutinelor stocate." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funcție" @@ -7763,7 +7763,7 @@ msgstr "Tabelele urmărite" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7773,7 +7773,7 @@ msgstr "Tabelul „%s” nu există!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7781,9 +7781,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Configureaza coordonatelepentru tabelul %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7799,115 +7799,115 @@ msgstr "File %s does not contain any key id" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Schema relațională" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Sumar" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Proprietăți" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Creează o nouă pagină" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Numărul paginii:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Așezare automată" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Relații interne" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Selectează o pagină pentru a fi editată" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Selectează tabele" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Selectează tabele" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Schema relațională" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Arată grila" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Arată culoarea" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Arată dimensiunile tabelei" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Arată toate tabelele cu aceeaăi mărime?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Vezi numai cheile" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Portret" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portret" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Creare" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Mărime hîrtie" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7915,17 +7915,17 @@ msgstr "" "Pagina curentă se leagă de tabele care nu mai există. Doriți ștergerea " "acestor legături?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "dezactivare scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Limbă necunoscută: %1$s." @@ -8006,11 +8006,11 @@ msgstr "Calendar" msgid "Columns" msgstr "Denumirile coloanelor" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" @@ -8497,7 +8497,7 @@ msgstr "Versiune protocol" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Utilizator" @@ -8706,7 +8706,7 @@ msgstr "Small/Big All" msgid "Toggle small/big" msgstr "Comutare mare/mică" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export coordinates for PDF schema" @@ -8798,50 +8798,50 @@ msgstr "" "field, click the \"Choose field to display\" icon, then click on the " "appropriate field name." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Tabelul %1$s a fost creat." -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "pagini" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Import fișiere" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Exportă/Importă la scală" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Creează un nou index" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nume utilizator" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Exportă/Importă la scală" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "recomandat" @@ -8952,12 +8952,12 @@ msgstr "Import fișiere" msgid "All" msgstr "Toate" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabelul nu a fost găsit sau nu este stabilit în %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8971,13 +8971,13 @@ msgstr "Selectați jurnalul binar pentru vizualizare" msgid "Files" msgstr "Fișiere" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Truncare comenzi afișate" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Afișare comandă întreagă" @@ -9818,8 +9818,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "pe oră" @@ -9840,43 +9840,43 @@ msgstr "Comenzi" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 #, fuzzy msgid "Replication status" msgstr "Replicare" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9884,46 +9884,46 @@ 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Recepționat" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Trimis" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "conexiuni concurente (maxim)" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Încercări nereușite" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Întrerupt" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Comanda" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "Comprimă conexiunea la serverul MySQL" -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -9933,16 +9933,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9954,98 +9954,98 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Cîte fișiere temporare a creat mysqld." -#: server_status.php:1195 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - #: server_status.php:1196 msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." #: server_status.php:1197 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:1198 +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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 -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 "" -"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." - #: server_status.php:1203 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 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 "" -"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 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." #: server_status.php:1204 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 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 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 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:1205 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." +"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 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." +"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:1206 msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." +"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 previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." +"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:1207 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 optimize ORDER BY ... DESC." + +#: server_status.php:1208 +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 " @@ -10056,7 +10056,7 @@ msgstr "" "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:1208 +#: server_status.php:1209 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 " @@ -10068,47 +10068,47 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 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:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Numărul de pagini actualmente murdare." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Numărul de pagini libere." -#: server_status.php:1216 -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:1217 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:1218 +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 - " @@ -10119,40 +10119,40 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:1219 -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:1220 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:1221 +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:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:1222 -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:1223 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:1224 +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 " @@ -10165,55 +10165,55 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -10221,35 +10221,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Numărul de pagini create." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10257,68 +10257,68 @@ 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Numărul de pagini citite." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Numărul de pagini scrise." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Numărul de rînduri citite din tabelele InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Numărul de rînduri actualizate în tabelele InnoDB." -#: server_status.php:1255 -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 "" -"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:1256 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 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 "" -"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 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:1257 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:1258 +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." @@ -10327,11 +10327,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10341,15 +10341,15 @@ msgstr "" "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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10359,17 +10359,17 @@ msgstr "" "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." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10377,70 +10377,70 @@ 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Numărul de tabele ce sînt deschise." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Numărul de nimeriri în cache." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Numărul de interogări adăugate la cache." -#: server_status.php:1273 -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:1274 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:1275 +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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Numărul de interogări înregistrate în cache." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Numărul total de blocuri în cache-ul interogării." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10448,35 +10448,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:1279 +#: server_status.php:1280 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:1280 -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:1281 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:1282 +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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10484,26 +10484,26 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." - #: server_status.php:1287 msgid "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." msgstr "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." #: server_status.php:1288 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:1289 +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." @@ -10512,36 +10512,36 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Numărul de rînduri sortate." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 -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 " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"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 " -"should first optimize your queries, and then either split your table or " -"tables or use replication." - #: server_status.php:1294 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 " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"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 " +"should first optimize your queries, and then either split your table or " +"tables or use replication." + +#: server_status.php:1295 +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." @@ -10550,11 +10550,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Numărul de conexiuni deschise momentan." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10566,68 +10566,68 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Dum" -#: server_status.php:1445 +#: server_status.php:1446 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Introducere" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Adaugă %s cîmp(uri)" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Reîncarcă" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Adaugă/șterge coloane" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy #| msgid "Introduction" msgid "Monitor Instructions" msgstr "Introducere" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10636,7 +10636,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10644,11 +10644,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10656,7 +10656,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10664,11 +10664,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11212,12 +11212,12 @@ msgstr "Afișare interogare SQL" msgid "Validated SQL" msgstr "Validează SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleme cu indexul tabelului `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Etichetă" diff --git a/po/ru.po b/po/ru.po index e45321daf4..9eb49dc507 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-07-03 19:50+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" @@ -22,10 +22,10 @@ msgstr "Показать все" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Номер страницы:" @@ -40,8 +40,8 @@ msgstr "" "настроек безопасности." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Поиск" @@ -49,25 +49,25 @@ msgstr "Поиск" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "Имя индекса" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Описание" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "Использовать это значение" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Сервер для работы с потоковыми данными не настроен!" @@ -129,7 +129,7 @@ msgstr "База данных %1$s была создана." msgid "Database comment: " msgstr "Комментарий к базе данных:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "Комментарий к таблице" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -151,11 +151,11 @@ msgstr "Поле" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -166,8 +166,8 @@ msgstr "Тип" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -177,8 +177,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -187,8 +187,8 @@ msgstr "По умолчанию" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Связи" @@ -197,8 +197,8 @@ msgstr "Связи" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Комментарии" @@ -209,7 +209,7 @@ msgstr "Комментарии" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -230,7 +230,7 @@ msgstr "Нет" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -361,7 +361,7 @@ msgstr "Редакция или экспорт схемы связей" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -385,21 +385,21 @@ msgstr "используется" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Создание" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Последнее обновление" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Последняя проверка" @@ -500,7 +500,7 @@ msgstr "Выполнить запрос" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "В доступе отказано" @@ -535,7 +535,7 @@ msgstr[1] "%s соответствия в таблице %s" msgstr[2] "%s соответствий в таблице %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Обзор" @@ -547,10 +547,10 @@ msgstr "Удалить соответствия для таблицы %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -669,12 +669,12 @@ msgstr "Снять выделение" msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Экспорт" @@ -684,13 +684,13 @@ msgstr "Экспорт" msgid "Print view" msgstr "Версия для печати" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Очистить" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -724,7 +724,7 @@ msgstr "Заменить префикс таблицы" msgid "Copy table with prefix" msgstr "Копировать таблицу с префиксом" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Словарь данных" @@ -739,7 +739,7 @@ msgstr "Отслеживаемые таблицы" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -759,7 +759,7 @@ msgstr "Обновлён" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Состояние" @@ -864,14 +864,14 @@ msgstr "" "Вероятно, размер загружаемого файла слишком велик. Способы обхода данного " "ограничения описаны в %sдокументации%s." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Ошибка при чтении файла" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -905,7 +905,7 @@ msgstr "Закладка удалена." msgid "Showing bookmark" msgstr "Отображение закладки" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Закладка "%s" создана" @@ -934,7 +934,7 @@ msgstr "" "пока не будет увеличено ограничение времени выполнения php-сценариев." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1048,9 +1048,9 @@ msgstr "Закрыть" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Изменить" @@ -1073,13 +1073,13 @@ msgstr "Статические данные" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Всего" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Другое" @@ -1109,7 +1109,7 @@ msgstr "Трафик сервера (в KiB)" msgid "Connections since last refresh" msgstr "Соединений с момента последнего обновления" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Процессы" @@ -1136,7 +1136,7 @@ msgstr "Статистика запросов" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Ошибка при чтении конфигурационного файла" #: js/messages.php:94 @@ -1245,7 +1245,7 @@ msgstr "" msgid "Bytes received" msgstr "Принято" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Соединения" @@ -1256,12 +1256,12 @@ msgstr "Соединения" msgid "Questions" msgstr "Версии" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Трафик" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Настройки" @@ -1288,7 +1288,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Нет" @@ -1518,7 +1518,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Импорт" @@ -1696,7 +1696,7 @@ msgid "Query execution time" msgstr "Максимальное время выполнения" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2124,27 +2124,27 @@ msgstr "Минута" msgid "Second" msgstr "Секунда" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Размер шрифта" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "При время загрузке файла произошла неизвестная ошибка." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Размер загружаемого файла превышает значение директивы upload_max_filesize " "установленное в конфигурационном файле PHP (php.ini)." -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2152,27 +2152,27 @@ msgstr "" "Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, " "определенной в HTML форме." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Загруженный файл был загружен только частично." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Не найден каталог для хранения временных файлов." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Ошибка при попытке записи файла на диск." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Загрузка файла остановлена из-за расширения." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "При время загрузке файла произошла неизвестная ошибка." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2180,11 +2180,11 @@ msgstr "" "Ошибка при перемещении загруженного файла, смотрите [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2212,7 +2212,7 @@ msgid "Cardinality" msgstr "Уникальных элементов" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Комментарий" @@ -2233,14 +2233,14 @@ msgid "" "removed." msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Базы данных" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2344,16 +2344,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Не найден правильный путь к изображениям для темы %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Предпросмотр не доступен." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "Применить" @@ -2367,12 +2367,12 @@ msgstr "Тема по-умолчанию %s не найдена!" msgid "Theme %s not found!" msgstr "Тема %s не найдена!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Путь к файлам темы %s не найден!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Тема" @@ -2381,7 +2381,7 @@ msgid "Cannot connect: invalid settings." msgstr "Соединение невозможно! Неверные настройки." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Добро пожаловать в %s" @@ -2407,57 +2407,57 @@ msgstr "" "php и удостоверьтесь, что они соответствуют данным полученным от " "администратора сервера MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Авторизация" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Документация phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Вы можете ввести хост/IP адрес и порт разделенные пробелом." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Сервер:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Пользователь:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Пароль:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Выбор сервера" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Для полноценной работы необходима поддержка cookies браузером." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Вход без пароля запрещен при конфигурации (смотрите AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" "Отсутствие активности более %s секунд, пожалуйста, авторизуйтесь заново" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Невозможно подключиться к серверу MySQL" @@ -2488,41 +2488,41 @@ msgstr "Отсутствует действенный подключенный msgid "Authenticating..." msgstr "Идентификация..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "Ошибка PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "Ошибка подключения к PBMS:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "Ошибка получения информации о BLOB данных от PBMS:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "Ошибка получения заголовка Content-Type BLOB данных" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Просмотреть изображение" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Воспроизвести аудио" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Просмотреть видео" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Загрузить файл" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Невозможно открыть файл: %s" @@ -2664,7 +2664,7 @@ msgid "Documentation" msgstr "Документация" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-запрос" @@ -2674,7 +2674,7 @@ msgstr "SQL-запрос" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2723,7 +2723,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Быстрая правка" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Профилирование" @@ -2827,7 +2827,7 @@ msgid "Click to toggle" msgstr "Выделение" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2847,8 +2847,8 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Вставить" @@ -2859,25 +2859,25 @@ msgstr "Вставить" msgid "Operations" msgstr "Операции" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Обзор вашего компьютера:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Выберите из каталога загрузки сервера %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Установленный каталог загрузки не доступен" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Файлы для загрузки отсутствуют" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Выполнить" @@ -3042,7 +3042,7 @@ msgid "Allow users to customize this value" msgstr "Разрешить пользователям изменять данное значение" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Сбросить" @@ -5407,8 +5407,8 @@ msgstr "Создать новую таблицу в базе данных %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5725,7 +5725,7 @@ msgstr "Сортировать по индексу" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Параметры" @@ -5785,7 +5785,7 @@ msgid "The row has been deleted" msgstr "Запись была удалена" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Завершить" @@ -6382,7 +6382,7 @@ msgstr "Отобразить MIME типы" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Хост" @@ -6613,7 +6613,7 @@ msgstr "Результат SQL-запроса" msgid "Generated by" msgstr "Создан" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." @@ -6720,7 +6720,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Имя таблицы" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Названия столбцов" @@ -7082,7 +7082,7 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Перезайдите в phpMyAdmin, чтобы загрузить обновленный конфигурационный файл." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "нет описания" @@ -7119,14 +7119,14 @@ msgid "Slave status" msgstr "Статус Slave" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Переменная" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Значение" @@ -7190,7 +7190,7 @@ msgstr "Создать пароль" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7231,14 +7231,14 @@ msgstr "При обработке вашего запроса были обн msgid "Edit event" msgstr "Редактировать сервер" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Ошибка при обработке запроса" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Детали" @@ -7253,7 +7253,7 @@ msgstr "Тип события" msgid "Event type" msgstr "Тип события" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Изменить на %s" @@ -7284,7 +7284,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Конец" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Определение" @@ -7295,12 +7295,12 @@ msgstr "Определение" msgid "On completion preserve" msgstr "полная вставка" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "Определитель" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7360,7 +7360,7 @@ msgid "Returns" msgstr "Возвращаемый тип" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Время" @@ -7380,7 +7380,7 @@ msgstr "" "улучшенное 'mysqli' расширение." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ошибочный тип процедуры: \"%s\"" @@ -7399,69 +7399,69 @@ msgstr "Была изменена процедура %1$s." msgid "Routine %1$s has been created." msgstr "Была создана процедура %1$s." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Изменить процедуру" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Имя процедуры" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Параметры" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Направление" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Длина/значения" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Добавить параметр" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Удалить последний параметр" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Возвращаемый тип" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Вернуть длину/значения" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Вернуть параметры" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "Определяющий" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Тип безопасности" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "Доступ к SQL данным" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "Необходимо задать имя процедуры" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "\"%s\" является ошибочным параметром." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7469,21 +7469,21 @@ msgstr "" "Вы должны задать длину/значения для параметров процедуры имеющих тип ENUM, " "SET, VARCHAR и VARBINARY." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "Вы должны задать имя и тип для каждого параметра процедуры." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 #, fuzzy #| msgid "You must provide a name and a type for each routine parameter." msgid "You must provide a valid return type for the routine." msgstr "Вы должны задать имя и тип для каждого параметра процедуры." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "Вы должны задать определение процедуры." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7491,22 +7491,22 @@ msgstr[0] "Последним выражением в процедуре был msgstr[1] "Последним выражением в процедуре были затронуты %d строки" msgstr[2] "Последним выражением в процедуре было затронуто %d строк" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Результаты выполнения процедуры %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Выполнить процедуру" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Параметры процедуры" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Функция" @@ -7670,7 +7670,7 @@ msgstr "Отсутствуют события для отображения." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7679,7 +7679,7 @@ msgstr "Таблица %s не существует!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7687,9 +7687,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Измените координаты таблицы %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Схема базы данных %s - Страница %s" @@ -7702,105 +7702,105 @@ msgstr "Данная страница не содержит таблиц!" msgid "SCHEMA ERROR: " msgstr "Ошибка при создании схемы:" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Cхема связей" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Содержание" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Атрибуты" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Дополнительно" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Создать новую страницу" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Название страницы" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Основание автоматической раскладки" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Внутренние связи" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Выбор страницы для редактирования" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Выберите страницу" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Выберите таблицы" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Отобразить схему связей" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Выберите тип экспорта связей" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Отображать сетку" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Отображать в цвете" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Отображать размерность таблиц" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Показать все таблицы одинаковой ширины" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Only show keys" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Альбомная" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Книжная" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Ориентация" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Размер бумаги" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7808,17 +7808,17 @@ msgstr "" "На текущей странице присутствуют ссылки на таблицы, которые больше не " "существуют. Удалить эти ссылки?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Отображение" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Неизвестный язык: %1$s." @@ -7891,11 +7891,11 @@ msgstr "Очистить" msgid "Columns" msgstr "Столбцы" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Создание закладки" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Доступна для всех пользователей" @@ -8326,7 +8326,7 @@ msgstr "Версия протокола" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Пользователь" @@ -8540,7 +8540,7 @@ msgstr "Свернуть/развернуть отображение всех т msgid "Toggle small/big" msgstr "Обратное отображение" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Импорт/экспорт координат таблиц в/из PDF-схемы" @@ -8612,39 +8612,39 @@ msgstr "" "установить или снять отображаемый столбец, нажмите кнопку \"Выбор " "отображаемого столбца\" и выберите необходимый столбец." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Страница успешно создана" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Ошибка создания страницы" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Страница" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Импортировать с выбранной страницы" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Экспортировать на выбранную страницу" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Создать страницу и экспортировать в нее" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Название новой страницы:" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Масштаб" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "рекомендуемый" @@ -8755,12 +8755,12 @@ msgstr "Импорт файлов" msgid "All" msgstr "Все" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Таблица %s не найдена или не установлена в %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Файл не существует" @@ -8772,13 +8772,13 @@ msgstr "Выберите бинарный журнал для просмотра msgid "Files" msgstr "Файлов" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Сокращенное отображение запросов" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Развернутое отображение запросов" @@ -9617,8 +9617,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Сетевой трафик с момента запуска: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "в час" @@ -9639,18 +9639,18 @@ msgstr "Характеристика" msgid "#" msgstr "Кол-во" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Сетевой трафик с момента запуска: %s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9658,16 +9658,16 @@ msgstr "" "Данный MySQL сервер настроен головным и подчиненным в процессе " "репликации." -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "Данный сервер настроен головным в процессе репликации." -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" "Данный сервер настроен подчиненным в процессе репликации." -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9675,11 +9675,11 @@ msgstr "" "Для получения подробной информации о состоянии репликации сервера, " "пожалуйста, перейдите в раздел репликации." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Состояние репликации" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9687,45 +9687,45 @@ msgstr "" "На загруженном сервере, побайтовые счетчики могут переполняться, таким " "образом, статистика, передаваемая MySQL-сервером, может быть некорректной." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Принято" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Отправлено" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Максимально одновременных" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Неудачных попыток" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Прерваны" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Команда" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Количество неудавшихся попыток соединения к серверу MySQL." -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -9735,16 +9735,16 @@ msgstr "" "значение binlog_cache_size, вследствие чего содержащиеся в них SQL-выражения " "были сохранены во временном файле." -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "Количество транзакций, использовавших кеш бинарного журнала." -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "Количество попыток соединения (успешных либо нет) к серверу MySQL." -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9756,11 +9756,11 @@ msgstr "" "велико, следует увеличить значение переменной tmp_table_size, чтобы " "временные таблицы располагались в памяти, а не на жестком диске." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Количество временных файлов, созданных MySQL-сервером (mysqld)." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9768,7 +9768,7 @@ msgstr "" "Количество временных таблиц в памяти, созданных сервером автоматически в " "процессе выполнения SQL-выражений." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9776,31 +9776,31 @@ msgstr "" "Количество ошибок, возникших в процессе обработки запросов INSERT DELAYED, " "например, из-за дублирования ключей." -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" "Количество строк записанных в режиме отложенной вставки данных (INSERT " "DELAYED)." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Количество выполненных команд FLUSH." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Количество внутренних команд COMMIT." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Количество запросов на удаление строк из таблицы." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -9810,7 +9810,7 @@ msgstr "" "определенным именем. Этот процесс называется обнаружением. Handler_discover " "- число обнаружений таблиц." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9821,7 +9821,7 @@ msgstr "" "индекса. Например, SELECT col1 FROM foo, при условии, что col1 " "проиндексирован." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -9830,7 +9830,7 @@ msgstr "" "значение переменной говорит о том, что запросы и таблицы проиндексированы " "надлежащим образом." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9840,7 +9840,7 @@ msgstr "" "индексов. Значение увеличивается при запросе индексного столбца с " "ограничением по размеру или при сканировании индекса." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9848,7 +9848,7 @@ msgstr "" "Количество запросов на чтение предыдущей строки при ниспадающей сортировке " "индекса. Обычно используется при оптимизации: ORDER BY ... DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9861,7 +9861,7 @@ msgstr "" "требующих полного сканирования таблиц, наличием объединений не использующих " "индексы надлежащим образом." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9873,39 +9873,39 @@ msgstr "" "что таблицы не проиндексированы надлежащим образом или запросы не используют " "преимущества индексов." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Количество внутренних команд ROLLBACK." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Количество запросов на обновление строк в таблице." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Количество запросов на вставку строк в таблицу." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" "Количество страниц содержащих данные ("грязные" или "" "чистые")." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Текущее количество "грязных" страниц." -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" "Количество страниц буферного пула, над которыми был осуществлен процесс " "очистки (FLUSH)." -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Количество свободных страниц." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9915,7 +9915,7 @@ msgstr "" "страницами осуществляется процесс чтения или записи, либо они не могут быть " "очищены или удалены по какой-либо другой причине." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9927,11 +9927,11 @@ msgstr "" "Значение можно рассчитать по формуле: Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Общий размер буферного пула (в страницах)." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9939,7 +9939,7 @@ msgstr "" "Количество \"случайных\" опережающих чтений, инициированных InnoDB. Это " "происходит, когда запрос сканирует большую часть таблицы в случайном порядке." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9948,11 +9948,11 @@ msgstr "" "происходит, когда InnoDB выполняет полное последовательное сканирование " "таблицы." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Количество последовательных запросов на чтение, выполненных InnoDB." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9960,7 +9960,7 @@ msgstr "" "Количество последовательных запросов на чтение, которые InnoDB не смог " "выполнить из буферного пула и использовал постраничное чтение." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -9974,55 +9974,55 @@ msgstr "" "ожиданий. Если размер буферного пула был установлен должным образом, " "значение будет небольшим." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Количество записей, выполненных в буферный пул InnoDB." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Количество операций fsync(), выполненных на данный момент." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Текущее количество незавершенных операций fsync()." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Текущее количество незавершенных операций чтения." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Текущее количество незавершенных операций записи." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Сумма данных (в байтах), прочитанных на данный момент." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Общее количество операций чтения данных." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Общее количество операций записи данных." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Сумма данных (в байтах), записанных на данный момент." -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" "Количество записей в буфер doublewrite, и количество созданных для этого " "страниц." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -10030,36 +10030,36 @@ msgstr "" "Количество ожиданий очистки журнального буфера, вследствие малого его " "размера." -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Количество запросов на запись в журнал." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Количество физических записей в файл журнала." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Количество записей с помощью fsync(), сделанных в файл журнала." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" "Количество незавершенных попыток синхронизации с помощью операции fsync." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Количество незавершенных запросов на запись в журнал." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Объем данных в байтах, записанных в файл журнала." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Количество созданных страниц." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10068,51 +10068,51 @@ msgstr "" "приводятся в страницах, но зная объем страницы, можно перевести эти значения " "в байты." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Количество прочитанных страниц." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Количество записанных страниц." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Текущее количество ожиданий блокировок строк." -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Среднее время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Общее время, ожидания блокировок строк (в миллисекундах)." -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Максимальное время ожидания блокировки строк (в миллисекундах)." -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "Общее количество ожиданий блокировки строк." -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Количество строк, удаленных из таблиц InnoDB." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Количество строк, добавленных в таблицы InnoDB." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Количество строк, прочитанных из таблиц InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Количество строк, обновленных в таблицах InnoDB." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10120,7 +10120,7 @@ msgstr "" "Количество блоков в кеше индекса, которые были изменены, но еще не записаны " "на диск. Данный параметр также известен как Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10128,7 +10128,7 @@ msgstr "" "Количество неиспользуемых блоков в кеше индекса. Данный параметр позволяет " "определить как полно используется кеш индекса." -#: server_status.php:1257 +#: server_status.php:1258 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 " @@ -10137,11 +10137,11 @@ msgstr "" "Количество используемых блоков в кеше индекса. Данное значение - " "максимальное количество блоков, использованных одновременно." -#: server_status.php:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "Количество запросов на чтение блока из кеша индексов." -#: server_status.php:1259 +#: server_status.php:1260 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 " @@ -10152,15 +10152,15 @@ msgstr "" "key_buffer_size. Коэффициент неудачных обращений к кешу может быть рассчитан " "как: Key_reads/Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "Количество запросов на запись блока в кеш индекса." -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "Количество физических операций записи блока индексов на диск." -#: server_status.php:1262 +#: server_status.php:1263 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 " @@ -10171,7 +10171,7 @@ msgstr "" "одного запроса. Изначальное нулевое значение, означает, что процесса " "компиляции запроса еще не было." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -10179,11 +10179,11 @@ msgstr "" "Максимальное количество соединений использованных одновременно начиная с " "запуска сервера." -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Количество строк, ожидающих вставки в запросах INSERT DELAYED." -#: server_status.php:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10191,21 +10191,21 @@ msgstr "" "Общее количество открывавшихся таблиц. При большом значении переменной " "рекомендуется увеличить размер кеша таблиц (table_cache)." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Количество открытых файлов." -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Количество открытых потоков (применяется к файлам журналов). Потоком " "называется файл, открытый с помощью функции fopen." -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Количество открытых таблиц." -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -10215,21 +10215,21 @@ msgstr "" "указывать на фрагментацию, проблема которой решается выполнением запроса " "FLUSH QUERY CACHE." -#: server_status.php:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Объем свободной памяти для кеша запросов." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" "Количество "попаданий" в кеш запросов, т.е. сколько запросов было " "удовлетворено запросами, находящимися в кеше." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Количество запросов, добавленных в кеш запросов." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10242,7 +10242,7 @@ msgstr "" "не использующиеся страницы заменяются новыми) при принятии решения об " "удаления запроса из кеша." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10250,19 +10250,19 @@ msgstr "" "Количество запросов, которые оказались некешируемыми или для которых " "кеширование было подавлено с помощью ключевого слова SQL_NO_CACHE." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Количество запросов, зарегистрированных в кеше." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Суммарное количество блоков памяти, отведенных под кеш запросов." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Состояние отказоустойчивой репликации (пока не реализовано)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10270,13 +10270,13 @@ msgstr "" "Количество запросов-объединений, выполненных без использования индексов. " "Если значение переменной не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" "Количество запросов-объединений, выполненных с использованием поиска по " "диапазону в таблице, на которую делается ссылка." -#: server_status.php:1280 +#: server_status.php:1281 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.)" @@ -10285,7 +10285,7 @@ msgstr "" "диапазону для выборки строк из вторичной таблицы. Если значение переменной " "не равно 0, рекомендуется проверить индексы таблиц." -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10294,18 +10294,18 @@ msgstr "" "диапазону в первой таблице. Обычно значение этой переменной не критично, " "даже если оно велико." -#: server_status.php:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" "Количество запросов-объединений, выполненных с использованием полного поиска " "по первой таблице." -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" "Количество временных таблиц, открытых в настоящий момент подчиненным потоком." -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10313,13 +10313,13 @@ msgstr "" "Общее количество повторов транзакций подчиненным потоком репликации с " "момента запуска." -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Присваивается значение ON, если данный сервер функционирует как подчиненный, " "подключенный к главному." -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10327,12 +10327,12 @@ msgstr "" "Количество потоков, на создание которых потребовалось более чем " "slow_launch_time секунд." -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Количество запросов, выполнявшихся более long_query_time секунд." -#: server_status.php:1288 +#: server_status.php:1289 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 " @@ -10341,28 +10341,28 @@ msgstr "" "Количество проходов, сделанных алгоритмом сортировки. При большом значении " "следует увеличить значение переменной sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" "Количество операций сортировки, выполненных с использованием диапазона." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Количество отсортированных строк." -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" "Количество операций сортировки, выполненных с использованием полного " "сканирования таблицы." -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" "Количество запросов на блокировку таблицы, которые были удовлетворены " "немедленно." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10374,7 +10374,7 @@ msgstr "" "производительностью, необходимо сначала оптимизировать свои запросы, а затем " "разбить свою таблицу (или таблицы) или использовать репликацию." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10384,11 +10384,11 @@ msgstr "" "вычислить по формуле Threads_created/Connections. Если это значение окрашено " "в красный цвет - вам следует увеличить thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Количество открытых текущих соединений." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10400,67 +10400,67 @@ msgstr "" "thread_cache_size (это не даст существенного выигрыша в производительности, " "при хорошей реализации потоков)." -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Количество процессов, находящихся в активном состоянии." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" msgstr "Строк в текстовом поле" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add parameter" msgid "Add chart" msgstr "Добавить параметр" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Частота обновления" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "Столбцов в текстовом поле" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Управление ошибками:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Восстановить изначальное значение" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10469,7 +10469,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10477,11 +10477,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10489,7 +10489,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10497,11 +10497,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11097,12 +11097,12 @@ msgstr "Отображает SQL-запрос" msgid "Validated SQL" msgstr "SQL синтаксис проверен" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблемы с индексами таблицы `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Метка" diff --git a/po/si.po b/po/si.po index deb095fde0..2d57d84fb9 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-06-04 15:35+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" @@ -21,10 +21,10 @@ msgstr "සියල්ල පෙන්වන්න" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "පිටු අංකය:" @@ -38,8 +38,8 @@ msgstr "" "ආරක්ෂක සැකසුම් cross-window යාවත්කාලීන කිරීම් අවහිර කරන ලෙස සකසා තිබීම මීට හේතු විය හැක." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "සෙවීම" @@ -47,25 +47,25 @@ msgstr "සෙවීම" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "යතුරු නම" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "විස්තරය" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "මෙම අගය භාවිතා කරන්න" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Blog streaming සේවාදායකයක් සකස් කර නැත!" @@ -125,7 +125,7 @@ msgstr "%1$s දත්තගබඩාව සාදන ලදි." msgid "Database comment: " msgstr "දත්තගබඩා විස්තර: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -134,8 +134,8 @@ msgstr "වගු විස්තර" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -147,11 +147,11 @@ msgstr "තීර" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -162,8 +162,8 @@ msgstr "වර්ගය" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -173,8 +173,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -183,8 +183,8 @@ msgstr "පෙරනිමි" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Links to" @@ -193,8 +193,8 @@ msgstr "Links to" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "විස්තරය" @@ -205,7 +205,7 @@ msgstr "විස්තරය" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -226,7 +226,7 @@ msgstr "නැත" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -357,7 +357,7 @@ msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අ #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -381,21 +381,21 @@ msgstr "භාවිතා වෙමින් පවතී" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "සෑදීම" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "අවසන් යාවත් කාලීන කිරීම" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "අවසන් පරීක්ෂාව" @@ -494,7 +494,7 @@ msgstr "විමසුම ඉදිරිපත් කරන්න" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "පිවිසුම වලක්වා ඇත" @@ -528,7 +528,7 @@ msgstr[0] "%s වගුව තුල ගැලපීම් %s කි" msgstr[1] "%s වගුව තුල ගැලපීම් %s කි" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "පිරික්සන්න" @@ -540,10 +540,10 @@ msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -664,12 +664,12 @@ msgstr "කතිර කොටුගත කිරීම ඉවත් කරන msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "අපනයනය" @@ -679,13 +679,13 @@ msgstr "අපනයනය" msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "හිස්" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -719,7 +719,7 @@ msgstr "වගු නාම මූලය ප්‍රතිස්ථාපනය msgid "Copy table with prefix" msgstr "නාම මූලය සහිත වගු පිටපත් කරන්න" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "දත්ත කෝෂය" @@ -734,7 +734,7 @@ msgstr "අවධානය සක්‍රීය වගු" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -754,7 +754,7 @@ msgstr "යාවත්කාලීන කරන ලදි" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "තත්වය" @@ -859,14 +859,14 @@ msgstr "" "You probably tried to upload too large file. Please refer to %sdocumentation" "%s for ways to workaround this limit." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "ගොනුව කියවිය නොහැක" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -897,7 +897,7 @@ msgstr "පොත් සලකුණ ඉවත් කරන ලදි." msgid "Showing bookmark" msgstr "පොත් සලකුණ පෙන්වන්න" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "%s පොත් සලකුණ සාදන ලදි" @@ -924,7 +924,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1042,9 +1042,9 @@ msgstr "වසන්න" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "සංස්කරණය කරන්න" @@ -1071,13 +1071,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "මුළු එකතුව" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1109,7 +1109,7 @@ msgstr "සේවාදායකයේ තේරීම" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "ක්‍රියාවලිය" @@ -1136,7 +1136,7 @@ msgstr "විමසුම් සංඛ්‍යාලේඛන" #: js/messages.php:93 #, fuzzy #| msgid "Could not save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "වින්‍යාස සුරැකීම අසමත් විය" #: js/messages.php:94 @@ -1245,7 +1245,7 @@ msgstr "" msgid "Bytes received" msgstr "ලබන ලද" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "සම්බන්ධතා" @@ -1256,12 +1256,12 @@ msgstr "සම්බන්ධතා" msgid "Questions" msgstr "අනුවාද" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "තදබදය" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "සිටුවම්" @@ -1286,7 +1286,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "කිසිවක් නැත" @@ -1515,7 +1515,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "ආනයනය" @@ -1696,7 +1696,7 @@ msgid "Query execution time" msgstr "SQL ක්‍රියාත්මක කිරීම" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2128,51 +2128,51 @@ msgstr "මිනිත්තු" msgid "Second" msgstr "තත්පර" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "ෆොන්ට් එකෙහි ප්‍රමාණය" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "ගොනුව උඩුගත කිරීමේදී දෝෂයක් ඇති විය." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "උඩුගත කෙරුනු ගොනුව php.ini හි upload_max_filesize අගය ඉක්මවයි." -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "උඩුගත කෙරුනු ගොනුවේ කොටසක් පමණක් උඩුගත විය." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "තාවකාලික ෆෝල්ඩරයක් නැතිවී ඇත." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "ගොනුව ඩිස්කයට පිටපත් කිරීම අසාර්ථක විය." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "දිගුව නිසා ගොනුව උඩුගත කිරීම නවතන ලදි." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "ගොනුව උඩුගත කිරීමේදී දෝෂයක් ඇති විය." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2180,11 +2180,11 @@ msgstr "" "උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය, [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a] බලන්න" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2212,7 +2212,7 @@ msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "ටීකාව" @@ -2233,14 +2233,14 @@ msgid "" "removed." msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "දත්තගබඩා" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2341,16 +2341,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "No preview available." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "take it" @@ -2364,12 +2364,12 @@ msgstr "‍%s පෙරනිමි තේමාව සොයාගැනීම msgid "Theme %s not found!" msgstr "Theme %s not found!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2378,7 +2378,7 @@ msgid "Cannot connect: invalid settings." msgstr "සම්බන්ධ විය නොහැක : වලංගු නොවන සැකසුමකි." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%s වෙත ආයුබෝවන්" @@ -2404,56 +2404,56 @@ msgstr "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "ලොගින් වන්න" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin ලියකියවිලි" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "සේවාදායකය:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "භාවිත නාමය:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "මුරපදය:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "සේවාදායකයේ තේරීම" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "මෙම ස්ථානය පසු කිරීම සඳහා කුකීස් - Cookies සක්‍රිය කල යුතුයි." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "මුර පදයක් නොමැතිව ඇතුල් වීම ඔබගේ සිටුවම් මගින් වලකා ඇත. (AllowNoPassword බලන්න)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL සේවාදායකයට ලොග් විය නොහැක" @@ -2484,41 +2484,41 @@ msgstr "වලංගු සත්‍යාපන යතුරක් සම්බ msgid "Authenticating..." msgstr "සත්‍යාපනය කෙරෙමින්..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS දෝෂය" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS සම්බන්ධතාවය අසමත් විය:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS BLOB තොරතුරු ලබාගැනීම අසමත් විය:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "BLOB අන්තර්ගත-ප්‍රකාරය ලබාගැනීම අසමත් විය:" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "දසුන නරඹන්න" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Play audio" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "වීඩියෝ නරඹන්න" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "ගොනුව බාගත කරන්න" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "ගොනුව විවෘත කිරීමට නොහැකි විය: %s" @@ -2657,7 +2657,7 @@ msgid "Documentation" msgstr "ලියකියවිලි" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL විමසුම" @@ -2667,7 +2667,7 @@ msgstr "SQL විමසුම" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2716,7 +2716,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "පේළිගත" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2819,7 +2819,7 @@ msgid "Click to toggle" msgstr "තේරීමට ක්ලික් කරන්න" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2839,8 +2839,8 @@ msgstr "සැකිල්ල" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "ඇතුල් කරන්න" @@ -2851,25 +2851,25 @@ msgstr "ඇතුල් කරන්න" msgid "Operations" msgstr "මෙහෙයුම්" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "පරිගණකය තුළ පිරික්සන්න:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3034,7 +3034,7 @@ msgid "Allow users to customize this value" msgstr "මෙම අගය වෙනස් කිරීමට භවිතා කරන්නන්ට ඉඩ දෙන්න" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "ප්‍රතිසකසන්න" @@ -5225,8 +5225,8 @@ msgstr "%s දත්තගබඩාවේ නව වගුවක් සාදන #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5549,7 +5549,7 @@ msgstr "යතුර අනුව තෝරන්න" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "විකල්ප" @@ -5616,7 +5616,7 @@ msgid "The row has been deleted" msgstr "පෙළ ඉවත් කරන ලදි" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Kill" @@ -6178,7 +6178,7 @@ msgstr "Available MIME types" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "දායකයා" @@ -6390,7 +6390,7 @@ msgstr "SQL ප්‍රතිළුල" msgid "Generated by" msgstr "උත්පාදනය කරන ලද්දේ" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." @@ -6492,7 +6492,7 @@ msgstr "" msgid "Table name" msgstr "වගුවේ නම" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "තීර නම්" @@ -6851,7 +6851,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "no description" @@ -6888,14 +6888,14 @@ msgid "Slave status" msgstr "උපතත්වයන් පෙන්වන්න" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "විචල්‍යය" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "අගය" @@ -6955,7 +6955,7 @@ msgstr "මුරපදය උත්පාදනය කරන්න" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -6995,16 +6995,16 @@ msgstr "" msgid "Edit event" msgstr "සේවාදායකය සංස්කරණය කරන්න" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7021,7 +7021,7 @@ msgstr "සිදුවීමේ වර්ගය" msgid "Event type" msgstr "සිදුවීමේ වර්ගය" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7049,7 +7049,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "අවසානය‍" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7062,12 +7062,12 @@ msgstr "විස්තරය" msgid "On completion preserve" msgstr "සම්පූර්ණ ඇතුළු කිරීම්" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7115,7 +7115,7 @@ msgid "Returns" msgstr "වගු විකල්ප" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "වේලාව" @@ -7131,7 +7131,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7153,128 +7153,128 @@ msgstr "%s තීරුව හලන ලදි" msgid "Routine %1$s has been created." msgstr "%1$s වගුව සාදන ලදි." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "සංස්කරණ ප්‍රකාරය" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "නෛත්‍යක" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "ඍජු සබැඳුම" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "දිග/අගයන්" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add index" msgid "Add parameter" msgstr "සුචිය එක් කරන්න" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "දත්තගබඩාව ඉවත් කරන්න" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "දිග/අගයන්" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "වගු විකල්ප" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "ආරක්ෂාව" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Allows executing stored routines." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "නෛත්‍යක" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "ශ්‍රිතය" @@ -7437,7 +7437,7 @@ msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැ #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7446,7 +7446,7 @@ msgstr "%s නමින් වගුවක් නොපවතියි!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7454,9 +7454,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7470,111 +7470,111 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relational schema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "පටුන" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "ගුණාංග" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "අතිරේක" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "නව පිටුවක් සාදන්න" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "පිටුවේ නම" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "ස්වයංක්‍රීය සැලැසුම සඳහා පදනම් කර ගත යුත්තේ" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "අභ්‍යන්තර සබඳතා" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "අන්‍ය මූල" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "සංස්කරණය සඳහා පිටුවක් තෝරාගන්න" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "වගු තෝරන්න" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "වගු තෝරන්න" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relational schema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "කොටු සැලැස්ම පෙන්වන්න" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "වර්ණය පෙන්වන්න" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "වගු වල මාන පෙන්වන්න" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "සියලු වගු එකම ප්‍රමාණයෙන් පෙන්වන්න" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "මූල පමණක් පෙන්වන්න" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "තිරස් දිශානතිය" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "සිරස් දිශානතිය" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "සෑදීම" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "පිටුවේ ප්‍රමාණය" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7582,17 +7582,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "%1$s නොදන්නා භාෂාවකි." @@ -7670,11 +7670,11 @@ msgstr "දින දර්ශනය" msgid "Columns" msgstr "තීර නම්" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" @@ -8137,7 +8137,7 @@ msgstr "ප්‍රෝටකෝල අනුවාදය" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "භාවිතා කරන්නා" @@ -8335,7 +8335,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8412,39 +8412,39 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "පිටුව සාදන ලදි" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "පිටුව සෑදීම අසමත් විය" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "පිටුව" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "තෝරාගත් පිටු ආනයනය කරන්න" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "තෝරාගත් පිටු අපනයනය කරන්න" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "පිටුවක් සාදා අපනයනය කරන්න" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "නව පිටු නාමය: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8554,12 +8554,12 @@ msgstr "ගොනු ආනයනය" msgid "All" msgstr "සියලු" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s table not found or not set in %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "ගොනුව නොපවතියි" @@ -8571,13 +8571,13 @@ msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය ත msgid "Files" msgstr "ගොනු" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Truncate Shown Queries" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "සම්පූර්ණ විමසුම් පෙන්වන්න" @@ -9398,8 +9398,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "ඇරඹුම් පිටුව රිසි සේ සකසන්න" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "පැයකට" @@ -9420,18 +9420,18 @@ msgstr "ප්‍රකාශය" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9439,15 +9439,15 @@ msgstr "" "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී master හා slave " "ලෙස ක්‍රියාකරයි." -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී master ලෙස ක්‍රියාකරයි." -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "මෙම MySQL සේවාදායකය අනුරූකරණ ක්‍රියාවලියේදී slave ලෙස ක්‍රියාකරයි." -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9455,11 +9455,11 @@ msgstr "" "සේවාදායකයේ අනුරූකරණ තත්වය පිළිබඳ වැඩි විස්තර සඳහා කරුණාකර අනුරූකරණ අංශය වෙත යන්න" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "අනුරූ කරණයේ තත්වය" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9467,47 +9467,47 @@ 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "ලබන ලද" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "යවන ලද" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "උපරිම සමගාමී සම්බන්ධතා" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "අසාර්ථක උත්සාහයන්" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "අත්හැර දමන ලදි" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "හැඳුනුම් අංකය" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "විධානය" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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 fsync() writes done to the log file." -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -9517,16 +9517,16 @@ msgstr "" "exceeded the value of binlog_cache_size and used a temporary file to store " "statements from the transaction." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9538,98 +9538,98 @@ msgstr "" "to increase the tmp_table_size value to cause temporary tables to be memory-" "based instead of disk-based." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "How many temporary files mysqld has created." -#: server_status.php:1195 -msgid "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." -msgstr "" -"The number of in-memory temporary tables created automatically by the server " -"while executing statements." - #: server_status.php:1196 msgid "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." msgstr "" -"The number of rows written with INSERT DELAYED for which some error occurred " -"(probably duplicate key)." +"The number of in-memory temporary tables created automatically by the server " +"while executing statements." #: server_status.php:1197 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:1198 +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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "The number of INSERT DELAYED rows written." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "The number of executed FLUSH statements." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "The number of internal COMMIT statements." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 -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 "" -"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." - #: server_status.php:1203 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 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 "" -"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 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." #: server_status.php:1204 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 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 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 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:1205 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." +"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 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." +"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:1206 msgid "" -"The number of requests to read the previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." +"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 previous row in key order. This read " -"method is mainly used to optimize ORDER BY ... DESC." +"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:1207 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 optimize ORDER BY ... DESC." + +#: server_status.php:1208 +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 " @@ -9640,7 +9640,7 @@ msgstr "" "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:1208 +#: server_status.php:1209 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 " @@ -9652,47 +9652,47 @@ msgstr "" "tables are not properly indexed or that your queries are not written to take " "advantage of the indexes you have." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "The number of internal ROLLBACK statements." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "The number of pages containing data (dirty or clean)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "The number of pages currently dirty." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "නිදහස් පිටු ගණන." -#: server_status.php:1216 -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:1217 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:1218 +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 - " @@ -9703,40 +9703,40 @@ msgstr "" "be calculated as Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Total size of buffer pool, in pages." -#: server_status.php:1219 -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:1220 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:1221 +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:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "The number of logical read requests InnoDB has done." -#: server_status.php:1222 -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:1223 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:1224 +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 " @@ -9749,55 +9749,55 @@ msgstr "" "counter counts instances of these waits. If the buffer pool size was set " "properly, this value should be small." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "The number writes done to the InnoDB buffer pool." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "The number of fsync() operations so far." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "The current number of pending fsync() operations." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "The current number of pending reads." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "The current number of pending writes." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "The amount of data read so far, in bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "The total number of data reads." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "The total number of data writes." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "The amount of data written so far, in bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -9805,35 +9805,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "The number of log write requests." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "The number of physical writes to the log file." -#: server_status.php:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "The number of pending log file fsyncs." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Pending log file writes." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "The number of bytes written to the log file." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "The number of pages created." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9841,68 +9841,68 @@ 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "කියවන ලද පිටු ගණන." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "ලියන ලද පිටු ගණන." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "The number of row locks currently being waited for." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "The number of rows deleted from InnoDB tables." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "The number of rows inserted in InnoDB tables." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "The number of rows read from InnoDB tables." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "The number of rows updated in InnoDB tables." -#: server_status.php:1255 -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 "" -"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:1256 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 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 "" -"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 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:1257 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:1258 +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." @@ -9911,11 +9911,11 @@ msgstr "" "that indicates the maximum number of blocks that have ever been in use at " "one time." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -9925,15 +9925,15 @@ msgstr "" "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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -9943,17 +9943,17 @@ msgstr "" "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." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9961,70 +9961,70 @@ 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "The number of files that are open." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "The number of tables that are open." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "The amount of free memory for query cache." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "The number of cache hits." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "The number of queries added to the cache." -#: server_status.php:1273 -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:1274 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:1275 +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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "The number of queries registered in the cache." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "The total number of blocks in the query cache." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "The status of failsafe replication (not yet implemented)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10032,35 +10032,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:1279 +#: server_status.php:1280 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:1280 -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:1281 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:1282 +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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10068,26 +10068,26 @@ msgstr "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 -msgid "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." -msgstr "" -"The number of threads that have taken more than slow_launch_time seconds to " -"create." - #: server_status.php:1287 msgid "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." msgstr "" -"The number of queries that have taken more than long_query_time seconds." +"The number of threads that have taken more than slow_launch_time seconds to " +"create." #: server_status.php:1288 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:1289 +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." @@ -10096,36 +10096,36 @@ msgstr "" "is large, you should consider increasing the value of the sort_buffer_size " "system variable." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "The number of sorts that were done with ranges." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "The number of sorted rows." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 -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 " -"should first optimize your queries, and then either split your table or " -"tables or use replication." -msgstr "" -"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 " -"should first optimize your queries, and then either split your table or " -"tables or use replication." - #: server_status.php:1294 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 " +"should first optimize your queries, and then either split your table or " +"tables or use replication." +msgstr "" +"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 " +"should first optimize your queries, and then either split your table or " +"tables or use replication." + +#: server_status.php:1295 +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." @@ -10134,11 +10134,11 @@ msgstr "" "calculated as Threads_created/Connections. If this value is red you should " "raise your thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "The number of currently open connections." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10150,68 +10150,68 @@ msgstr "" "doesn't give a notable performance improvement if you have a good thread " "implementation.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "The number of threads that are not sleeping." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Startup" msgid "Start Monitor" msgstr "ඇරඹුම්" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "සුචිය එක් කරන්න" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "අලුත් කරන්න" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "ක්ෂේත්‍ර තීර එක් කරන්න/ඉවත් කරන්න" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "දෝෂ කළමනාකරණය:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "පෙරනිමි අගය ප්‍රතිස්ථාපනය කරන්න" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10220,7 +10220,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10228,11 +10228,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10240,7 +10240,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10248,11 +10248,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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,12 +10797,12 @@ msgstr "SQL විමසුම පෙන්වමින්" msgid "Validated SQL" msgstr "තහවුරු කරන ලද SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "ලේබලය" diff --git a/po/sk.po b/po/sk.po index c5014a7920..dcb8e21c46 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-07-27 15:32+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" @@ -21,10 +21,10 @@ msgstr "Zobraziť všetko" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Číslo stránky:" @@ -39,8 +39,8 @@ msgstr "" "bezpečnostných nastavení." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Hľadať" @@ -48,25 +48,25 @@ msgstr "Hľadať" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Kľúčový názov" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Popis" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Použiť túto hodnotu" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Nie je nastavený žiadny streamovací server!" @@ -128,7 +128,7 @@ msgstr "Databáza %1$s bola vytvorená." msgid "Database comment: " msgstr "Komentár k databáze: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Komentár k tabuľke" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Stĺpce" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Typ" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Nulový" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Predvolené" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Linkovať na" @@ -196,8 +196,8 @@ msgstr "Linkovať na" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Komentáre" @@ -208,7 +208,7 @@ msgstr "Komentáre" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Nie" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Upraviť alebo exportovať relačnú schému" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "práve sa používa" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Vytvorenie" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Posledná zmena" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Posledná kontrola" @@ -498,7 +498,7 @@ msgstr "Odošli dopyt" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Prístup odmietnutý" @@ -533,7 +533,7 @@ msgstr[1] "%s výskyty v tabuľke %s" msgstr[2] "%s výskytov v tabuľke %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Prechádzať" @@ -545,10 +545,10 @@ msgstr "Odstrániť nájdené záznamy z tabuľky %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -666,12 +666,12 @@ msgstr "Odznačiť všetko" msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportovať" @@ -681,13 +681,13 @@ msgstr "Exportovať" msgid "Print view" msgstr "Náhľad k tlači" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Vyprázdniť" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -721,7 +721,7 @@ msgstr "Nahradiť predponu tabuľky" msgid "Copy table with prefix" msgstr "Skopírovať tabuľku s predponou" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Dátový slovník" @@ -736,7 +736,7 @@ msgstr "Sledované tabuľky" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -756,7 +756,7 @@ msgstr "Aktualizované" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Stav" @@ -861,14 +861,14 @@ msgstr "" "Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si " "prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Súbor sa nedá prečítať" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -901,7 +901,7 @@ msgstr "Záznam z obľúbených bol zmazaný." msgid "Showing bookmark" msgstr "Zobrazujem obľúbený príkaz" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Príkaz %s bol zaradený medzi obľúbené" @@ -929,7 +929,7 @@ msgstr "" "časový limit behu skriptu v php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1044,9 +1044,9 @@ msgstr "Zavrieť" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Upraviť" @@ -1069,13 +1069,13 @@ msgstr "Statické data" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Celkom" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Ostatné" @@ -1105,7 +1105,7 @@ msgstr "Sieťová prevádzka (v KiB)" msgid "Connections since last refresh" msgstr "Spojení od posledného obnovenia" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Procesy" @@ -1132,7 +1132,7 @@ msgstr "Štatistika dopytov" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Nepodarilo sa načítať konfiguračný súbor" #: js/messages.php:94 @@ -1247,7 +1247,7 @@ msgstr "" msgid "Bytes received" msgstr "Prijaté" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Spojenia" @@ -1256,12 +1256,12 @@ msgstr "Spojenia" msgid "Questions" msgstr "Dopyty" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Vyťaženie" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Nastavenia" @@ -1286,7 +1286,7 @@ msgstr "Pridajte prosím aspoň jednu hodnotu do série" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Žiadny" @@ -1514,7 +1514,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" @@ -1688,7 +1688,7 @@ msgid "Query execution time" msgstr "Maximálny čas behu" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2114,27 +2114,27 @@ msgstr "Minúty" msgid "Second" msgstr "Sekundy" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Veľkosť písma" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Neznáma chyba pri nahrávaní súboru." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2142,27 +2142,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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Súbor bol nahraný len čiastočne." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Chýba adresár pre dočasné súbory." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Chyba pri zápise súboru na disk." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Nahrávanie súboru bolo zastavené rozšírením." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Neznáma chyba pri nahrávaní súboru." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2170,11 +2170,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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2202,7 +2202,7 @@ msgid "Cardinality" msgstr "Mohutnosť" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Komentár" @@ -2225,14 +2225,14 @@ msgstr "" "Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne " "odstránený." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Databázy" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2336,16 +2336,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nebola nájdená platná cesta k obrázkom pre vzhľad %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Náhľad nie je dostupný." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "zvoliť" @@ -2359,12 +2359,12 @@ msgstr "Predvolený vzhľad %s nebol nájdený!" msgid "Theme %s not found!" msgstr "Vzhľad %s nebol nájdený!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Nebola nájdená platná cesta ku vzhľadu %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Vzhľad" @@ -2373,7 +2373,7 @@ msgid "Cannot connect: invalid settings." msgstr "Nepodarilo sa pripojiť: chybné nastavenia." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Vitajte v %s" @@ -2398,57 +2398,57 @@ msgstr "" "Skontrolujte prosím meno serveru, používateľské meno a heslo v súbore config." "inc.php a s tým, ktoré ste dostali o administrátora MySQL servera." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Login" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin Dokumentácia" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Možete zadať medzerou oddelený hostname/IP adresu a port." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Používateľ:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Heslo:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Voľba serveru" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Cookies musia byť povolené, pokiaľ chcete pokračovať." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Prihlásenie bez hesla je zakázané v konfigurácií (pozri AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Boli ste neaktívni viac ako %s sekúnd, prihláste sa prosím znovu" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Nedá sa prihlásiť k MySQL serveru" @@ -2479,41 +2479,41 @@ msgstr "Nie je pripojený žiadny prihlasovací kľúč" msgid "Authenticating..." msgstr "Prihlasujem..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "Chyba PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "Pripojenie k PBMS zlyhalo:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "Získavanie informácii o BLOBe z PBMS zlyhalo:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "Získavanie Content-Type BLOBu zlyhalo" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Zobraziť obrázok" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Prehrať zvuk" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Prehrať video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Stiahnuť súbor" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Nemôžem otvoriť súbor: %s" @@ -2652,7 +2652,7 @@ msgid "Documentation" msgstr "Dokumentácia" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL dopyt" @@ -2662,7 +2662,7 @@ msgstr "SQL dopyt" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2711,7 +2711,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Upraviť tu" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profilovanie" @@ -2811,7 +2811,7 @@ msgid "Click to toggle" msgstr "Kliknite pre prepnutie" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2831,8 +2831,8 @@ msgstr "Štruktúra" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Vložiť" @@ -2843,25 +2843,25 @@ msgstr "Vložiť" msgid "Operations" msgstr "Operácie" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Prechádzať váš počítač:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvoľte súbor z upload adresára %s web servera:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Adresár určený pre upload súborov sa nedá otvoriť" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Žiadny súbor pre nahrávanie" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Spustiť" @@ -3026,7 +3026,7 @@ msgid "Allow users to customize this value" msgstr "Povoliť užívateľom prispôsobiť túto hodnotu" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Vynulovať" @@ -5343,8 +5343,8 @@ msgstr "Vytvoriť novú tabuľku v databáze %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5656,7 +5656,7 @@ msgstr "Zoradiť podľa kľúča" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Nastavenia" @@ -5716,7 +5716,7 @@ msgid "The row has been deleted" msgstr "Riadok bol zmazaný" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Zabiť" @@ -6268,7 +6268,7 @@ msgstr "Zobraziť MIME typy" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Hostiteľ" @@ -6478,7 +6478,7 @@ msgstr "výsledok SQL" msgid "Generated by" msgstr "Vygenerované" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." @@ -6578,7 +6578,7 @@ msgstr "" msgid "Table name" msgstr "Názov tabuľky" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Názvy stĺpcov" @@ -6935,7 +6935,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "bez Popisu" @@ -6973,14 +6973,14 @@ msgid "Slave status" msgstr "Zobraziť stav podriadených hostov" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Premenná" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Hodnota" @@ -7042,7 +7042,7 @@ msgstr "Vytvoriť Heslo" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7082,14 +7082,14 @@ msgstr "Pri zpracovaní požadavky došlo k niekoľkým chybám:" msgid "Edit event" msgstr "Webový server" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Chyba pri spracovaní požiadavky" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Podrobnosti" @@ -7104,7 +7104,7 @@ msgstr "Typ udalosti" msgid "Event type" msgstr "Typ udalosti" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7136,7 +7136,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Koniec" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7149,12 +7149,12 @@ msgstr "Popis" msgid "On completion preserve" msgstr "úplné vloženia" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7202,7 +7202,7 @@ msgid "Returns" msgstr "Návratový typ" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Čas" @@ -7221,7 +7221,7 @@ msgstr "" "Aby ste sa vyhli týmto problémom, použite prosím nové rozšírenie 'mysqli'." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Chybný typ rutiny: \"%s\"" @@ -7240,100 +7240,100 @@ msgstr "Rutina %1$s bola zmenená." msgid "Routine %1$s has been created." msgstr "Rutina %1$s bola vytvorená." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Upraviť rutinu" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Názvy stĺpcov" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Priame odkazy" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Dĺžka/Nastaviť*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy msgid "Add parameter" msgstr "Odstrániť index/indexy" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Odstrániť databázu" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Návratový typ" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Dĺžka/Nastaviť*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Parametre tabuľky" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Zabezpečenie" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7341,22 +7341,22 @@ msgstr[0] "Posledným príkazom v procedúre bol ovplyvnený %d riadok" msgstr[1] "Posledným príkazom v procedúre boli ovplyvnené %d riadky" msgstr[2] "Posledným príkazom v procedúre bolo ovplyvnených %d riadkov" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Výsledky spustenia rutiny %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Spustiť rutinu" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funkcia" @@ -7509,7 +7509,7 @@ msgstr "Nie sú žiadne udalosti na zobrazenie." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7518,7 +7518,7 @@ msgstr "Tabuľka %s neexistuje!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7526,9 +7526,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Prosím skonfigurujte koordináty pre tabuľku %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schéma databázy %s - Strana %s" @@ -7541,105 +7541,105 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relačná schéma" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Obsah" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atribúty" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Vytvoriť novú Stránku" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Názov stránky" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Automatické rozvrhnutie podľa" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Interné vzťahy" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Prosím zvolte si Stránku, ktorú chcete upraviť" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Zvoliť stránku" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Vybrať Tabuľky" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Zobraziť relačnú schému" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Zobraziť mriežku" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Zobraziť farbu" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Zobraziť rozmery tabuliek" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Zobraziť všetky tabuľky s rovnakou šírkou" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Na šírku" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Na výšku" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Orientácia" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Veľkosť stránky" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7647,17 +7647,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "zobraziť grafický návrh" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Neznámy jazyk: %1$s." @@ -7730,11 +7730,11 @@ msgstr "Vyčistiť" msgid "Columns" msgstr "Stĺpce" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Dovoliť používať túto položku všetkým používateľom" @@ -8151,7 +8151,7 @@ msgstr "Verzia protokolu" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Používateľ" @@ -8352,7 +8352,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export koordináty pre PDF schému" @@ -8425,39 +8425,39 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Stránka bola vytvorená" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Stránka" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Importovať zo zvolenej stránky" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Exportovať na zvolenú stránku" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Vytvoriť novú stránku a exportovať do nej" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Nový názov stránky: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8569,12 +8569,12 @@ msgstr "Importovať súbory" msgid "All" msgstr "Všetko" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabuľka %s nebola nájdená alebo nie je nastavená v %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Súbor neexistuje" @@ -8586,13 +8586,13 @@ msgstr "Vyberte binárny log na zobrazenie" msgid "Files" msgstr "Súbory" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Zobraziť skrátene dopyty" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Zobraziť kompletné dopyty" @@ -9412,8 +9412,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Prispôsobenie úvodnej stránky" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "za hodinu" @@ -9434,18 +9434,18 @@ msgstr "Údaj" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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 "Tento server beží %s. Bol spustený %s." -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9453,18 +9453,18 @@ msgstr "" "Tento server je nakonfigurovaný ako master a slave v " "replikačnom procese." -#: server_status.php:963 +#: server_status.php:964 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:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" "Tento MYSQL server pracuje ako slave v replikačnom procese." -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9472,11 +9472,11 @@ msgstr "" "Pre viac informácií o stave replikácie na tomto serveri navštívte prosím sekciu replikácie." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Stav replikácie" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9484,45 +9484,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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Prijaté" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Odoslané" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "max. súčasných pripojení" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Nepodarených pokusov" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Prerušené" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Príkaz" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 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:1190 +#: server_status.php:1191 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 " @@ -9532,16 +9532,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:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9553,11 +9553,11 @@ msgstr "" "hodnotu tmp_table_size aby boli dočasné tabuľky ukladané do pamäte a nie na " "disk." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Počet dočasných súborov vytvorených servrom mysqld." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9565,7 +9565,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:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9573,7 +9573,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:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9581,23 +9581,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Počet riadkov vložených príkazom INSERT DELAYED." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Počet vykonaných príkazov FLUSH." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Počet interných príkazov COMMIT." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9607,7 +9607,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:1203 +#: server_status.php:1204 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, " @@ -9617,7 +9617,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:1204 +#: server_status.php:1205 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." @@ -9625,7 +9625,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:1205 +#: server_status.php:1206 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 " @@ -9635,7 +9635,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:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9644,7 +9644,7 @@ msgstr "" "čítacia metóda sa použiva hlavne na optimalizáciu príkazov typu ORDER BY ... " "DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9657,7 +9657,7 @@ msgstr "" "kompletne prehľadávať tabuľky, alebo sa používajú zjednotenia, ktoré správne " "nevyužívajú kľúče." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9669,35 +9669,35 @@ msgstr "" "tabuľky nie sú správne indexované alebo príkazy nedostatočne využívajú " "dostupné indexy." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Počet interných príkazov ROLLBACK." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 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:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Počet nečistých stránok." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Počet voľných stránok." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9707,7 +9707,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:1217 +#: server_status.php:1218 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 " @@ -9719,11 +9719,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:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Celkový počet stránok vo vyrovnávacej pamäti InnoDB." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9731,7 +9731,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9739,11 +9739,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:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Počet požiadavkov na logické načítavanie." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9751,7 +9751,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:1223 +#: server_status.php:1224 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 " @@ -9765,88 +9765,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:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Počet zápisov do vyrovnávacej pamäte InnoDB." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Počet vykonaných fsync() operácií." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Aktuálny počet prebiehajúcich fsync() operácií." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Počet aktuálne prebiehajúcich načítavaní." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Počet aktuálne prebiehajúcich zápisov." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Množstvo už načítaných dát, v bajtoch." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Celkový počet načítaní dát." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Celkový počet zápisov dát." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Množstvo už zapísaných dát, v bajtoch." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Počet požiadaviek na zápis do logovacieho súboru." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Počet fyzických zápisov do logovacieho súboru." -#: server_status.php:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Počet prebiehajúcich synchronizácií logovacieho súboru." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Počet prebiehajúcich zápisov do logovacieho súboru." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Množstvo bajtov zapísaných do logovacieho súboru." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Počet vytvorených stránok." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9855,51 +9855,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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Počet načítaných stránok." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Počet zapísaných stránok." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Počet zámkov na riadky, na ktoré sa čaká." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Počet riadkov odstránených z InnoDB tabuliek." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Počet riadkov vložených do InnoDB tabuliek." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Počet načítaných riadkov z InnoDB tabuliek." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Počet upravených riadkov v InnoDB tabuľkách." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -9908,7 +9908,7 @@ msgstr "" "neboli zapísané na disk. Predtým sa táto hodnota nazývala " "Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -9916,7 +9916,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:1257 +#: server_status.php:1258 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 " @@ -9925,11 +9925,11 @@ 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:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -9940,15 +9940,15 @@ 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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -9959,17 +9959,17 @@ msgstr "" "požiadavku. Prednastavená hodnota 0 znamená, že doposiaľ neboli skompilované " "žiadne príkazy." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9977,38 +9977,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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Počet otvorených súborov." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Počet práve otvorených tabuliek." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 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:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Počet zásahov vyrovnávacej pamäti." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Počet príkazov pridaných do vyrovnávacej pamäti." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10020,7 +10020,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:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10028,19 +10028,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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Počet príkazov registrovaných vo vyrovnávacej pamäti." -#: server_status.php:1276 +#: server_status.php:1277 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:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stav failsafe replikácie (zatiaľ neimplementované)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10048,12 +10048,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10062,7 +10062,7 @@ msgstr "" "(ak táto hodnota nie je 0, mali by ste starostlivo skontrolovať indexy " "vašich tabuliek.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10070,15 +10070,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10086,13 +10086,13 @@ msgstr "" "Celkový počet (od spustenia) pokusov replikačného podriadeného SQL vlákna o " "znovuobnovenie transakcie." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10100,14 +10100,14 @@ msgstr "" "Počet vlákien, ktorých vytvorenie zabralo viac ako je hodnota " "slow_launch_time." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10117,23 +10117,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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Počet rozsahom obmedzených zoraďovaní." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Počet zoradených riadkov." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10145,7 +10145,7 @@ msgstr "" "najprv optimalizovať vaše príkazy a potom buď rozdeliť tabuľku/tabuľky alebo " "použiť replikáciu." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10155,11 +10155,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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Počet momentálne otvorených spojení." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10170,69 +10170,69 @@ 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:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Počet nespiacich vlákien." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Štart" -#: server_status.php:1445 +#: server_status.php:1446 #, fuzzy #| msgid "Introduction" msgid "Instructions/Setup" msgstr "Úvod" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy msgid "Add chart" msgstr "Odstrániť index/indexy" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Obnoviť" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "Stĺpce s textovou oblasťou" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Obnoviť východziu hodnotu" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy #| msgid "Introduction" msgid "Monitor Instructions" msgstr "Úvod" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10241,7 +10241,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10249,11 +10249,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10261,7 +10261,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10269,11 +10269,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10810,12 +10810,12 @@ msgstr "Zobrazujem SQL dotaz" msgid "Validated SQL" msgstr "Skontrolované SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexami v tabuľke `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Názov" diff --git a/po/sl.po b/po/sl.po index d30300cc77..4f75e8f558 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-11 18:40+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" @@ -22,10 +22,10 @@ msgstr "Pokaži vse" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Številka strani:" @@ -39,8 +39,8 @@ msgstr "" "pa vaš brskalnik blokira osveževanje varnostnih parametrov med okni." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Iskanje" @@ -48,25 +48,25 @@ msgstr "Iskanje" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Ime ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Opis" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Uporabi to vrednost" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Strežnik za pretakanje blob ni konfiguriran!" @@ -128,7 +128,7 @@ msgstr "Zbirka podatkov %1$s je ustvarjena." msgid "Database comment: " msgstr "Pripomba zbirke podatkov: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Pripomba tabele" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Stolpec" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Vrsta" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Privzeto" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Povezave z" @@ -196,8 +196,8 @@ msgstr "Povezave z" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Pripombe" @@ -208,7 +208,7 @@ msgstr "Pripombe" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Uredi ali izvozi relacijsko shemo" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "v uporabi" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Ustvarjeno" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Zadnjič posodobljeno" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Zadnjič pregledano" @@ -498,7 +498,7 @@ msgstr "Izvedi poizvedbo" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Dostop zavrnjen" @@ -534,7 +534,7 @@ msgstr[2] "%s zadetki v tabeli %s" msgstr[3] "%s zadetkov v tabeli %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Prebrskaj" @@ -546,10 +546,10 @@ msgstr "Izbrišem zadetke v tabeli %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -667,12 +667,12 @@ msgstr "Odznači vse" msgid "Check tables having overhead" msgstr "Preveri prekoračene" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Izvozi" @@ -682,13 +682,13 @@ msgstr "Izvozi" msgid "Print view" msgstr "Pogled za tiskanje" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Izprazni" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -722,7 +722,7 @@ msgstr "Zamenjaj predpono tabele" msgid "Copy table with prefix" msgstr "Kopiraj tabelo s predpono" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Slovar podatkov" @@ -737,7 +737,7 @@ msgstr "Sledene tabele" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -757,7 +757,7 @@ msgstr "Posodobljeno" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Stanje" @@ -862,14 +862,14 @@ msgstr "" "Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si " "%sdokumentacijo%s za načine, kako obiti to omejitev." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Ne morem prebrati datoteke" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -901,7 +901,7 @@ msgstr "Zaznamek je odstranjen." msgid "Showing bookmark" msgstr "Prikazovanje zaznamka" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Zaznamek %s je ustvarjen" @@ -929,7 +929,7 @@ msgstr "" "povečate vaše časovne omejitve PHP." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1045,9 +1045,9 @@ msgstr "Zapri" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Uredi" @@ -1070,13 +1070,13 @@ msgstr "Statični podatki" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Skupaj" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Drugo" @@ -1106,7 +1106,7 @@ msgstr "Promet strežnika (v KiB)" msgid "Connections since last refresh" msgstr "Povezav od zadnje osvežitve" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Procesi" @@ -1131,7 +1131,7 @@ msgstr "Statistika poizvedb" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Ne morem prebrati konfiguracijske datoteke" #: js/messages.php:94 @@ -1230,7 +1230,7 @@ msgstr "Poslanih bajtov" msgid "Bytes received" msgstr "Prejetih bajtov" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Povezave" @@ -1239,12 +1239,12 @@ msgstr "Povezave" msgid "Questions" msgstr "Vprašanja" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Promet" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Nastavitve" @@ -1267,7 +1267,7 @@ msgstr "Prosimo, v serijo dodajte vsaj eno spremenljivko" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Brez" @@ -1493,7 +1493,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Uvozi" @@ -1656,7 +1656,7 @@ msgid "Query execution time" msgstr "Čas izvajanja poizvedbe" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2075,23 +2075,23 @@ msgstr "Minuta" msgid "Second" msgstr "Sekunda" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Velikost pisave" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "Datoteka ni naložen datoteka." -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "Neznana napaka pri nalaganju." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2099,27 +2099,27 @@ msgstr "" "Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu " "HTML." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Naložena datoteka je bila naložena samo delno." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Manjka začasna mapa." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Pisanje datoteke na disk je spodletelo." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Nalaganje datoteke je ustavila razširitev." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Neznana napaka pri nalaganju datoteke." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2127,11 +2127,11 @@ msgstr "" "Napaka pri premikanju naložene datoteke, glej [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "Napaka pri premikanju naložene datoteke." -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "Ne morem prebrati (premakniti) naložene datoteke." @@ -2159,7 +2159,7 @@ msgid "Cardinality" msgstr "Kardinalnost" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Pripomba" @@ -2182,14 +2182,14 @@ msgstr "" "Kaže, da sta indeksa %1$s in %2$s enaka, zato se enega od njiju morda lahko " "odstrani." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Zbirke podatkov" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2292,16 +2292,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Za temo %s ni bila najdena veljavna pot slik!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Predogled ni na voljo." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "uporabi" @@ -2315,12 +2315,12 @@ msgstr "Privzeta tema %s ni bila najdena!" msgid "Theme %s not found!" msgstr "Tema %s ni bila najdena!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Pot teme ni bila najdena za temo %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Motiv" @@ -2329,7 +2329,7 @@ msgid "Cannot connect: invalid settings." msgstr "Povezava ni mogoča: neveljavne nastavitve." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Dobrodošli v %s" @@ -2354,57 +2354,57 @@ msgstr "" "povezavo. Preverite, ali gostitelj, uporabniško ime in geslo v datoteki " "config.inc.php ustrezajo podatkom administratorja strežnika MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Prijava" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Dokumentacija phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Vnesete lahko ime gostitelja/IP-naslov in vrata ločena s presledkom." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Strežnik:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Uporabniško ime:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Geslo:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Izbira strežnika" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Če želite še naprej uporabljati program, morate omogočiti piškotke." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" "Prijava brez gesla je prepovedana s konfiguracijo (glej AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Brez aktivnosti v zadnjih %s sekundah; prosimo, prijavite se znova" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Ne morem se prijaviti v strežnik MySQL" @@ -2435,39 +2435,39 @@ msgstr "Vstavljen ni noben overitveni ključ" msgid "Authenticating..." msgstr "Potrjevanje ..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "Napaka PBMS" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "Povezava s PBMS je spodletela:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "Pridobivanje informacij BLOB PBMS je spodletelo:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "Pridobivanje Content-Type BLOB PBMS je spodletelo" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Ogled slike" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Predvajaj avdio" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Ogled videa" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Prenesi datoteko" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Ne morem odpreti datoteke: %s" @@ -2608,7 +2608,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "Poizvedba SQL" @@ -2618,7 +2618,7 @@ msgstr "Poizvedba SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2667,7 +2667,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "V vrstici" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profiliranje" @@ -2758,7 +2758,7 @@ msgid "Click to toggle" msgstr "Kliknite za preklop" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2778,8 +2778,8 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Vstavi" @@ -2790,25 +2790,25 @@ msgstr "Vstavi" msgid "Operations" msgstr "Operacije" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Prebrskajte svoj računalnik:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Nobene datoteke ni za naložiti" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Izvedi" @@ -2974,7 +2974,7 @@ msgid "Allow users to customize this value" msgstr "Dovoli uporabnikom prilagajati to vrednost" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Ponastavi" @@ -5293,8 +5293,8 @@ msgstr "Ustvari novo tabelo v podatkovni zbirki %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5604,7 +5604,7 @@ msgstr "Uredi po ključu" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Možnosti" @@ -5664,7 +5664,7 @@ msgid "The row has been deleted" msgstr "Vrstica je izbrisana" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Prekini proces" @@ -6257,7 +6257,7 @@ msgstr "Prikaži vrste MIME" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Gostitelj" @@ -6484,7 +6484,7 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Ustvaril" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." @@ -6588,7 +6588,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Ime tabele" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Imena stolpcev" @@ -6947,7 +6947,7 @@ msgstr "" "Ponovno se prijavite v phpMyAdmin, da naložite posodobljeno konfiguracijsko " "datoteko." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "brez opisa" @@ -6985,14 +6985,14 @@ msgid "Slave status" msgstr "Stanje podrejenca" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Spremenljivka" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Vrednost" @@ -7056,7 +7056,7 @@ msgstr "Ustvari geslo" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7091,14 +7091,14 @@ msgstr "Med obdelovanjem vaše zahteve je prišlo do ene ali več napak:" msgid "Edit event" msgstr "Uredi dogodek" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Napaka v obdelovanju zahteve" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Podrobnosti" @@ -7111,7 +7111,7 @@ msgstr "Ime dogodka" msgid "Event type" msgstr "Vrsta dogodka" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Spremeni v %s" @@ -7134,7 +7134,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Konec" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Opredelitev" @@ -7143,12 +7143,12 @@ msgstr "Opredelitev" msgid "On completion preserve" msgstr "Ob dokončanju ohrani" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "Opredeljevalec" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "Opredeljevalec mora biti oblike \"uporabniškoime@imegostitelja\"" @@ -7194,7 +7194,7 @@ msgid "Returns" msgstr "Vrnjeno" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Čas" @@ -7214,7 +7214,7 @@ msgstr "" "težavam." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Neveljavna vrsta rutine: \"%s\"" @@ -7233,69 +7233,69 @@ msgstr "Rutina %1$s je bila spremenjena." msgid "Routine %1$s has been created." msgstr "Rutina %1$s je bila ustvarjena." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Uredi rutino" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Ime rutine" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Parametri" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Smer" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Dolžina/Vrednosti" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Dodaj parameter" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Odstrani zadnji parameter" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Vrnjena vrsta" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Vrnjena dolžina/vrednosti" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Vrnjene možnosti" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "Je deterministično" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Vrsta varnosti" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "Dostop do podatkov SQL" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "Navesti morate ime rutine" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Neveljavna smer \"%s\" podana za parameter." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7303,19 +7303,19 @@ msgstr "" "Navesti morate dolžine/vrednosti za parametre rutine vrste ENUM, SET, " "VARCHAR in VARBINARY." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "Navesti morate ime in vrsto vsakega parametra rutine." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "Navesti morate veljavno vrsto vrnjene vrednosti dogodka." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "Navesti morate opredelitev rutine." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7324,22 +7324,22 @@ msgstr[1] "Zadnja izjava znotraj procedure je spremenila %d vrstici" msgstr[2] "Zadnja izjava znotraj procedure je spremenila %d vrstice" msgstr[3] "Zadnja izjava znotraj procedure je spremenila %d vrstic" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Rezultati izvedbe rutine %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Izvedi rutino" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Parametri rutine" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funkcija" @@ -7466,7 +7466,7 @@ msgstr "Ni dogodkov za prikaz." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7475,7 +7475,7 @@ msgstr "Tabela %s ne obstaja!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7483,9 +7483,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Prosimo, konfigurirajte koordinate za tabelo %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Shema zbirke podatkov %s - Stran %s" @@ -7498,105 +7498,105 @@ msgstr "Ta stran ne vsebuje nobenih tabel!" msgid "SCHEMA ERROR: " msgstr "NAPAKA SHEME: " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relacijska shema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Vsebina" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atributi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Dodatno" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Ustvari novo stran" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Ime strani" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Samodejna postavitev temelječa na" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Notranja razmerja" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Izberite stran za urejanje" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Izberi stran" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Izberi tabele" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Prikaži relacijsko shemo" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Izberite relacijsko vrsto izvoza" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Pokaži mrežo" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Pokaži barvo" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Pokaži dimenzije tabel" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Prikaži vse tabele enake širine" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Prikaži samo ključe" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Ležeče" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Pokončno" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Usmerjenost" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Velikost papirja" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7604,17 +7604,17 @@ msgstr "" "Trenutna stran vsebuje sklice na tabele, ki ne obstajajo več. Ali želite " "izbrisati te sklice?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Preklopi odložišče (scratchboard)" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Neznani jezik: %1$s." @@ -7687,11 +7687,11 @@ msgstr "Počisti" msgid "Columns" msgstr "Stolpci" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Označi to poizvedbo SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Dovoli dostop do zaznamka vsem uporabnikom" @@ -8118,7 +8118,7 @@ msgstr "Različica protokola" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Uporabnik" @@ -8329,7 +8329,7 @@ msgstr "Skrči/razširi vse" msgid "Toggle small/big" msgstr "Preklopi majhno/veliko" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Uvozi/Izvozi koordinate za PDF-shemo" @@ -8401,39 +8401,39 @@ msgstr "" "prikazni stolpec, kliknite ikono \"Izberite stolpec za prikaz\", nato pa " "kliknite na ustrezno ime stolpca." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Stran je bila ustvarjena" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Ustvarjanje strani je spodletelo" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Stran" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Uvozi z izbrane strani" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Izvozi na izbrano stran" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Ustvari stran in izvozi nanjo" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Ime nove strani: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Izvozi/Uvozi v razmerju" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "priporočeno" @@ -8544,12 +8544,12 @@ msgstr "Uvozi datoteke" msgid "All" msgstr "Vse/Vsi" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Tabele %s ni mogoče najti ali pa ni v %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Datoteka ne obstaja" @@ -8561,13 +8561,13 @@ msgstr "Izberite dvojiški dnevnik za pregled" msgid "Files" msgstr "Datoteke" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Skrči prikazane poizvedbe" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Pokaži celotne poizvedbe" @@ -9390,8 +9390,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Vprašanja od zagona: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "na uro" @@ -9412,17 +9412,17 @@ msgstr "Izjave" msgid "#" msgstr "Št." -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Promet omrežja od zagona: %s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9430,18 +9430,18 @@ msgstr "" "Strežnik MySQL deluje kot glavni strežnik in podrejenec v " "postopku podvojevanja." -#: server_status.php:963 +#: server_status.php:964 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:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" "Strežnik MySQL deluje kot podrejenec v postopku podvojevanja." -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9449,11 +9449,11 @@ msgstr "" "Za več informacij o stanju podvojevanja na tem strežniku, prosimo obiščite " "razdelek o podvojevanju." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Stanje podvojevanja" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9461,35 +9461,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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Prejeto" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Poslano" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Največ sočasnih povezav" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Neuspeli poizkusi" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Prekinjeno" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Ukaz" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -9497,11 +9497,11 @@ msgstr "" "Število prekinjenih povezav zaradi izgube odjemalca, ki ni primerno prekinil " "povezave." -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "Število spodletelih poskusov povezave s strežnikom MySQL." -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -9511,18 +9511,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:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 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:1193 +#: server_status.php:1194 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 " @@ -9534,11 +9534,11 @@ msgstr "" "povečati vrednost tmp_table_size, zaradi česar bodo začasne tabele temeljile " "na pomnilniku namesto na disku." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Koliko začasnih datotek je ustvaril mysqld." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9546,7 +9546,7 @@ msgstr "" "Število začasnih tabel v-pomnilniku, ki jih je strežnik samodejno ustvaril " "med izvajanjem stavkov." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9554,7 +9554,7 @@ msgstr "" "Število vrstic zapisanih z INSERT DELAYED, pri katerih je prišlo do neke " "napake (najverjetneje podvojen ključ)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9562,23 +9562,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Število zapisanih vrstic INSERT DELAYED." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Število izvedenih izjav FLUSH." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Število notranjih izjav COMMIT." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Število izbrisov vrstice iz tabele." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -9588,7 +9588,7 @@ msgstr "" "navedenim imenom. Temu se reče odkritje. Handler_discover kaže koliko krat " "so bile tabele odkrite." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9598,7 +9598,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:1204 +#: server_status.php:1205 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." @@ -9607,7 +9607,7 @@ msgstr "" "visoka, je to dober znak, da so vaše poizvedbe in tabele primerno " "indeksirane." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9617,7 +9617,7 @@ msgstr "" "povečano, če poizvedujete po indeksnem stolpcu z omejitvijo obsega ali če " "pregledujete indeks." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9625,7 +9625,7 @@ msgstr "" "Število poizvedb za branje prejšnje vrstice v zaporedju ključa. Ta postopek " "branja se uporablja predvsem za optimizacijo ORDER BY ... DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9637,7 +9637,7 @@ msgstr "" "Najverjetneje imate veliko poizvedb, ki od MySQL zahtevajo pregled celotnih " "tabel, ali stike, ki ne uporabljajo ključev pravilno." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9649,36 +9649,36 @@ msgstr "" "tabele niso primerno indeksirane ali da vaše poizvedbe ne izkoristijo " "prednosti indeksov, ki jih imate." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Število notranjih izjav ROLLBACK." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Število zahtev za posodobitev vrstice v tabeli." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Število zahtev za vstavitev vrstice v tabelo." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Število strani, ki vsebujejo podatke (umazane ali čiste)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Število trenutno umazanih strani." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Število prostih strani." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9688,7 +9688,7 @@ msgstr "" "trenutno v postopku branja ali pisanja ali pa zaradi nekega drugega razloga " "ne morejo biti izplaknjene ali odstranjene." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9700,11 +9700,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:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Skupna velikost zaloge medpomnilnika, v straneh." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9712,7 +9712,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9720,11 +9720,11 @@ msgstr "" "Število začetih zaporednih vnaprejšnjih branj InnoDB. To se zgodi, ko InnoDB " "izvaja zaporedno pregledovanje celotne tabele." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Število logičnih bralnih zahtev, ki jih je izvedel InnoDB." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9732,7 +9732,7 @@ msgstr "" "Število logičnih bralnih zahtev, katerih InnoDB ni mogel izpolniti iz zaloge " "medpomnilnika in je moral izvesti enostransko branje." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -9746,52 +9746,52 @@ msgstr "" "teh čakanj. Če je bila velikost zaloge medpomnilnika primerno nastavljena, " "bi morala biti ta vrednost majhna." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Število zapisov storjenih v zalogi medpomnilnika InnoDB." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Število dozdajšnjih posegov fsync()." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Trenutno število čakajočih posegov fsync()." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Trenutno število čakajočih branj." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Trenutno število čakajočih pisanj." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Količina do zdaj prebranih podatkov, v bajtih." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Skupno število branj podatkov." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Skupno število zapisovanj podatkov." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Količina do zdaj zapisanih podatkov, v bajtih." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "Število posegov dvojnega pisanja (doublewrite), ki so bili izvedeni." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -9799,35 +9799,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Število zahtev pisanja v dnevnik." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Število fizičnih pisanj v dnevniško datoteko." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Število pisanj fsync() storjenih v dnevniško datoteko." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Število čakajoče dnevniške datoteke fsyncs." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Čakajoča pisanja v dnevniško datoteko." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Število bajtov zapisanih v dnevniško datoteko." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Število ustvarjenih strani." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9835,51 +9835,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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Število prebranih strani." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Število zapisanih strani." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Število zaklepov vrstic, na katere se trenutno čaka." -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Povprečni čas zagotovitve zaklepa vrstice, v milisekundah." -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Skupni čas zagotavljanja zaklepov vrstic, v milisekundah." -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Najdaljši čas zagotavljanja zaklepa vrstice, v milisekundah." -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "Število čakanj na zaklepe vrstic." -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Število vrstic izbrisanih iz tabel InnoDB." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Število vrstic vstavljenih v tabele InnoDB." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Število vrstic prebranih iz tabel InnoDB." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Število vrstic posodobljenih v tabelah InnoDB." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -9888,7 +9888,7 @@ msgstr "" "vendar niso bili izplaknjeni na disk. Včasih je bilo znano kot " "Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -9896,7 +9896,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:1257 +#: server_status.php:1258 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 " @@ -9906,11 +9906,11 @@ msgstr "" "dosežena vrednost, ki kaže največje število blokov, ki so bili kadar koli " "naenkrat v uporabi." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -9920,15 +9920,15 @@ 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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -9939,17 +9939,17 @@ msgstr "" "enake poizvedbe. Privzeta vrednost 0 pomeni, da še ni bila prevedena nobena " "poizvedba." -#: server_status.php:1263 +#: server_status.php:1264 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:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9957,19 +9957,19 @@ msgstr "" "Število odprtih tabel. Če je vrednost velika, je vaš predpomnilnik tabel " "najverjetneje premajhen." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Število odprtih datotek." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Število odprtih tabel." -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -9979,19 +9979,19 @@ msgstr "" "število lahko kaže na težave z razdrobljenostjo, kar lahko odpravite z " "izvedbo stavka FLUSH QUERY CACHE." -#: server_status.php:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Količina prostega spomina za predpomnilnik poizvedb." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Število zadetkov predpomnilnika." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Število poizvedb dodanih v predpomnilnik." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10004,7 +10004,7 @@ msgstr "" "uporablja strategijo nedavno najmanj uporabljanih (LRU), da odloči, katere " "poizvedbe naj odstrani iz predpomnilnika." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10012,19 +10012,19 @@ msgstr "" "Število nepredpomnjenih poizvedb (ne predpomnljive ali ne predpomnjene " "zaradi nastavitve query_cache_type)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Število zabeleženih poizvedb v predpomnilniku." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Skupno število blokov v predpomnilniku poizvedb." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Stanje podvajanja odpovedne varnosti (ni še vključeno)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10032,11 +10032,11 @@ msgstr "" "Število stikov, ki ne uporabljajo indeksov. Če ta vrednost ni 0, skrbno " "preverite indekse vaših tabel." -#: server_status.php:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10044,7 +10044,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:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10052,16 +10052,16 @@ msgstr "" "Število stikov, ki so uporabili območja na prvi tabeli. (Po navadi ni " "kritično, četudi je veliko.)" -#: server_status.php:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10069,11 +10069,11 @@ msgstr "" "Skupno (od zagona) število ponovnih poskusov transakcij podvojevalne niti " "SQL podrejenca." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10081,12 +10081,12 @@ msgstr "" "Število niti, ki so za svoje ustvarjanje porabile več kot slow_launch_time " "sekund." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10096,23 +10096,23 @@ msgstr "" "Če je ta vrednost velika, razmislite o povečanju sistemske spremenljivke " "sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Število razvrščanj, ki so bila storjena z razponi." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Število razvrščenih vrstic." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "Koliko krat je bil zaklep tabele pridobljen takoj." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10124,7 +10124,7 @@ msgstr "" "optimizirajte vaše poizvedbe, nato pa ali razdelite vašo tabelo oz. tabele " "ali uporabite podvojevanje." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10134,11 +10134,11 @@ msgstr "" "izračuna kot Threads_created/Connections. Če je ta vrednost rdeča, povečajte " "vaš thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Število trenutno odprtih povezav." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10149,61 +10149,61 @@ 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:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Število niti, ki ne spijo." -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "Začni nadziranje" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "Navodila/Namestitev" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "Preurejanje/urejanje grafikonov je končano" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "Dodaj grafikon" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "Preuredi/uredi grafikone" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Hitrost osveževanja" -#: server_status.php:1467 +#: server_status.php:1468 msgid "Chart columns" msgstr "Stolpci grafikona" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Upravljanje napak:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Povrni privzeto vrednost" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "Navodila nadziranja" -#: server_status.php:1489 +#: server_status.php:1490 #, fuzzy #| msgid "" #| "The phpMyAdmin Monitor can assist you in optimizing the server " @@ -10227,7 +10227,7 @@ msgstr "" " general_log ustvari ogromno podatkov in poveča obremenitev strežnika " "do 15 %." -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10235,13 +10235,13 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Postoj nadziranje" -#: server_status.php:1509 +#: server_status.php:1510 #, fuzzy #| msgid "" #| "Using the monitor:
\n" @@ -10274,7 +10274,7 @@ msgstr "" "statistike iz dnevnikov, kar vam bo pomagalo odkriti vzrok\n" " povečane dejavnosti.

" -#: server_status.php:1511 +#: server_status.php:1512 #, fuzzy #| msgid "" #| "Using the monitor:
\n" @@ -10307,11 +10307,11 @@ msgstr "" "statistike iz dnevnikov, kar vam bo pomagalo odkriti vzrok\n" " povečane dejavnosti.

" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 #, fuzzy #| msgid "" #| "Please note:\n" @@ -10905,12 +10905,12 @@ msgstr "Prikazovanje poizvedbe SQL" msgid "Validated SQL" msgstr "Preverjen SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Težave z indeksi tabele `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Oznaka" diff --git a/po/sq.po b/po/sq.po index 6f8f7e0906..78eb127faf 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" @@ -21,10 +21,10 @@ msgstr "Shfaqi të gjithë" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Numri i faqes:" @@ -39,8 +39,8 @@ msgstr "" "ndalojnë përditësimet nëpërmjet dritareve." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Kërko" @@ -48,25 +48,25 @@ msgstr "Kërko" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Emri i kyçit" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Përshkrimi" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Përdor këtë vlerë" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -126,7 +126,7 @@ msgstr "U krijua baza e të dhënave %1$s." msgid "Database comment: " msgstr "Komenti për databazën: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -135,8 +135,8 @@ msgstr "Komentet e tabelës" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Emrat e kollonave" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Lloji" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Prezgjedhur" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Lidhje me" @@ -196,8 +196,8 @@ msgstr "Lidhje me" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Komente" @@ -208,7 +208,7 @@ msgstr "Komente" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Jo " #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -368,7 +368,7 @@ msgstr "Skema relacionale" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -392,21 +392,21 @@ msgstr "në përdorim" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Krijimi" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Ndryshimi i fundit" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Kontrolli i fundit" @@ -510,7 +510,7 @@ msgstr "Dërgo Query" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Ndalohet hyrja" @@ -545,7 +545,7 @@ msgstr[0] "%s korrispondon(jnë) tek tabela %s" msgstr[1] "%s korrispondon(jnë) tek tabela %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Shfleto" @@ -558,10 +558,10 @@ msgstr "Dump i të dhënave për tabelën" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -687,12 +687,12 @@ msgstr "Asnjë zgjedhje" msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksporto" @@ -702,13 +702,13 @@ msgstr "Eksporto" msgid "Print view" msgstr "Shfaq për printim" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Zbraz" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -746,7 +746,7 @@ msgstr "Zëvendëso të dhënat e tabelës me file" msgid "Copy table with prefix" msgstr "Zëvendëso të dhënat e tabelës me file" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 #, fuzzy msgid "Data Dictionary" msgstr "Data Dictionary" @@ -762,7 +762,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -783,7 +783,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Gjendja" @@ -890,14 +890,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "File nuk mund të lexohet" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -923,7 +923,7 @@ msgstr "Libërshënuesi u fshi." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -946,7 +946,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1074,9 +1074,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Ndrysho" @@ -1102,13 +1102,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Gjithsej" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1140,7 +1140,7 @@ msgstr "Zgjedhja e serverit" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Proceset" @@ -1166,7 +1166,7 @@ msgid "Query statistics" msgstr "Statistikat e rreshtave" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1268,7 +1268,7 @@ msgstr "" msgid "Bytes received" msgstr "Marrë" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Lidhje" @@ -1278,12 +1278,12 @@ msgstr "Lidhje" msgid "Questions" msgstr "Operacione" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Trafiku" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1310,7 +1310,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Asnjë lloj" @@ -1534,7 +1534,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1734,7 +1734,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2211,59 +2211,59 @@ msgstr "në përdorim" msgid "Second" msgstr "në sekondë" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2291,7 +2291,7 @@ msgid "Cardinality" msgstr "" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2313,14 +2313,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Databazat" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2421,16 +2421,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "merre" @@ -2444,12 +2444,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2458,7 +2458,7 @@ msgid "Cannot connect: invalid settings." msgstr "E pamundur lidhja: rregullime të pavlefshme." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Mirësevini tek %s" @@ -2482,56 +2482,56 @@ msgstr "" "config.inc.php dhe sigurohu që korrispondojnë me informacionet që ju ka " "dhënë administratori i serverit MySQL." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Hyrja" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Dokumente të phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Serveri" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Emri i përdoruesit:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Fjalëkalimi:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Zgjedhja e serverit" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Nga kjo pikë e tutje, cookies duhet të jenë të aktivuara." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "E pamundur kryerja e login tek server-i MySQL" @@ -2562,41 +2562,41 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "Vendosja e lidhjes MySQL" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2736,7 +2736,7 @@ msgid "Documentation" msgstr "Dokumentet" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "query SQL" @@ -2746,7 +2746,7 @@ msgstr "query SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2795,7 +2795,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2894,7 +2894,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2914,8 +2914,8 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Shto" @@ -2926,26 +2926,26 @@ msgstr "Shto" msgid "Operations" msgstr "Operacione" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, 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/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3123,7 +3123,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Rinis" @@ -5360,8 +5360,8 @@ msgstr "Krijo një tabelë të re tek databaza %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5699,7 +5699,7 @@ msgstr "Rendit sipas kyçit" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5767,7 +5767,7 @@ msgid "The row has been deleted" msgstr "rreshti u fshi" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Hiq" @@ -6325,7 +6325,7 @@ msgstr "Lloje MIME në dispozicion" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6542,7 +6542,7 @@ msgstr "Rezultati SQL" msgid "Generated by" msgstr "Gjeneruar nga" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta)." @@ -6640,7 +6640,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Emrat e kollonave" @@ -7000,7 +7000,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "asnjë përshkrim" @@ -7035,14 +7035,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "E ndryshueshme" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Vlerë" @@ -7103,7 +7103,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7140,16 +7140,16 @@ msgstr "" msgid "Edit event" msgstr "Dërguar" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proceset" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7164,7 +7164,7 @@ msgstr "Lloji i Eksportit" msgid "Event type" msgstr "Lloji i Eksportit" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7193,7 +7193,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Fund" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7206,12 +7206,12 @@ msgstr "Përshkrimi" msgid "On completion preserve" msgstr "Të shtuarat komplet" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7259,7 +7259,7 @@ msgid "Returns" msgstr "Opcione për tabelën" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Koha" @@ -7276,7 +7276,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7296,121 +7296,121 @@ msgstr "Tabela %s u eleminua" msgid "Routine %1$s has been created." msgstr "Tabela %s u eleminua" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Emrat e kollonave" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Krijimi" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Gjatësia/Set*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Ndysho emrin e databazës në" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Gjatësia/Set*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcione për tabelën" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Lloji i query" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funksioni" @@ -7557,7 +7557,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7567,7 +7567,7 @@ msgstr "Tabela \"%s\" nuk ekziston!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7575,9 +7575,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Ju lutem, konfiguroni koordinatat për tabelën %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7591,115 +7591,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Skema relacionale" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Tabela e përmbajtjes" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Pronësi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Krijo një faqe të re" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Numri i faqes:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Faqosje automatike" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Relacione të brendshme" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Ju lutem zgjidhni faqen që dëshironi të modifikoni" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Zgjidh Tabelat" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Zgjidh Tabelat" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Skema relacionale" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Shfaq rrjetën" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Shfaq ngjyrën" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Shfaq madhësinë e tabelave" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 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:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Shfaq vetëm kyçet" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Horizontale" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Vertikale" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Krijimi" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Përmasat e fletës" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7707,17 +7707,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "(ç')aktivo scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7798,11 +7798,11 @@ msgstr "Kalendari" msgid "Columns" msgstr "Emrat e kollonave" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Shtoja të preferuarve këtë query SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" @@ -8269,7 +8269,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Përdorues" @@ -8468,7 +8468,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8552,50 +8552,50 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Tabela %s u eleminua" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Përdorimi" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importo files" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Nuk ka rreshta të zgjedhur" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Krijo një tregues të ri" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Emri i përdoruesit" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8706,12 +8706,12 @@ msgstr "Importo files" msgid "All" msgstr "Të gjithë" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela nuk u gjet ose nuk është përcaktuar tek %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8726,13 +8726,13 @@ msgstr "" msgid "Files" msgstr "Fusha" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Shkurton (ndërpret) Queries e Shfaqura" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Shfaq të gjitha kërkesat" @@ -9571,8 +9571,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "në orë" @@ -9593,104 +9593,104 @@ msgstr "Instruksione" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Marrë" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Dërguar" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Përpjekje të dështuara" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Dështoi" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Komanda" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9698,78 +9698,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9777,7 +9777,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9785,42 +9785,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9828,33 +9828,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9863,227 +9863,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10091,99 +10091,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10191,18 +10191,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10210,63 +10210,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sht" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy msgid "Add chart" msgstr "Shto një fushë të re" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Rifresko" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Shto/Fshi kollonat e fushës" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10275,7 +10275,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10283,11 +10283,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10295,7 +10295,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10303,11 +10303,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10840,12 +10840,12 @@ msgstr "" msgid "Validated SQL" msgstr "Vleftëso SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Etiketë" diff --git a/po/sr.po b/po/sr.po index 0077567098..be0c0aa4a2 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" @@ -22,10 +22,10 @@ msgstr "Прикажи све" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Број странице:" @@ -40,8 +40,8 @@ msgstr "" "прозорима због сигурносних подешавања" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Претраживање" @@ -49,25 +49,25 @@ msgstr "Претраживање" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "Име кључа" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Опис" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "Користи ову вредност" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -127,7 +127,7 @@ msgstr "База %s је креирана." msgid "Database comment: " msgstr "Коментар базе:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -136,8 +136,8 @@ msgstr "Коментари табеле" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -149,11 +149,11 @@ msgstr "Колона" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -164,8 +164,8 @@ msgstr "Тип" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -175,8 +175,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -185,8 +185,8 @@ msgstr "Подразумевано" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Везе ка" @@ -195,8 +195,8 @@ msgstr "Везе ка" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Коментари" @@ -207,7 +207,7 @@ msgstr "Коментари" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -228,7 +228,7 @@ msgstr "Не" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -362,7 +362,7 @@ msgstr "Уреди или извези релациону схему" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -386,21 +386,21 @@ msgstr "се користи" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Направљено" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Последња измена" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Последња провера" @@ -505,7 +505,7 @@ msgstr "Изврши SQL упит" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Приступ одбијен" @@ -541,7 +541,7 @@ msgstr[1] "%s погодака унутар табеле %s" msgstr[2] "%s погодака унутар табеле %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Преглед" @@ -554,10 +554,10 @@ msgstr "Приказ података табеле" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -683,12 +683,12 @@ msgstr "ниједно" msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Извоз" @@ -698,13 +698,13 @@ msgstr "Извоз" msgid "Print view" msgstr "За штампу" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Испразни" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -743,7 +743,7 @@ msgstr "Замени податке у табели са подацима из msgid "Copy table with prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Речник података" @@ -759,7 +759,7 @@ msgstr "Провери табелу" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -781,7 +781,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Статус" @@ -891,14 +891,14 @@ msgstr "" "Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте " "%sдокументацију%s за начине превазилажења овог ограничења." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Датотеку није могуће прочитати" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -929,7 +929,7 @@ msgstr "Обележивач је управо обрисан." msgid "Showing bookmark" msgstr "Приказивање маркера" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Направљен маркер %s" @@ -957,7 +957,7 @@ msgstr "" "повећате временска ограничења у PHP-у" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1085,9 +1085,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Промени" @@ -1113,13 +1113,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Укупно" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1151,7 +1151,7 @@ msgstr "Избор сервера" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Процеси" @@ -1179,7 +1179,7 @@ msgstr "Статистике реда" #: js/messages.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" #: js/messages.php:94 @@ -1288,7 +1288,7 @@ msgstr "" msgid "Bytes received" msgstr "Примљено" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Конекције" @@ -1298,12 +1298,12 @@ msgstr "Конекције" msgid "Questions" msgstr "Персијски" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Саобраћај" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1332,7 +1332,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "нема" @@ -1557,7 +1557,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Увоз" @@ -1757,7 +1757,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2235,27 +2235,27 @@ msgstr "се користи" msgid "Second" msgstr "у секунди" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Величина фонта" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Непозната грешка при слању датотеке." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Послата датотека превазилази вредност директиве upload_max_filesize у php." "ini." -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2263,37 +2263,37 @@ msgstr "" "Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је " "наведена у HTML форми." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Послата датотека је само делимично примљена." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Недостаје привремени директоријум." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Неуспело уписивање датотеке на диск." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Пријем датотеке заустављен због екстензије." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Непозната грешка при слању датотеке." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2321,7 +2321,7 @@ msgid "Cardinality" msgstr "Кардиналност" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2343,14 +2343,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Базе" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2456,16 +2456,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Нема исправне путање до слика за тему %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Преглед не постоји." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "преузми" @@ -2479,12 +2479,12 @@ msgstr "Није пронађена подразумевана тема %s!" msgid "Theme %s not found!" msgstr "Није пронађена тема %s!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Није пронађена путања до теме за тему %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2493,7 +2493,7 @@ msgid "Cannot connect: invalid settings." msgstr "Не могу да се повежем: неисправна подешавања." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Добродошли на %s" @@ -2519,56 +2519,56 @@ msgstr "" "php и уверите се да одговарају подацима које сте добили од администратора " "MySQL сервера." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Пријављивање" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документација" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Корисничко име:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Лозинка:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Избор сервера" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Колачићи (Cookies) морају у овом случају бити активни." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Није било активности %s или више секунди, молимо пријавите се поново" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Не могу да се пријавим на MySQL сервер" @@ -2599,41 +2599,41 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "Сортирање за MySQL везу" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2777,7 +2777,7 @@ msgid "Documentation" msgstr "Документација" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL упит" @@ -2787,7 +2787,7 @@ msgstr "SQL упит" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2838,7 +2838,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Складиштења" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Профилисање" @@ -2939,7 +2939,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2959,8 +2959,8 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Нови запис" @@ -2971,26 +2971,26 @@ msgstr "Нови запис" msgid "Operations" msgstr "Операције" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директоријум за слање веб сервера " -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Директоријум који сте изабрали за слање није доступан" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3167,7 +3167,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Поништи" @@ -5439,8 +5439,8 @@ msgstr "Направи нову табелу у бази %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5802,7 +5802,7 @@ msgstr "Сортирај по кључу" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Опције" @@ -5869,7 +5869,7 @@ msgid "The row has been deleted" msgstr "Ред је обрисан" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Обустави" @@ -6449,7 +6449,7 @@ msgstr "Доступни MIME-типови" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Домаћин" @@ -6664,7 +6664,7 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерисао" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." @@ -6764,7 +6764,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Назив табеле" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Имена колона" @@ -7127,7 +7127,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "нема описа" @@ -7164,14 +7164,14 @@ msgid "Slave status" msgstr "Прикажи статус подређених сервера" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Променљива" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Вредност" @@ -7231,7 +7231,7 @@ msgstr "Направи лозинку" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7269,16 +7269,16 @@ msgstr "" msgid "Edit event" msgstr "Догађаји" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Процеси" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7293,7 +7293,7 @@ msgstr "Врста догађаја" msgid "Event type" msgstr "Врста догађаја" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7320,7 +7320,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Крај" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7333,12 +7333,12 @@ msgstr "Опис" msgid "On completion preserve" msgstr "Комплетан INSERT (са именима поља)" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7386,7 +7386,7 @@ msgid "Returns" msgstr "Повратни тип" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Време" @@ -7402,7 +7402,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7423,103 +7423,103 @@ msgstr "Табела %s је одбачена" msgid "Routine %1$s has been created." msgstr "Табела %s је одбачена" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Рутине" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Рутине" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Директне везе" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Дужина/Вредност*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "Додај ново поље" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Уклони базу" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Повратни тип" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Дужина/Вредност*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Опције табеле" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Врста упита" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7527,25 +7527,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Дозвољава извршавање сачуваних рутина." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Рутине" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Функција" @@ -7700,7 +7700,7 @@ msgstr "Провери табелу" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7710,7 +7710,7 @@ msgstr "Табела \"%s\" не постоји!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7718,9 +7718,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Подесите координате за табелу %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7734,115 +7734,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Релациона схема" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Садржај" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Атрибути" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Додатно" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Направи нову страну" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Број стране:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Аутоматски распоред" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Унутрашње релације" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Изаберите страну коју мењате" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "Изабери све" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Изабери табеле" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Релациона схема" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Прикажи мрежу" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Прикажи боју" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Прикажи димензије табеле" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Приказ свих табела исте ширине?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Положено" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Усправно" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Направљено" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Димензије папира" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7850,17 +7850,17 @@ msgstr "" "Тренутна страна има референце на табеле које више не постоје. Желите ли да " "обришете те референце?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Укључи/искључи радну таблу" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Непознат језик: %1$s." @@ -7940,11 +7940,11 @@ msgstr "Календар" msgid "Columns" msgstr "Имена колона" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" @@ -8426,7 +8426,7 @@ msgstr "Верзија протокола" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Корисник" @@ -8631,7 +8631,7 @@ msgstr "Све мало/велико" msgid "Toggle small/big" msgstr "Промени мало/велико" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Извоз/увоз координата за PDF схему" @@ -8723,50 +8723,50 @@ msgstr "" "поље за приказ, кликните на икону „Изабери поље за приказ“, а потом на назив " "одговарајућег поља." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Табела %s је одбачена" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "страна" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Увоз датотека" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Извор/увоз у размери" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Направи нови кључ" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Име корисника" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Извор/увоз у размери" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "препоручено" @@ -8877,12 +8877,12 @@ msgstr "Увоз датотека" msgid "All" msgstr "Све" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s табела није пронађена или није постављена у %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8896,13 +8896,13 @@ msgstr "Изаберите бинарни дневник за преглед" msgid "Files" msgstr "Датотеке" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Прикажи скраћене упите" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Прикажи комплетне упите" @@ -9729,8 +9729,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "на сат" @@ -9751,43 +9751,43 @@ msgstr "Име" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 #, fuzzy msgid "Replication status" msgstr "Репликација" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9795,47 +9795,47 @@ msgstr "" "На запосленом серверу бројачи бајтова могу да се прелију (overrun), тако да " "те статистике, онако како их пријављује MySQL сервер, могу бити нетачне." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Примљено" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Послато" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "макс. истовремених веза" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Неуспелих покушаја" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Прекинуто" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Наредба" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -9845,16 +9845,16 @@ msgstr "" "превазишле вредност у binlog_cache_size и користиле привремену датотеку да " "сместе изразе из трансакције." -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "Број трансакција које су користиле кеш привременог бинарног дневника." -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9866,11 +9866,11 @@ msgstr "" "повећате вредност tmp_table_size како би учинили да привремене табеле буду " "базиране у меморији уместо на диску." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Колико привремених датотека је mysqld направио." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9878,7 +9878,7 @@ msgstr "" "Број привремених табела које је сервер аутоматски креирао у меморији док је " "извршавао изразе." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9886,7 +9886,7 @@ msgstr "" "Број редова уписаних са INSERT DELAYED за које је јављена нека грешка " "(вероватно дуплирани кључ)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9894,23 +9894,23 @@ msgstr "" "Број INSERT DELAYED руковалачких нити у употреби. Свака посебна табела над " "којом се користи INSERT DELAYED добија своју нит." -#: server_status.php:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Број уписаних INSERT DELAYED редова." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Број извршених FLUSH израза." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Број интерних COMMIT израза." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Број брисања неког реда табеле." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -9920,7 +9920,7 @@ msgstr "" "одређеног имена. То се назива откривањем (discovery). Handler_discover " "означава број пута када је откривена табела." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9930,7 +9930,7 @@ msgstr "" "може значити да сервер ради пуно пуних скенирања индекса; на пример SELECT " "кол1 FROM нешто, под претпоставком да је кол1 индексирано." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -9938,7 +9938,7 @@ msgstr "" "Број захтева за читање реда заснованих на кључу. Ако је овај број висок, то " "је добар показатељ да су ваши упити и табеле прописно индексирани." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9948,7 +9948,7 @@ msgstr "" "када радите упит по колони индекса са ограничењем опсега или ако радите " "скенирање индекса." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9956,7 +9956,7 @@ msgstr "" "Број захтева за читањем претходног реда у поретку кључева. Ова метода читања " "се углавном користи за оптимизацију ORDER BY ... DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9968,7 +9968,7 @@ msgstr "" "много упита који захтевају да MySQL скенира целе табеле или имате спојеве " "који не користе кључеве прописно." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9980,35 +9980,35 @@ msgstr "" "прописно индексиране или да ваши упити нису написани да искористе већ " "постојеће индексе." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Број интерних ROLLBACK израза." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Број захтева за ажурирање реда у табели." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Број захтева за уписивање реда у табелу." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Број страна које садрже податке (чистих или прљавих)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Број страна које су тренутно прљаве." -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Број страна у остави бафера за које је тражено да буду очишћене." -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Број слободних страна." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -10018,7 +10018,7 @@ msgstr "" "чита или се у њих уписује или из неког другог разлога не могу бити очишћене " "нити уклоњене." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -10030,11 +10030,11 @@ msgstr "" "такође може израчунати и на следећи начин Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Пуна величина оставе бафера, у странама." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10042,7 +10042,7 @@ msgstr "" "Број „насумичних“ пред-читања која је InnoDB покренуо. Ово се дешава када " "упит треба да скенира велики део табеле али насумичним редоследом." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10050,11 +10050,11 @@ msgstr "" "Број секвенцијалних пред-читања која је InnoDB покренуо. Ово се дешава када " "InnoDB ради секвенцијално скенирање целе табеле." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Број логичких захтева за читање које је InnoDB урадио." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10062,7 +10062,7 @@ msgstr "" "Број логичких читања која InnoDB није могао да задовољи из оставе бафера те " "је морао да ради читање појединачне стране." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -10076,55 +10076,55 @@ msgstr "" "дешавања ових чекања. Ако је величина оставе бафера постављена како треба, " "ова вредност ви требало да је ниска." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Број уписа учињених у InnoDB оставу бафера." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Број fsync() операција до сада." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Тренутни број fsync() операција на чекању." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Тренутни број читања на чекању." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Тренутни број уписа на чекању." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Количина података прочитаних до сада, у бајтовима." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Укупан број читања података." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Укупан број уписа података." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Количина података уписаних до сада, у бајтовима" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" "Број извршених двоуписних (doublewrite) уписа и број страна које су уписане " "у ову сврху." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -10132,35 +10132,35 @@ msgstr "" "Број чекања која смо имали зато што је бафер дневника био премали те смо " "морали да сачекамо да буде очишћен пре наставка." -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Број захтева за упис у дневник." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Број физичких уписа у датотеку дневника." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Број fsyncs уписа начињених у датотеку дневника." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Број fsync-ова за датотеку дневника на чекању." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Број уписа у датотеку дневника на чекању." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Број бајтова уписаних у датотеку дневника." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Број направљених страна." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10169,51 +10169,51 @@ msgstr "" "вредности се рачунају у странама; величина стране омогућава да се оне лако " "конвертују у бајтове." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Број прочитаних страна." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Број записаних страна." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Број брава за редове које се тренутно чекају." -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Просечно време за добављање браве за ред, у милисекундама." -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Укупно времена проведено у добављању брава за редове, у милисекундама." -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Најдуже време за добављање браве за ред, у милисекундама." -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "Број пута када се морала чекати брава за ред." -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Број редова обрисаних из InnoDB табела." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Број редова уметнутих у InnoDB табеле." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Број редова прочитаних из InnoDB табела." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Број редова ажурираних у InnoDB табелама." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10221,7 +10221,7 @@ msgstr "" "Број блокова кључева у кешу кључева који су измењени али још нису послати на " "диск. Ово је раније било познато као Not_flushed_key_blocks." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10229,7 +10229,7 @@ msgstr "" "Број неискоришћених блокова у кешу кључева. Ову вредност можете да користите " "да утврдите колики део кеша кључева је у употреби." -#: server_status.php:1257 +#: server_status.php:1258 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 " @@ -10239,11 +10239,11 @@ msgstr "" "водостаја“ која показује највећи икада број блокова који је био у употреби у " "исто време." -#: server_status.php:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "Број захтева за читање блока кључева из кеша." -#: server_status.php:1259 +#: server_status.php:1260 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 " @@ -10253,15 +10253,15 @@ msgstr "" "је ваша вредност за key_buffer_size вероватно премала. Степен промашаја кеша " "се може израчунати као Key_reads/Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "Број захтева за уписивање блока кључева у кеш." -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "Број физичких уписа блока кључева на диск." -#: server_status.php:1262 +#: server_status.php:1263 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 " @@ -10271,17 +10271,17 @@ msgstr "" "упита. Корисно за упоређивање цене различитих планова упита за исти упит. " "Подразумевана вредност 0 значи да још није био компајлиран ниједан упит." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "Број редова у INSERT DELAYED редовима чекања који чекају уписивање." -#: server_status.php:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10289,39 +10289,39 @@ msgstr "" "Број табела које су биле отваране. Ако је број велики, ваш кеш табела је " "вероватно премали." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Број отворених датотека." -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Број отворених токова (користи се првенствено за вођење дневника (logging))." -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Број отворених табела." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Количина слободне меморије за кеш упита." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Број погодака из кеша." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Број упита додатих у кеш." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10333,7 +10333,7 @@ msgstr "" "упите. Кеш за упите користи стратегију најдуже некоришћеног (en: least " "recently used , LRU) да би одлучио које упите да уклони из кеша." -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10341,19 +10341,19 @@ msgstr "" "Број некешираних упита (који се не могу кеширати или нису кеширани због " "подешавања query_cache_type)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Број упита регистрованих у кешу." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Укупан број блокова у кешу за упите." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Статус репликације отпорне на грешке (није још имплементирано)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10361,11 +10361,11 @@ msgstr "" "Број спојева који не користе индексте. Ако ова вредност није 0, требало би " "пажљиво да проверите индексе ваших табела." -#: server_status.php:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "Број спојева који су користили претрагу опсега на референтној табели." -#: server_status.php:1280 +#: server_status.php:1281 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.)" @@ -10373,7 +10373,7 @@ msgstr "" "Број спојева без кључева који проверавају употребу кључа после сваког реда. " "(Ако ово није 0, требало би пажљиво да проверите индексе ваших табела.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10381,15 +10381,15 @@ msgstr "" "Број спојева који су користили опсеге на првој табели. (Обично није критично " "чак ни када је ово велико)" -#: server_status.php:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "Број спојева који су урадили пуно скенирање прве табеле." -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Број привремених табела тренутно отворених од стране помоћне SQL нити." -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10397,11 +10397,11 @@ msgstr "" "Укупан број пута (од покретања) када је помоћна SQL нит за репликацију " "покушала трансакције." -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "Ово је ON ако је овај сервер помоћни који је повезан на главни." -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10409,12 +10409,12 @@ msgstr "" "Број нити за које је требало више од slow_launch_time секудни да би биле " "покренуте." -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "Број упита за које је требало више од long_query_time секудни." -#: server_status.php:1288 +#: server_status.php:1289 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 " @@ -10424,23 +10424,23 @@ msgstr "" "је ова вредност велика, требало би да размислите о повећању вредности " "системске променљиве sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Број сортирања која су урађена са опсегом." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Број сортираних редова." -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "Број сортирања до којих је дошло скенирањем табеле." -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "Број пута када је брава за табелу одмах добављена." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10452,7 +10452,7 @@ msgstr "" "би требало да оптимизујете своје упите а потом да или поделите табелу или " "табеле или да користите репликацију." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10462,11 +10462,11 @@ msgstr "" "Threads_created/Конекције. Ако је ова вредност црвена требало би да повећате " "ваш thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Број тренутно отворених веза." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10478,63 +10478,63 @@ msgstr "" "имплементацију нити, ово обично не доноси приметна побољшања у " "перформансама.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Број нити које нису успаване." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy msgid "Start Monitor" msgstr "Статус" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "Додај ново поље" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Освежи" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Додај/обриши колону" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10543,7 +10543,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10551,11 +10551,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10563,7 +10563,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10571,11 +10571,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11115,12 +11115,12 @@ msgstr "Приказ као SQL упит" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирању табеле `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Назив" diff --git a/po/sr@latin.po b/po/sr@latin.po index f25c70390f..c0f83f87c4 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" @@ -22,10 +22,10 @@ msgstr "Prikaži sve" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Broj strane:" @@ -40,8 +40,8 @@ msgstr "" "prozorima zbog sigurnosnih podešavanja" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Pretraživanje" @@ -49,25 +49,25 @@ msgstr "Pretraživanje" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "Ime ključa" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Opis" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "Koristi ovu vrednost" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Nema konfigurisanih blob streaming servera!" @@ -129,7 +129,7 @@ msgstr "Baza %1$s je kreirana." msgid "Database comment: " msgstr "Komentar baze:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "Komentari tabele" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -151,11 +151,11 @@ msgstr "Kolona" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -166,8 +166,8 @@ msgstr "Tip" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -177,8 +177,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -187,8 +187,8 @@ msgstr "Podrazumevano" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Veze ka" @@ -197,8 +197,8 @@ msgstr "Veze ka" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Komentari" @@ -209,7 +209,7 @@ msgstr "Komentari" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -230,7 +230,7 @@ msgstr "Ne" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -364,7 +364,7 @@ msgstr "Uredi ili izvezi relacionu shemu" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -388,21 +388,21 @@ msgstr "se koristi" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Napravljeno" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Poslednja izmena" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Poslednja provera" @@ -502,7 +502,7 @@ msgstr "Izvrši SQL upit" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Pristup odbijen" @@ -538,7 +538,7 @@ msgstr[1] "%s pogodaka unutar tabele %s" msgstr[2] "%s pogodaka unutar tabele %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Pregled" @@ -551,10 +551,10 @@ msgstr "Prikaz podataka tabele" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -677,12 +677,12 @@ msgstr "nijedno" msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Izvoz" @@ -692,13 +692,13 @@ msgstr "Izvoz" msgid "Print view" msgstr "Za štampu" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Isprazni" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -737,7 +737,7 @@ msgstr "Zameni podatke u tabeli sa podacima iz datoteke" msgid "Copy table with prefix" msgstr "Zameni podatke u tabeli sa podacima iz datoteke" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Rečnik podataka" @@ -753,7 +753,7 @@ msgstr "Proveri tabelu" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -775,7 +775,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -885,14 +885,14 @@ msgstr "" "Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte " "%sdokumentaciju%s za načine prevazilaženja ovog ograničenja." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Datoteku nije moguće pročitati" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -923,7 +923,7 @@ msgstr "Obeleživač je upravo obrisan." msgid "Showing bookmark" msgstr "Prikazivanje markera" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Napravljen marker %s" @@ -951,7 +951,7 @@ msgstr "" "povećate vremenska ograničenja u PHP-u" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1079,9 +1079,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Promeni" @@ -1107,13 +1107,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Ukupno" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1145,7 +1145,7 @@ msgstr "Izbor servera" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Procesi" @@ -1173,7 +1173,7 @@ msgstr "Statistike reda" #: js/messages.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\"" #: js/messages.php:94 @@ -1282,7 +1282,7 @@ msgstr "" msgid "Bytes received" msgstr "Primljeno" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Konekcije" @@ -1292,12 +1292,12 @@ msgstr "Konekcije" msgid "Questions" msgstr "Persijski" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Saobraćaj" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1326,7 +1326,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "nema" @@ -1551,7 +1551,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Uvoz" @@ -1751,7 +1751,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2229,27 +2229,27 @@ msgstr "se koristi" msgid "Second" msgstr "u sekundi" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Veličina fonta" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Nepoznata greška pri slanju datoteke." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2257,37 +2257,37 @@ msgstr "" "Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je " "navedena u HTML formi." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Poslata datoteka je samo delimično primljena." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Nedostaje privremeni direktorijum." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Neuspelo upisivanje datoteke na disk." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Prijem datoteke zaustavljen zbog ekstenzije." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Nepoznata greška pri slanju datoteke." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2315,7 +2315,7 @@ msgid "Cardinality" msgstr "Kardinalnost" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2337,14 +2337,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Baze" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2450,16 +2450,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Nema ispravne putanje do slika za temu %s!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Pregled ne postoji." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "preuzmi" @@ -2473,12 +2473,12 @@ msgstr "Nije pronađena podrazumevana tema %s!" msgid "Theme %s not found!" msgstr "Nije pronađena tema %s!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Nije pronađena putanja do teme za temu %s!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2487,7 +2487,7 @@ msgid "Cannot connect: invalid settings." msgstr "Ne mogu da se povežem: neispravna podešavanja." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Dobrodošli na %s" @@ -2513,56 +2513,56 @@ msgstr "" "php i uverite se da odgovaraju podacima koje ste dobili od administratora " "MySQL servera." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Prijavljivanje" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentacija" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Korisničko ime:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Lozinka:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Izbor servera" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Kolačići (Cookies) moraju u ovom slučaju biti aktivni." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Nije bilo aktivnosti %s ili više sekundi, molimo prijavite se ponovo" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Ne mogu da se prijavim na MySQL server" @@ -2593,41 +2593,41 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "Sortiranje za MySQL vezu" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2771,7 +2771,7 @@ msgid "Documentation" msgstr "Dokumentacija" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL upit" @@ -2781,7 +2781,7 @@ msgstr "SQL upit" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2832,7 +2832,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Skladištenja" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profilisanje" @@ -2933,7 +2933,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2953,8 +2953,8 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Novi zapis" @@ -2965,26 +2965,26 @@ msgstr "Novi zapis" msgid "Operations" msgstr "Operacije" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direktorijum za slanje veb servera " -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3161,7 +3161,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Poništi" @@ -5432,8 +5432,8 @@ msgstr "Napravi novu tabelu u bazi %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5796,7 +5796,7 @@ msgstr "Sortiraj po ključu" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Opcije" @@ -5863,7 +5863,7 @@ msgid "The row has been deleted" msgstr "Red je obrisan" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Obustavi" @@ -6439,7 +6439,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Domaćin" @@ -6654,7 +6654,7 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generisao" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." @@ -6754,7 +6754,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Naziv tabele" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Imena kolona" @@ -7115,7 +7115,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "nema opisa" @@ -7152,14 +7152,14 @@ msgid "Slave status" msgstr "Prikaži status podređenih servera" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Promenljiva" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Vrednost" @@ -7219,7 +7219,7 @@ msgstr "Napravi lozinku" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7257,16 +7257,16 @@ msgstr "" msgid "Edit event" msgstr "Događaji" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Procesi" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7281,7 +7281,7 @@ msgstr "Vrsta događaja" msgid "Event type" msgstr "Vrsta događaja" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7310,7 +7310,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Kraj" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7323,12 +7323,12 @@ msgstr "Opis" msgid "On completion preserve" msgstr "Kompletan INSERT (sa imenima polja)" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7376,7 +7376,7 @@ msgid "Returns" msgstr "Povratni tip" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Vreme" @@ -7392,7 +7392,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7413,101 +7413,101 @@ msgstr "Tabela %s je odbačena" msgid "Routine %1$s has been created." msgstr "Tabela %s je odbačena" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Direktne veze" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Dužina/Vrednost*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Ukloni bazu" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Povratni tip" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Dužina/Vrednost*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Opcije tabele" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Vrsta upita" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7515,25 +7515,25 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Dozvoljava izvršavanje sačuvanih rutina." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funkcija" @@ -7688,7 +7688,7 @@ msgstr "Proveri tabelu" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7698,7 +7698,7 @@ msgstr "Tabela \"%s\" ne postoji!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7706,9 +7706,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Podesite koordinate za tabelu %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7722,115 +7722,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relaciona shema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Sadržaj" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atributi" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Dodatno" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Napravi novu stranu" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Broj strane:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Automatski raspored" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Unutrašnje relacije" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Izaberite stranu koju menjate" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Izaberi tabele" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Izaberi tabele" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Relaciona shema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Prikaži mrežu" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Prikaži boju" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Prikaži dimenzije tabele" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Prikaz svih tabela iste širine?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Položeno" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Uspravno" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Napravljeno" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Dimenzije papira" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7838,17 +7838,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Uključi/isključi radnu tablu" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Nepoznat jezik: %1$s." @@ -7928,11 +7928,11 @@ msgstr "Kalendar" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" @@ -8415,7 +8415,7 @@ msgstr "Verzija protokola" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Korisnik" @@ -8621,7 +8621,7 @@ msgstr "Sve malo/veliko" msgid "Toggle small/big" msgstr "Promeni malo/veliko" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Izvoz/uvoz koordinata za PDF shemu" @@ -8713,50 +8713,50 @@ msgstr "" "polje za prikaz, kliknite na ikonu „Izaberi polje za prikaz“, a potom na " "naziv odgovarajućeg polja." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "Tabela %s je odbačena" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "strana" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Uvoz datoteka" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Izvor/uvoz u razmeri" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Napravi novi ključ" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Ime korisnika" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Izvor/uvoz u razmeri" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "preporučeno" @@ -8867,12 +8867,12 @@ msgstr "Uvoz datoteka" msgid "All" msgstr "Sve" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tabela nije pronađena ili nije postavljena u %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8886,13 +8886,13 @@ msgstr "Izaberite binarni dnevnik za pregled" msgid "Files" msgstr "Datoteke" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Prikaži skraćene upite" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Prikaži kompletne upite" @@ -9719,8 +9719,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "na sat" @@ -9741,43 +9741,43 @@ msgstr "Ime" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 #, fuzzy msgid "Replication status" msgstr "Replikacija" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9785,47 +9785,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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Primljeno" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Poslato" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "maks. istovremenih veza" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Neuspelih pokušaja" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Prekinuto" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Naredba" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -9835,16 +9835,16 @@ msgstr "" "prevazišle vrednost u binlog_cache_size i koristile privremenu datoteku da " "smeste izraze iz transakcije." -#: server_status.php:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9856,11 +9856,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:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Koliko privremenih datoteka je mysqld napravio." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9868,7 +9868,7 @@ msgstr "" "Broj privremenih tabela koje je server automatski kreirao u memoriji dok je " "izvršavao izraze." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9876,7 +9876,7 @@ msgstr "" "Broj redova upisanih sa INSERT DELAYED za koje je javljena neka greška " "(verovatno duplirani ključ)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9884,23 +9884,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Broj upisanih INSERT DELAYED redova." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Broj izvršenih FLUSH izraza." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Broj internih COMMIT izraza." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Broj brisanja nekog reda tabele." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -9910,7 +9910,7 @@ msgstr "" "tabelu određenog imena. To se naziva otkrivanjem (discovery). " "Handler_discover označava broj puta kada je otkrivena tabela." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9920,7 +9920,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:1204 +#: server_status.php:1205 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." @@ -9928,7 +9928,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:1205 +#: server_status.php:1206 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 " @@ -9938,7 +9938,7 @@ msgstr "" "kada radite upit po koloni indeksa sa ograničenjem opsega ili ako radite " "skeniranje indeksa." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9946,7 +9946,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:1207 +#: server_status.php:1208 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 " @@ -9958,7 +9958,7 @@ msgstr "" "mnogo upita koji zahtevaju da MySQL skenira cele tabele ili imate spojeve " "koji ne koriste ključeve propisno." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9970,35 +9970,35 @@ msgstr "" "nisu propisno indeksirane ili da vaši upiti nisu napisani da iskoriste već " "postojeće indekse." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Broj internih ROLLBACK izraza." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Broj zahteva za ažuriranje reda u tabeli." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Broj zahteva za upisivanje reda u tabelu." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Broj strana koje sadrže podatke (čistih ili prljavih)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Broj strana koje su trenutno prljave." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Broj slobodnih strana." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -10008,7 +10008,7 @@ msgstr "" "čita ili se u njih upisuje ili iz nekog drugog razloga ne mogu biti očišćene " "niti uklonjene." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -10020,11 +10020,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:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Puna veličina ostave bafera, u stranama." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10032,7 +10032,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10040,11 +10040,11 @@ msgstr "" "Broj sekvencijalnih pred-čitanja koja je InnoDB pokrenuo. Ovo se dešava kada " "InnoDB radi sekvencijalno skeniranje cele tabele." -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Broj logičkih zahteva za čitanje koje je InnoDB uradio." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10052,7 +10052,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:1223 +#: server_status.php:1224 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 " @@ -10066,55 +10066,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:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Broj upisa učinjenih u InnoDB ostavu bafera." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Broj fsync() operacija do sada." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Trenutni broj fsync() operacija na čekanju." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Trenutni broj čitanja na čekanju." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Trenutni broj upisa na čekanju." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Količina podataka pročitanih do sada, u bajtovima." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Ukupan broj čitanja podataka." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Ukupan broj upisa podataka." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Količina podataka upisanih do sada, u bajtovima" -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -10122,35 +10122,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Broj zahteva za upis u dnevnik." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Broj fizičkih upisa u datoteku dnevnika." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Broj fsyncs upisa načinjenih u datoteku dnevnika." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Broj fsync-ova za datoteku dnevnika na čekanju." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Broj upisa u datoteku dnevnika na čekanju." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Broj bajtova upisanih u datoteku dnevnika." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Broj napravljenih strana." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10159,52 +10159,52 @@ msgstr "" "vrednosti se računaju u stranama; veličina strane omogućava da se one lako " "konvertuju u bajtove." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Broj pročitanih strana." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Broj zapisanih strana." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Broj brava za redove koje se trenutno čekaju." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Broj redova obrisanih iz InnoDB tabela." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Broj redova umetnutih u InnoDB tabele." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Broj redova pročitanih iz InnoDB tabela." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Broj redova ažuriranih u InnoDB tabelama." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10212,7 +10212,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:1256 +#: server_status.php:1257 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." @@ -10220,7 +10220,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:1257 +#: server_status.php:1258 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 " @@ -10230,11 +10230,11 @@ msgstr "" "vodostaja“ koja pokazuje najveći ikada broj blokova koji je bio u upotrebi u " "isto vreme." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10244,15 +10244,15 @@ 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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -10262,17 +10262,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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10280,39 +10280,39 @@ msgstr "" "Broj tabela koje su bile otvarane. Ako je broj veliki, vaš keš tabela je " "verovatno premali." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Broj otvorenih datoteka." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Broj otvorenih tabela." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Količina slobodne memorije za keš upita." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Broj pogodaka iz keša." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Broj upita dodatih u keš." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10324,7 +10324,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:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10332,19 +10332,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:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Broj upita registrovanih u kešu." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Ukupan broj blokova u kešu za upite." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status replikacije otporne na greške (nije još implementirano)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10352,11 +10352,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10365,7 +10365,7 @@ msgstr "" "reda. (Ako ovo nije 0, trebalo bi pažljivo da proverite indekse vaših " "tabela.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10373,15 +10373,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10389,11 +10389,11 @@ msgstr "" "Ukupan broj puta (od pokretanja) kada je pomoćna SQL nit za replikaciju " "pokušala transakcije." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10401,12 +10401,12 @@ msgstr "" "Broj niti za koje je trebalo više od slow_launch_time sekudni da bi bile " "pokrenute." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10416,23 +10416,23 @@ msgstr "" "Ako je ova vrednost velika, trebalo bi da razmislite o povećanju vrednosti " "sistemske promenljive sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Broj sortiranja koja su urađena sa opsegom." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Broj sortiranih redova." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10444,7 +10444,7 @@ msgstr "" "bi trebalo da optimizujete svoje upite a potom da ili podelite tabelu ili " "tabele ili da koristite replikaciju." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10454,11 +10454,11 @@ msgstr "" "Threads_created/Konekcije. Ako je ova vrednost crvena trebalo bi da povećate " "vaš thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Broj trenutno otvorenih veza." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10470,64 +10470,64 @@ msgstr "" "implementaciju niti, ovo obično ne donosi primetna poboljšanja u " "performansama.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Broj niti koje nisu uspavane." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Sub" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "Dodaj %s polja" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Osveži" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Dodaj/obriši kolonu" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10536,7 +10536,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10544,11 +10544,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10556,7 +10556,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10564,11 +10564,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11108,12 +11108,12 @@ msgstr "Prikaz kao SQL upit" msgid "Validated SQL" msgstr "Proveri SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem pri indeksiranju tabele `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Naziv" diff --git a/po/sv.po b/po/sv.po index dba2c12e07..f36366d4dd 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-15 01:24+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" @@ -21,10 +21,10 @@ msgstr "Visa alla" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Sida:" @@ -39,8 +39,8 @@ msgstr "" "att blockera flerfönster uppdateringar." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Sök" @@ -48,25 +48,25 @@ msgstr "Sök" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Nyckel" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Beskrivning" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Använd detta värde" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Ingen blob streaming server konfigurerad!" @@ -128,7 +128,7 @@ msgstr "Databas %1$s har skapats." msgid "Database comment: " msgstr "Databaskommentar: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Tabellkommentarer" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Kolumn" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Typ" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Förvalt" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Länkar till" @@ -196,8 +196,8 @@ msgstr "Länkar till" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Kommentarer" @@ -208,7 +208,7 @@ msgstr "Kommentarer" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Nej" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -359,7 +359,7 @@ msgstr "Editera eller exportera relationsschema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -383,21 +383,21 @@ msgstr "används" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Skapande" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Senaste uppdatering" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Senaste kontroll" @@ -495,7 +495,7 @@ msgstr "Kör fråga" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Åtkomst nekad" @@ -529,7 +529,7 @@ msgstr[0] "%s träff i tabell %s" msgstr[1] "%s träffar i tabell %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Visa" @@ -541,10 +541,10 @@ msgstr "radera matchande för %s tabellen?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -660,12 +660,12 @@ msgstr "Avmarkera alla" msgid "Check tables having overhead" msgstr "Markera ooptimerade" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Exportera" @@ -675,13 +675,13 @@ msgstr "Exportera" msgid "Print view" msgstr "Utskriftsvänlig visning" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Töm" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -715,7 +715,7 @@ msgstr "Ersätt tabellprefix" msgid "Copy table with prefix" msgstr "Kopiera tabell med prefix" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Datalexikon" @@ -730,7 +730,7 @@ msgstr "Spårade tabeller" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -750,7 +750,7 @@ msgstr "Uppdaterad" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Status" @@ -855,14 +855,14 @@ 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:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Filen kunde inte läsas" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -893,7 +893,7 @@ msgstr "Bokmärket har tagits bort." msgid "Showing bookmark" msgstr "Visar bokmärke" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "Bokmärket %s har skapats" @@ -921,7 +921,7 @@ msgstr "" "tidsbegränsningar." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1035,9 +1035,9 @@ msgstr "Stäng" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Ändra" @@ -1060,13 +1060,13 @@ msgstr "Statisk data" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Total" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Annan" @@ -1096,7 +1096,7 @@ msgstr "Server trafik (i kb)" msgid "Connections since last refresh" msgstr "Anslutningar sedan förra uppdateringen" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Processer" @@ -1119,7 +1119,9 @@ msgid "Query statistics" msgstr "Visa statistik" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +#, fuzzy +#| msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Lokal övervakningskonfiguration ej kompatibel" #: js/messages.php:94 @@ -1234,7 +1236,7 @@ msgstr "" msgid "Bytes received" msgstr "Mottagna" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Förbindelser" @@ -1243,12 +1245,12 @@ msgstr "Förbindelser" msgid "Questions" msgstr "Frågor" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Trafik" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Inställningar" @@ -1273,7 +1275,7 @@ msgstr "Lägg till minst en variabel till serien" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Inget" @@ -1494,7 +1496,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Importera" @@ -1669,7 +1671,7 @@ msgid "Query execution time" msgstr "Exekveringstid för frågor" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2093,24 +2095,24 @@ msgstr "Minuter" msgid "Second" msgstr "Sekunder" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Teckenstorlek" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "Filen var inte en uppladdad fil." -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "Okänt fel vid uppladdning." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2118,37 +2120,37 @@ msgstr "" "Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades " "i HTML-formuläret." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Den uppladdade filen blev endast delvis uppladdad." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Saknar en temporär katalog." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Misslyckades att skriva fil till disk." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Filuppladdning stoppades av tillägg." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Okänt fel i filuppladdning." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "Fel när du flyttar uppladdad fil." -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "Kan inte läsa (flyttad) uppladdad fil." @@ -2176,7 +2178,7 @@ msgid "Cardinality" msgstr "Kardinalitet" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Kommentar" @@ -2199,14 +2201,14 @@ msgstr "" "Index %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas " "bort." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Databaserna" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2308,16 +2310,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "Ingen giltig sökväg för tema %s hittades!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Ingen förhandsgranskning tillgänglig." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "använd detta" @@ -2331,12 +2333,12 @@ msgstr "Standardtema %s hittades inte!" msgid "Theme %s not found!" msgstr "Tema %s hittades inte!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "Temats sökväg för tema %s hittades inte!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2345,7 +2347,7 @@ msgid "Cannot connect: invalid settings." msgstr "Kan ej skapa förbindelse: ogiltiga inställningar." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Välkommen till %s" @@ -2371,43 +2373,43 @@ msgstr "" "inc.php och förvissa dig om att de stämmer överens med informationen från " "administratören av MySQL-servern." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Logga in" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentation" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Du kan ange värdnamn/IP-adress och port separerade med mellanslag." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Användarnamn:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Lösenord:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Välj server" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Kakor (cookies) måste tillåtas för att gå vidare." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2415,14 +2417,14 @@ msgstr "" "Inloggning utan lösenord är inte tillåtet enligt konfiguration (se " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Ingen aktivitet sedan %s sekunder; var god logga in igen" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Kan ej logga in på MySQL-server" @@ -2453,41 +2455,41 @@ msgstr "Ogiltig autentiseringsnyckel" msgid "Authenticating..." msgstr "Autentisering pågår..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS fel" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS uppkoppling misslyckades" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS hämtar BLOB info misslyckades" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "Hämta BLOB Content-typ misslyckades" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Visa bild" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Spela ljud" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Visa video" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Ladda ner fil" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Kan inte öppna fil: %s" @@ -2626,7 +2628,7 @@ msgid "Documentation" msgstr "Dokumentation" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-fråga" @@ -2636,7 +2638,7 @@ msgstr "SQL-fråga" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2685,7 +2687,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Infogad" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profilering" @@ -2784,7 +2786,7 @@ msgid "Click to toggle" msgstr "Klicka för att växla" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2804,8 +2806,8 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Lägg till" @@ -2816,25 +2818,25 @@ msgstr "Lägg till" msgid "Operations" msgstr "Operationer" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Gå igenom din dator:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, 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/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Det finns inga filer att ladda upp" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Utför" @@ -3001,7 +3003,7 @@ msgid "Allow users to customize this value" msgstr "Tillåt användare att anpassa detta värde" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Återställ" @@ -5317,8 +5319,8 @@ msgstr "Skapa ny tabell i databas %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5628,7 +5630,7 @@ msgstr "Sortera efter nyckel" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Alternativ" @@ -5688,7 +5690,7 @@ msgid "The row has been deleted" msgstr "Raden har raderats" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Döda" @@ -6274,7 +6276,7 @@ msgstr "Visa MIME-typer" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Värd" @@ -6501,7 +6503,7 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Genererad av" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." @@ -6606,7 +6608,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Tabellnamn" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Kolumn-namn" @@ -6968,7 +6970,7 @@ msgstr "" "Logga in igen till phpMyAdmin för att ladda den uppdaterade " "konfigurationsfilen." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "Ingen beskrivning" @@ -7005,14 +7007,14 @@ msgid "Slave status" msgstr "Slav-status" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Värde" @@ -7076,7 +7078,7 @@ msgstr "Generera lösenord" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7112,14 +7114,14 @@ msgstr "" msgid "Edit event" msgstr "Editera händelse" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Fel i utförandebegäran" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Detaljer" @@ -7132,7 +7134,7 @@ msgstr "Händelsenamn" msgid "Event type" msgstr "Händelsetyp" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "Ändra till %s" @@ -7159,7 +7161,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Slut" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Definition" @@ -7168,12 +7170,12 @@ msgstr "Definition" msgid "On completion preserve" msgstr "Vid avslut, bevara" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "Definierare" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "Defineraren måste vara i formatet: \"användarnamn@hostname\"" @@ -7219,7 +7221,7 @@ msgid "Returns" msgstr "Returnerar" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Tid" @@ -7239,7 +7241,7 @@ msgstr "" "undvika eventuella problem." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Ogiltig rutintyp: \"%s\"" @@ -7258,69 +7260,69 @@ msgstr "Rutinen %1$s har modifierats." msgid "Routine %1$s has been created." msgstr "Rutinen %1$s har skapats." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Redigera rutin" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Rutinnamn" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Parametrar" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Riktning" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Längd/Värden" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Lägg till parameter" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Ta bort senaste parametern" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Returtyp" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Returnera längd/värden" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Return alternativ" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "Är deterministisk" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Säkerhetstyp" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "SQL dataaccess" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "Du måste ange ett rutinnamn" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Ogiltig riktning \"%s\" angiven för parameter." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7328,41 +7330,41 @@ msgstr "" "Du måste ange Längd / värden rutin parametrar av typen ENUM, SET, VARCHAR " "och VARBINARY." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "Du måste ange ett namn och en typ för varje rutinparameter." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "Du måste ange en giltig returtyp för händelsen." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "Du måste ange en rutindefinition." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "%d rad berörs av det sista uttrycket inom proceduren" msgstr[1] "%d rader berörs av det sista uttrycket inom proceduren" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "Exekveringsresultat av rutin %s" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Utför rutin" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Rutinparametrar" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funktion" @@ -7489,7 +7491,7 @@ msgstr "Det finns inga händelser att visa." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7498,7 +7500,7 @@ msgstr "Tabellen %s existerar inte!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7506,9 +7508,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Var god ange koordinaterna för tabellen %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "Schema för databasen %s - Sida %s" @@ -7521,105 +7523,105 @@ msgstr "Den här sidan innehåller inga tabeller!" msgid "SCHEMA ERROR: " msgstr "SCHEMA FEL:" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Relationsschema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Innehållsförteckning" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Attribut" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Extra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Skapa ny sida" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Sidnamn" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Automatisk layout baserad på" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Interna relationer" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FRÄMMANDE NYCKEL" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Välj en sida att redigera" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Välj sida" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Välj tabeller" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Visa relationsschema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Välj Exportera Relationell Typ" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Visa rutnät" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Visa färg" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Visa tabellers dimensioner" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Visa alla tabeller med samma bredd" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Visa endast nycklar" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Landskap" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Porträtt" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Orientering" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Pappersstorlek" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7627,17 +7629,17 @@ msgstr "" "Nuvarande sida har referenser till tabeller som inte längre existerar. Vill " "du ta bort dessa referenser?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Visa/dölj skisstavla" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Okänt språk: %1$s." @@ -7710,11 +7712,11 @@ msgstr "Rensa" msgid "Columns" msgstr "Kolumn" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Skapa bokmärke för den här SQL-frågan" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Låt varje användare få tillgång till detta bokmärke" @@ -8146,7 +8148,7 @@ msgstr "Protokollversion" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Användare" @@ -8355,7 +8357,7 @@ msgstr "Små/Stora Alla" msgid "Toggle small/big" msgstr "Växla liten/stor" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "Importera/exportera koordinater för PDF-schema" @@ -8427,39 +8429,39 @@ msgstr "" "visningsfält, klicka på ikonen \"Välj fält som ska visas\" och klicka sedan " "på lämpligt fältnamn." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Sidan har skapats" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Sidan gick inte att skapa" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Sida" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Importera från vald sida" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Exportera till vald sida" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Skapa en sida och exportera till den" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Nytt sidnamn:" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Exportera/Importera till skala" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "rekommenderad" @@ -8569,12 +8571,12 @@ msgstr "Importera filer" msgid "All" msgstr "Alla" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s-tabellen hittas ej eller är ej angiven i %s" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Filen finns inte" @@ -8586,13 +8588,13 @@ msgstr "Välj binär logg att visa" msgid "Files" msgstr "Filer" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Korta av visade frågor" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Visa fullständiga frågor" @@ -9418,8 +9420,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Frågor sedan start: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "per timme" @@ -9440,17 +9442,17 @@ msgstr "Uppgifterna" msgid "#" msgstr "#" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Nätverkstrafik sedan start:%s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9458,17 +9460,17 @@ msgstr "" "Denna MySQL-server fungerar sommaster ochslave i " "replicerings process." -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" "Denna MySQL server arbetar som master in replication process." -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" "Denna MySQL server arbetar som slave in replication process." -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9476,11 +9478,11 @@ msgstr "" "För ytterligare information om replikeringsstatus på servern, gå till replikeringssektionen." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Replikeringsstatus" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9488,35 +9490,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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Mottagna" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Skickade" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Max. samtidiga förbindelser" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Misslyckade försök" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Avbrutna" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Kommando" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -9524,11 +9526,11 @@ msgstr "" "Antalet anslutningar som avbröts eftersom klienten dog utan att stänga " "anslutningen ordentligt." -#: server_status.php:1189 +#: server_status.php:1190 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:1190 +#: server_status.php:1191 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 " @@ -9538,16 +9540,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:1191 +#: server_status.php:1192 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:1192 +#: server_status.php:1193 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:1193 +#: server_status.php:1194 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 " @@ -9559,11 +9561,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:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Antalet temporära filer som mysqld har skapat." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9571,7 +9573,7 @@ msgstr "" "Antalet temporära tabeller i minne skapade automatiskt av servern under " "utförande av satser." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9579,7 +9581,7 @@ msgstr "" "Antalet rader skrivna med INSERT DELAYED för vilka något fel uppstod " "(förmodligen dubblerad nyckel)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9587,23 +9589,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "Antalet skrivna rader med INSERT DELAYED." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Antalet utförda FLUSH-satser." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Antalet interna COMMIT-satser." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9613,7 +9615,7 @@ msgstr "" "tabell med ett givet namn. Detta kallas upptäckt. Handler_discover indikerar " "antalet gånger tabeller har upptäckts." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9623,7 +9625,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:1204 +#: server_status.php:1205 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." @@ -9632,7 +9634,7 @@ msgstr "" "är högt är det en bra indikation på att dina frågor och tabeller är riktigt " "indexerade." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9642,7 +9644,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:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9650,7 +9652,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:1207 +#: server_status.php:1208 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 " @@ -9662,7 +9664,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:1208 +#: server_status.php:1209 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 " @@ -9674,35 +9676,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:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Antalet interna ROLLBACK-satser." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Antalet sidor innehållande data (orena eller rena)." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Antalet sidor för närvarande orena." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Antalet tomma sidor." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9712,7 +9714,7 @@ msgstr "" "läses eller skrivs eller som inte kan rensas eller tas bort av någon annan " "anledning." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9724,11 +9726,11 @@ msgstr "" "också beräknas som Innodb_buffer_pool_pages_total - " "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Total storlek på buffert, i antal sidor." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9736,7 +9738,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9744,11 +9746,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:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "Antalet logiska läsefterfrågningar som InnoDB har gjort." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9756,7 +9758,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:1223 +#: server_status.php:1224 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 " @@ -9770,51 +9772,51 @@ msgstr "" "fall med dessa väntanden. Om buffertstorleken var riktigt satt ska detta " "värde vara litet." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "Antalet skrivningar gjorda till InnoDB-bufferten." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Antalet fsync()-operationer hittills." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Nuvarande antal väntande fsync()-operationer." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Nuvarande antal väntande läsningar." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Nuvarande antal väntande skrivningar." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Mängden data läst hittills, i bytes." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Totalt antal läsningar av data." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Totalt antal skrivningar av data." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Mängden data skriven hittills, i bytes." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "Antalet doublewrite transaktioner som har utförts.." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -9822,35 +9824,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Antalet skriv-begäran att skriva till logg." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Antalet fysiska skrivningar till loggfilen." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Antalet fsync()-skrivningar gjorda till loggfilen." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Antalet väntande fsync() av loggfil." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Väntande skrivningar till loggfil." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Antalet bytes skrivna till loggfilen." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Antalet skapade sidor." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9858,51 +9860,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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Antalet lästa sidor." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Antalet skrivna sidor." -#: server_status.php:1246 +#: server_status.php:1247 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:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "Antalet rader borttagna från InnoDB-tabeller." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "Antalet rader tillagda i InnoDB-tabeller." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "Antalet rader lästa från InnoDB-tabeller." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "Antalet rader uppdaterade i InnoDB-tabeller." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -9910,7 +9912,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:1256 +#: server_status.php:1257 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." @@ -9918,7 +9920,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:1257 +#: server_status.php:1258 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 " @@ -9927,11 +9929,11 @@ 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:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -9941,15 +9943,15 @@ 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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "Antalet fysiska skrivningar av ett nyckelblock till disk." -#: server_status.php:1262 +#: server_status.php:1263 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 " @@ -9960,7 +9962,7 @@ msgstr "" "av samma fråga. Standardvärdet 0 innebär att ingen fråga har kompilerats " "ännu." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -9968,11 +9970,11 @@ msgstr "" "Det maximala antalet anslutningar som har använts samtidigt sedan servern " "startade." -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9980,19 +9982,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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Antalet filer som är öppna." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Antalet tabeller som är öppna." -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -10001,19 +10003,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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Mängden fritt minne för frågecache." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Antalet cache-träffar." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Antalet förfrågningar tillagda i cachen." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10025,7 +10027,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:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10033,19 +10035,19 @@ msgstr "" "Antalet icke-cachade frågor (inte möjliga att cacha eller inte cachade pga " "inställningen query_cache_type)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Antalet frågor registrerade i cachen." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Totala antalet block i frågecachen." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Status för felsäker replikering (ännu inte implementerat)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10053,11 +10055,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10066,7 +10068,7 @@ msgstr "" "varje rad. (Om detta värde inte är 0, bör du noggrant kontrollera index för " "dina tabeller.)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10074,17 +10076,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10092,25 +10094,25 @@ msgstr "" "Totalt (sedan start) antal gånger som replikeringsslavens SQL-tråd har " "omprövat transaktioner." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 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:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10120,23 +10122,23 @@ msgstr "" "detta värde är stort bör du överväga att öka värdet i systemvariabeln " "sort_buffer_size." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Antalet sorteringar som gjordes med intervall." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Antalet sorterade rader." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10148,7 +10150,7 @@ msgstr "" "du först optimera dina frågor och antingen dela upp din tabell eller " "tabeller eller använda replikering." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10158,11 +10160,11 @@ msgstr "" "Threads_created/Connections. Om detta värde är rött bör du öka värdet " "thread_cache_size." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Antalet öppna förbindelser." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10174,63 +10176,63 @@ msgstr "" "(Normalt ger detta inte någon märkbar prestandaförbättring om du har en bra " "trådimplementering.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Antalet trådar som inte är vilande." -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "Starta Monitor" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "Instruktioner/Setup" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "Klar ändra/editera diagram" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "Lägg till diagram" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "Ordna/editera diagram" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Uppdateringsfrekvens" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Chart columns:" msgid "Chart columns" msgstr "Visa kolumner:" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Felhantering:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Återställ standardvärde" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "Övervaka instruktioner" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10244,7 +10246,7 @@ msgstr "" "Observera att general_log producerar mycket data och ökar lasten på servern " "med upp till 15%" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10252,13 +10254,13 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Pausa monitor" -#: server_status.php:1509 +#: server_status.php:1510 #, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " @@ -10287,7 +10289,7 @@ msgstr "" "statistik från loggarna vilka hjälper dig att hitta vad som orsakade \n" " aktivitetstopp. " -#: server_status.php:1511 +#: server_status.php:1512 #, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " @@ -10316,11 +10318,11 @@ msgstr "" "statistik från loggarna vilka hjälper dig att hitta vad som orsakade \n" " aktivitetstopp. " -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 #, fuzzy #| msgid "" #| "Please note: Enabling the general_log may increase the server load " @@ -10906,12 +10908,12 @@ msgstr "Visar SQL-fråga" msgid "Validated SQL" msgstr "Validerad SQL-kod" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem med index för tabell `%s`" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Etikett" diff --git a/po/ta.po b/po/ta.po index 71bbb9081e..daa9b7040d 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-14 22:35+0200\n" "Last-Translator: சுரேஸ்குமார் செல்வநாயகம் \n" "Language-Team: Tamil \n" @@ -24,10 +24,10 @@ msgstr "அனைத்தையும் காட்டு" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "பக்க எண்" @@ -42,8 +42,8 @@ msgstr "" "மேம்படுத்தல்களை தடுக்க உள்ளமைக்கப்பட்டிருக்கின்றன." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "தேடு" @@ -51,25 +51,25 @@ msgstr "தேடு" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -91,7 +91,7 @@ msgstr "முக்கியபெயர்" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "விளக்கம்" @@ -101,7 +101,7 @@ msgid "Use this value" msgstr "இந்த மதிப்பை பயன்படுத்துக" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Blob தொடரோடி சேவையகம் கட்டமைக்கப்படவில்லை!" @@ -129,7 +129,7 @@ msgstr "%1$s தரவுத்தளம் உருவாக்கப்பட msgid "Database comment: " msgstr "தரவுத்தள கருத்துரை" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "அட்டவணைக் கருத்துரைகள்" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -151,11 +151,11 @@ msgstr "நிரல்" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -166,8 +166,8 @@ msgstr "வகை" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -177,8 +177,8 @@ msgstr "வெற்று" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -187,8 +187,8 @@ msgstr "முன்னிருப்பு" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "இணைப்பு" @@ -197,8 +197,8 @@ msgstr "இணைப்பு" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "கருத்துரைகள்" @@ -209,7 +209,7 @@ msgstr "கருத்துரைகள்" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -230,7 +230,7 @@ msgstr "இல்லை" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -361,7 +361,7 @@ msgstr "தொடர்புசார் திட்டத்தை திர #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -385,21 +385,21 @@ msgstr "பயன்பாட்டில்" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "உருவாக்கம்" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "இறுதி இற்றைப்படுத்தல்" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "கடைசி சோதனை" @@ -497,7 +497,7 @@ msgstr "வினவலை சமர்ப்பி" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "அனுமதி நிராகரிக்கப்பட்டுள்ளது" @@ -531,7 +531,7 @@ msgstr[0] "%s அட்டவணையில் பொருந்தியவ msgstr[1] "%s அட்டவணையில் பொருந்தியவைகள் %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "உலாவு" @@ -543,10 +543,10 @@ msgstr "%s அட்டவணையில் பொருத்தப்பா #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -662,12 +662,12 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "" @@ -677,13 +677,13 @@ msgstr "" msgid "Print view" msgstr "" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -719,7 +719,7 @@ msgstr "கருதிட்குள் சேர்க்க" msgid "Copy table with prefix" msgstr "" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "" @@ -734,7 +734,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -754,7 +754,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "" @@ -855,14 +855,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -888,7 +888,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -911,7 +911,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1027,9 +1027,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "" @@ -1052,13 +1052,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1088,7 +1088,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "" @@ -1111,7 +1111,7 @@ msgid "Query statistics" msgstr "" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1204,7 +1204,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "" @@ -1213,12 +1213,12 @@ msgstr "" msgid "Questions" msgstr "" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "" @@ -1241,7 +1241,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "" @@ -1448,7 +1448,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "" @@ -1615,7 +1615,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2073,59 +2073,59 @@ msgstr "" msgid "Second" msgstr "" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2153,7 +2153,7 @@ msgid "Cardinality" msgstr "" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "" @@ -2174,14 +2174,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2279,16 +2279,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2302,12 +2302,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2316,7 +2316,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "" @@ -2341,56 +2341,56 @@ msgstr "" "சேவர், பயனாளர் பெயர், கடவுச் சொல் என்பவை MySql நிர்வாகியால் வழங்கப்பட்ட தரவுகளுடன் " "பொருந்துகின்றதா என சரி பாருங்கள்." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "" @@ -2421,39 +2421,39 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2588,7 +2588,7 @@ msgid "Documentation" msgstr "" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "" @@ -2598,7 +2598,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2647,7 +2647,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "உள்வரிசை" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2738,7 +2738,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2758,8 +2758,8 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" @@ -2770,25 +2770,25 @@ msgstr "" msgid "Operations" msgstr "" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -2953,7 +2953,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "" @@ -5099,8 +5099,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5395,7 +5395,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "" @@ -5455,7 +5455,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "" @@ -5985,7 +5985,7 @@ msgstr "" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "" @@ -6190,7 +6190,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6284,7 +6284,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "" @@ -6638,7 +6638,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "" @@ -6673,14 +6673,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "" @@ -6740,7 +6740,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -6777,14 +6777,14 @@ msgstr "" msgid "Edit event" msgstr "புதிய பயனாளரை சேர்க்க" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -6797,7 +6797,7 @@ msgstr "" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "" @@ -6820,7 +6820,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "" @@ -6829,12 +6829,12 @@ msgstr "" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -6882,7 +6882,7 @@ msgid "Returns" msgstr "செயல்கள்" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "" @@ -6898,7 +6898,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -6917,113 +6917,113 @@ msgstr "" msgid "Routine %1$s has been created." msgstr "" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Action" msgid "Direction" msgstr "செயல்" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Actions" msgid "Return options" msgstr "செயல்கள்" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "" @@ -7162,7 +7162,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7171,7 +7171,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7179,9 +7179,9 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -7194,123 +7194,123 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Action" msgid "Orientation" msgstr "செயல்" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7383,11 +7383,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -7750,7 +7750,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "" @@ -7930,7 +7930,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8001,39 +8001,39 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8140,12 +8140,12 @@ msgstr "" msgid "All" msgstr "" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "" @@ -8157,13 +8157,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "" @@ -8943,8 +8943,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "" @@ -8965,101 +8965,101 @@ msgstr "" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "நிறுத்தப்பட்டுள்ளது" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9067,78 +9067,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9146,7 +9146,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9154,42 +9154,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9197,33 +9197,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9232,227 +9232,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9460,99 +9460,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9560,18 +9560,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9579,61 +9579,61 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s களத்தை சேர்க்க" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -9642,7 +9642,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -9650,11 +9650,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -9662,7 +9662,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -9670,11 +9670,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10185,12 +10185,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "" diff --git a/po/te.po b/po/te.po index 9a971f5f36..d943323267 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" @@ -24,10 +24,10 @@ msgstr "అన్నీ చూపించు" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "పుట సంఖ్య:" @@ -40,8 +40,8 @@ msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "శోధించు" @@ -49,25 +49,25 @@ msgstr "శోధించు" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "వివరణ" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "ఈ విలువని ఉపయోగించు" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -127,7 +127,7 @@ msgstr "" msgid "Database comment: " msgstr "డేటాబేస్ వ్యాఖ్య:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "పట్టిక వ్యాఖ్యలు" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -152,11 +152,11 @@ msgstr "ఆజ్ఞ" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -167,8 +167,8 @@ msgstr "రకం" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -178,8 +178,8 @@ msgstr "" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -188,8 +188,8 @@ msgstr "అప్రమేయం" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "" @@ -198,8 +198,8 @@ msgstr "" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "వ్యాఖ్యలు" @@ -210,7 +210,7 @@ msgstr "వ్యాఖ్యలు" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -231,7 +231,7 @@ msgstr "కాదు" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -362,7 +362,7 @@ msgstr "" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -387,21 +387,21 @@ msgstr "వాడుకలో ఉన్నది" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "సృష్టి" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "చివరి మార్పు" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "చివరి చూపు" @@ -503,7 +503,7 @@ msgstr "క్వెరీ ని సమర్పించు" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "యాక్సెస్ నిరోధించడమైనది" @@ -537,7 +537,7 @@ msgstr[0] "" msgstr[1] "" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "" @@ -549,10 +549,10 @@ msgstr "" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -673,12 +673,12 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "ఎగుమతి" @@ -689,13 +689,13 @@ msgid "Print view" msgstr "" # మొదటి అనువాదము -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "ఖాళీ" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -731,7 +731,7 @@ msgstr "పట్టిక వ్యాఖ్యలు" msgid "Copy table with prefix" msgstr "" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "" @@ -747,7 +747,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -767,7 +767,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "స్థితి" @@ -868,14 +868,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -901,7 +901,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -924,7 +924,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1044,9 +1044,9 @@ msgstr "మూసివేయి" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "మార్చు" @@ -1069,13 +1069,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "మొత్తం" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1105,7 +1105,7 @@ msgstr "" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "" @@ -1134,7 +1134,7 @@ msgstr "గణాంకాలను చూపించు" #: js/messages.php:93 #, fuzzy #| msgid "Server configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "సేవకి స్వరూపణం" #: js/messages.php:94 @@ -1231,7 +1231,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "అనుసంధానాలు" @@ -1242,12 +1242,12 @@ msgstr "అనుసంధానాలు" msgid "Questions" msgstr "సంబంధాలు" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "అమరికలు" @@ -1273,7 +1273,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "ఏమీలేదు" @@ -1495,7 +1495,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "దిగుమతి" @@ -1692,7 +1692,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2117,59 +2117,59 @@ msgstr "నిమిషం" msgid "Second" msgstr "క్షణం" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2197,7 +2197,7 @@ msgid "Cardinality" msgstr "" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "వ్యాఖ్య" @@ -2218,14 +2218,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2327,17 +2327,17 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" # మొదటి అనువాదము -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "తీసుకొనుము" @@ -2351,12 +2351,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2365,7 +2365,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%sకి స్వాగతం" @@ -2385,57 +2385,57 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "ప్రవేశించు" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "" # మొదటి అనువాదము -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "వాడుకరి పేరు" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "సంకేతపదం:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "" -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "" @@ -2468,44 +2468,44 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" # మొదటి అనువాదము -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "Page creation failed" msgid "PBMS connection failed:" msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" # మొదటి అనువాదము -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "చిత్రమును చూపుము" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" # మొదటి అనువాదము -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "వీడియోను చూపుము" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2643,7 +2643,7 @@ msgid "Documentation" msgstr "పత్రావళి" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "" @@ -2653,7 +2653,7 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2702,7 +2702,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2804,7 +2804,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2824,8 +2824,8 @@ msgstr "నిర్మాణాకృతి" msgid "SQL" msgstr "" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" @@ -2836,25 +2836,25 @@ msgstr "" msgid "Operations" msgstr "" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3023,7 +3023,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "" @@ -5189,8 +5189,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5488,7 +5488,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "ఎంపికలు" @@ -5549,7 +5549,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "" @@ -6084,7 +6084,7 @@ msgstr "" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "" @@ -6293,7 +6293,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6390,7 +6390,7 @@ msgstr "" msgid "Table name" msgstr "పట్టిక పేరు" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "" @@ -6756,7 +6756,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "వివరణ లేదు" @@ -6791,14 +6791,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "విలువ" @@ -6859,7 +6859,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -6899,14 +6899,14 @@ msgstr "" msgid "Edit event" msgstr "క్రొత్త వాడుకరిని చేర్చు" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -6924,7 +6924,7 @@ msgid "Event type" msgstr "" # మొదటి అనువాదము -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -6952,7 +6952,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "ముగింపు" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -6963,12 +6963,12 @@ msgstr "వివరణ" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7016,7 +7016,7 @@ msgid "Returns" msgstr "పట్టిక ఎంపికలు" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "సమయం" @@ -7032,7 +7032,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7054,122 +7054,122 @@ msgstr "%s డేటాబేస్ తుడిచివేయడమైనద msgid "Routine %1$s has been created." msgstr "పుటను సృష్టించడమైనది" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Comments" msgid "Routine name" msgstr "వ్యాఖ్యలు" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "నేరు లంకెలు" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "పొడవు/విలువలు" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" # మొదటి అనువాదము -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "డేటాబేస్ తొలగించండి" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "పొడవు/విలువలు" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "పట్టిక ఎంపికలు" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "భద్రత" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "" @@ -7318,7 +7318,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7327,7 +7327,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7335,9 +7335,9 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -7350,122 +7350,122 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "విషయ సూచిక" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "" # మొదటి అనువాదము -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "పుటని సృష్టించు" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "పుట పేరు" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "అంతర్గత సంబంధాలు" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "రంగుని చూపించు" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "దిశ" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "కాగితపు పరిమాణం" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "తెలియని భాష: %1$s." @@ -7540,11 +7540,11 @@ msgstr "" msgid "Columns" msgstr "వ్యాఖ్యలు" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -7917,7 +7917,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "వాడుకరి" @@ -8102,7 +8102,7 @@ msgstr "చిన్నవి / పెద్దవి అన్నియు" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8178,44 +8178,44 @@ msgid "" msgstr "" # మొదటి అనువాదము -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "పుటను సృష్టించడమైనది" # మొదటి అనువాదము -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది" # మొదటి అనువాదము -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "పుట" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" # మొదటి అనువాదము -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a page" msgid "Create a page and export to it" msgstr "పుటని సృష్టించు" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "కొత్త పుట పేరు:" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8327,12 +8327,12 @@ msgstr "" msgid "All" msgstr "అన్నీ" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "" @@ -8344,13 +8344,13 @@ msgstr "" msgid "Files" msgstr "దస్త్రాలు" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "" @@ -9144,8 +9144,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "గంటకి" @@ -9166,103 +9166,103 @@ msgstr "" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "" # మొదటి అనువాదము -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "పంపించు" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "" # మొదటి అనువాదము -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "ఆజ్ఞ" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9270,78 +9270,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9349,7 +9349,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9357,42 +9357,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9400,33 +9400,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9435,230 +9435,230 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" # మొదటి అనువాదము -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "సృష్టించబడిన పుటల సంఖ్య" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "చదివిన పుటల సంఖ్య" # మొదటి అనువాదము -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "వ్రాసిన పుటల సంఖ్య" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9666,99 +9666,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9766,18 +9766,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9785,66 +9785,66 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "మొదలుపెట్టు" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" # మొదటి అనువాదము -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add into comments" msgid "Add chart" msgstr "స్పందనలకు చేర్చు" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Table comments" msgid "Chart columns" msgstr "పట్టిక వ్యాఖ్యలు" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Leave blank for defaults" msgid "Reset to default" msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -9853,7 +9853,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -9861,11 +9861,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -9873,7 +9873,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -9881,11 +9881,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10411,12 +10411,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "" diff --git a/po/th.po b/po/th.po index 0a0edfb7bc..e568f6f86e 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-07-24 11:50+0200\n" "Last-Translator: Waitaya Krongapiradee \n" "Language-Team: thai \n" @@ -21,10 +21,10 @@ msgstr "แสดงทั้งหมด" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "หมายเลขหน้า:" @@ -38,8 +38,8 @@ msgstr "" "หรือสาเหตุจากการตั้งค่าความปลอดภัยให้ป้องกันการเปลี่ยนแปลงข้อมูลข้ามหน้าต่าง" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "ค้นหา" @@ -47,25 +47,25 @@ msgstr "ค้นหา" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "ชื่อคีย์" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "คำอธิบาย" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "ใช้ค่านี้" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "ไม่มีการตั้งค่าของเซิร์ฟเวอร์บล็อบสตรีมมิ่ง" @@ -125,7 +125,7 @@ msgstr "ฐานข้อมูล %1$s ถูกสร้างเรียบ msgid "Database comment: " msgstr "หมายเหตุของฐานข้อมูล: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -134,8 +134,8 @@ msgstr "หมายเหตุของตาราง" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -147,11 +147,11 @@ msgstr "สดมภ์" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -162,8 +162,8 @@ msgstr "ชนิด" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -173,8 +173,8 @@ msgstr "ว่างเปล่า (null)" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -183,8 +183,8 @@ msgstr "ค่าปริยาย" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "เชื่อมไปยัง" @@ -193,8 +193,8 @@ msgstr "เชื่อมไปยัง" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "หมายเหตุ" @@ -205,7 +205,7 @@ msgstr "หมายเหตุ" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -226,7 +226,7 @@ msgstr "ไม่" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -355,7 +355,7 @@ msgstr "แก้ไข หรือส่งออก รีเลชันแ #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -379,21 +379,21 @@ msgstr "ใช้อยู่" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "สร้างเมื่อ" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ" @@ -493,7 +493,7 @@ msgstr "ประมวลผลคำค้น" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "ไม่อนุญาตให้ใช้งาน" @@ -528,7 +528,7 @@ msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตารา msgstr[1] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "เปิดดู" @@ -541,10 +541,10 @@ msgstr "dump ตาราง" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -663,12 +663,12 @@ msgstr "ไม่เลือกเลย" msgid "Check tables having overhead" msgstr "ตรวจสอบตารางที่มี overhead" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "ส่งออก" @@ -678,13 +678,13 @@ msgstr "ส่งออก" msgid "Print view" msgstr "แสดง" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "ลบข้อมูล" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -722,7 +722,7 @@ msgstr "เขียนทับด้วยข้อมูลจากไฟล msgid "Copy table with prefix" msgstr "เขียนทับด้วยข้อมูลจากไฟล์" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "พจนานุกรมข้อมูล" @@ -737,7 +737,7 @@ msgstr "ตารางที่ถูกติดตาม" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -758,7 +758,7 @@ msgstr "ปรับปรุงแล้ว" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "สถานะ" @@ -859,14 +859,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "อ่านไฟล์ไม่ได้" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -892,7 +892,7 @@ msgstr "ลบคำค้นที่จดไว้เรียบร้อย msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -915,7 +915,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1038,9 +1038,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "แก้ไข" @@ -1066,13 +1066,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "รวม" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1104,7 +1104,7 @@ msgstr "ตัวเลือกเซิร์ฟเวอร์" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "โพรเซส" @@ -1130,7 +1130,7 @@ msgid "Query statistics" msgstr "สถิติของแถว" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "" #: js/messages.php:94 @@ -1232,7 +1232,7 @@ msgstr "" msgid "Bytes received" msgstr "ได้รับ" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "การเชื่อมต่อ" @@ -1243,12 +1243,12 @@ msgstr "การเชื่อมต่อ" msgid "Questions" msgstr "รุ่น" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "การจราจร" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1275,7 +1275,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "ไม่มี" @@ -1499,7 +1499,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 #, fuzzy msgid "Import" @@ -1698,7 +1698,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2175,59 +2175,59 @@ msgstr "ใช้อยู่" msgid "Second" msgstr "ต่อวินาที" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2255,7 +2255,7 @@ msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2277,14 +2277,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "ฐานข้อมูล" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2387,16 +2387,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2410,12 +2410,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2424,7 +2424,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%s ยินดีต้อนรับ" @@ -2444,56 +2444,56 @@ msgid "" "the administrator of the MySQL server." msgstr "" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "เข้าสู่ระบบ" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "เอกสารการใช้ phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "เซิร์ฟเวอร์" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "ชื่อผู้ใช้:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "รหัสผ่าน:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "ตัวเลือกเซิร์ฟเวอร์" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "ต้องอนุญาตใช้ใช้ 'คุ๊กกี้' (cookie) เสียก่อน จึงจะผ่านจุดนี้ไปได้" -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "ไม่สามารถล็อกอินเข้าเซิร์ฟเวอร์ MySQL ได้" @@ -2524,39 +2524,39 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2693,7 +2693,7 @@ msgid "Documentation" msgstr "เอกสารอ้างอิง" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "คำค้น SQL" @@ -2703,7 +2703,7 @@ msgstr "คำค้น SQL" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2752,7 +2752,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2853,7 +2853,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2873,8 +2873,8 @@ msgstr "โครงสร้าง" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "แทรก" @@ -2885,26 +2885,26 @@ msgstr "แทรก" msgid "Operations" msgstr "กระบวนการ" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3082,7 +3082,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "เริ่มใหม่" @@ -5320,8 +5320,8 @@ msgstr "สร้างตารางในฐานข้อมูลนี้ #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5658,7 +5658,7 @@ msgstr "เรียงโดยคีย์" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5727,7 +5727,7 @@ msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "ฆ่าทิ้ง" @@ -6283,7 +6283,7 @@ msgstr "MIME-types ที่มีอยู่" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "โฮสต์" @@ -6496,7 +6496,7 @@ msgstr "ผลลัพธ์ SQL" msgid "Generated by" msgstr "สร้างโดย" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." @@ -6594,7 +6594,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "ชื่อคอลัมน์" @@ -6957,7 +6957,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "ไม่มีรายละเอียด" @@ -6992,14 +6992,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "ตัวแปร" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "ค่า" @@ -7060,7 +7060,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7097,16 +7097,16 @@ msgstr "" msgid "Edit event" msgstr "ถูกส่ง" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "โพรเซส" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7121,7 +7121,7 @@ msgstr "ชนิดคำค้น" msgid "Event type" msgstr "ชนิดคำค้น" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7148,7 +7148,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "ท้ายสุด" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7161,12 +7161,12 @@ msgstr "รายละเอียด" msgid "On completion preserve" msgstr "คำสั่ง INSERT เต็มรูปแบบ" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7214,7 +7214,7 @@ msgid "Returns" msgstr "ตัวเลือกตาราง" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "เวลา" @@ -7231,7 +7231,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7251,123 +7251,123 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "Routine %1$s has been created." msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "ชื่อคอลัมน์" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "สร้างเมื่อ" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "ความยาว/เซต*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Add new field" msgid "Add parameter" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "เอาฐานข้อมูลออก" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "ความยาว/เซต*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "ตัวเลือกตาราง" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "ชนิดคำค้น" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "ฟังก์ชั่น" @@ -7522,7 +7522,7 @@ msgstr "ตารางที่ถูกติดตาม" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7532,7 +7532,7 @@ msgstr "ไม่มีตาราง \"%s\"!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7540,9 +7540,9 @@ msgid "Please configure the coordinates for table %s" msgstr "กรุณาตั้งค่าโคออร์ดิเนตของตาราง %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7556,131 +7556,131 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "รีเลชันแนล สกีมา" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "สารบัญ" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "แอตทริบิวต์" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "เพิ่มเติม" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "เริ่มหน้าใหม่" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "หมายเลขหน้า:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "จัดตำแหน่งอัตโนมัติ" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "รีเลชันภายใน" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "เลือกหน้าที่ต้องการแก้ไข" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "เลือกทั้งหมด" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "เลือกตาราง" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "รีเลชันแนล สกีมา" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "แสดงกริด" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "แสดงสี" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "แสดงมิติของตาราง" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "ให้แสดงตารางทุกอัน ด้วยความกว้างเท่ากันหรือไม่?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "แนวนอน" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "แนวตั้ง" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "สร้างเมื่อ" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "ขนาดกระดาษ" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7761,11 +7761,11 @@ msgstr "ปฏิทิน" msgid "Columns" msgstr "ชื่อคอลัมน์" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -8168,7 +8168,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "ผู้ใช้" @@ -8364,7 +8364,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8448,50 +8448,50 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "ใช้งาน" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "นำเข้าไฟล์" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "ยังไม่ได้เลือกแถว" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "สร้างดัชนีใหม่" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "ชื่อผู้ใช้" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8602,12 +8602,12 @@ msgstr "นำเข้าไฟล์" msgid "All" msgstr "ทั้งหมด" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "ไม่พบตาราง %s ใน %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8622,13 +8622,13 @@ msgstr "" msgid "Files" msgstr "จำนวนฟิลด์" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "ตัดทอนคำค้นที่แสดง" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "แสดงคำค้นแบบเต็ม" @@ -9447,8 +9447,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "ต่อชั่วโมง" @@ -9469,103 +9469,103 @@ msgstr "คำสั่ง" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "ได้รับ" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "ถูกส่ง" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "ความพยายามล้มเหลว" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "ยกเลิก" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "คำสั่ง" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, fuzzy msgid "The number of failed attempts to connect to the MySQL server." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9573,78 +9573,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9652,7 +9652,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9660,42 +9660,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9703,33 +9703,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9738,227 +9738,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9966,99 +9966,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10066,18 +10066,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10085,64 +10085,64 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "ส." -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add new field" msgid "Add chart" msgstr "เพิ่มฟิลด์ใหม่" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "เรียกใหม่" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10151,7 +10151,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10159,11 +10159,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10171,7 +10171,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10179,11 +10179,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10716,12 +10716,12 @@ msgstr "" msgid "Validated SQL" msgstr "ตรวจสอบ SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "ป้ายชื่อ" diff --git a/po/tr.po b/po/tr.po index e954ed13c5..dd4f68b1a9 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-16 16:08+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" @@ -21,10 +21,10 @@ msgstr "Tümünü göster" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Sayfa numarası:" @@ -39,8 +39,8 @@ msgstr "" "güncellemeleri engellemek için yapılandırılmıştır." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Ara" @@ -48,25 +48,25 @@ msgstr "Ara" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Anahtar adı" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Açıklama" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Bu değeri kullan" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Yapılandırılmış blob akış sunucusu yok!" @@ -116,8 +116,8 @@ msgid "" "The %s file is not available on this system, please visit www.phpmyadmin.net " "for more information." msgstr "" -"Bu sistemde %s dosyası mevcut değil, lütfen daha fazla bilgi için " -"www.phpmyadmin.net adresini ziyaret edin." +"Bu sistemde %s dosyası mevcut değil, lütfen daha fazla bilgi için www." +"phpmyadmin.net adresini ziyaret edin." #: db_create.php:58 #, php-format @@ -128,7 +128,7 @@ msgstr "Veritabanı %1$s oluşturuldu." msgid "Database comment: " msgstr "Veritabanı yorumu: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Tablo yorumları" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Sütun" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Türü" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Boş" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Varsayılan" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Bağlantı verilen" @@ -196,8 +196,8 @@ msgstr "Bağlantı verilen" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Yorumlar" @@ -208,7 +208,7 @@ msgstr "Yorumlar" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Hayır" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -360,7 +360,7 @@ msgstr "Bağlantılı şemayı dışa aktar veya düzenle" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -384,21 +384,21 @@ msgstr "kullanımda" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Oluşturma" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Son güncellenme" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Son kontrol" @@ -495,7 +495,7 @@ msgstr "Sorguyu Gönder" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Erişim engellendi" @@ -528,7 +528,7 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s benzeşme, %s tablosu içinde" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Gözat" @@ -540,10 +540,10 @@ msgstr "%s tablosu için benzeşenler silinsin mi?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -659,12 +659,12 @@ msgstr "Hiçbirini Seçme" msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Dışa Aktar" @@ -674,13 +674,13 @@ msgstr "Dışa Aktar" msgid "Print view" msgstr "Baskı görünümü" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Boşalt" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -714,7 +714,7 @@ msgstr "Tablo ön ekini değiştir" msgid "Copy table with prefix" msgstr "Tabloyu ön eki ile kopyala" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Veri sözlüğü" @@ -729,7 +729,7 @@ msgstr "İzlenen tablolar" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -749,7 +749,7 @@ msgstr "Güncellendi" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Durum" @@ -854,14 +854,14 @@ 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:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Dosya okunamadı" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -892,7 +892,7 @@ msgstr "İşaretleme silindi." msgid "Showing bookmark" msgstr "Gösterilen işaret" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "İşaretleme %s oluşturuldu" @@ -920,7 +920,7 @@ msgstr "" "biteremeyeceği anlamına gelir." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1037,9 +1037,9 @@ msgstr "Kapat" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Düzenle" @@ -1062,13 +1062,13 @@ msgstr "Sabit veri" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Toplam" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Diğer" @@ -1098,7 +1098,7 @@ msgstr "Sunucu trafiği (KiB olarak)" msgid "Connections since last refresh" msgstr "Son yenilemeden bu yana bağlantılar" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "İşlemler" @@ -1121,7 +1121,9 @@ msgid "Query statistics" msgstr "Sorgu istatistikleri" #: js/messages.php:93 -msgid "Local monitor configuration icompatible" +#, fuzzy +#| msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Yerel izleme yapılandırması uyumsuz" #: js/messages.php:94 @@ -1218,7 +1220,7 @@ msgstr "Gönderilmiş bayt" msgid "Bytes received" msgstr "Alınmış bayt" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Bağlantılar" @@ -1227,12 +1229,12 @@ msgstr "Bağlantılar" msgid "Questions" msgstr "Sorular" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Trafik" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "Ayarlar" @@ -1255,7 +1257,7 @@ msgstr "Lütfen diziye en az bir değişken ekleyin" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Yok" @@ -1482,7 +1484,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "İçe Aktar" @@ -1647,7 +1649,7 @@ msgid "Query execution time" msgstr "Sorgu yürütme süresi" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -1663,7 +1665,6 @@ msgid "Show search criteria" msgstr "Arama kriterini göster" #: js/messages.php:262 libraries/tbl_select.lib.php:138 -#| msgid "Search" msgid "Zoom Search" msgstr "Yakınlaştırma Arama" @@ -1693,14 +1694,14 @@ msgstr "" #: js/messages.php:274 msgid "The plot can be resized by dragging it along the bottom right corner." -msgstr "Çizim en alt sağ köşe boyunca sürüklenerek yeniden boyutlandırılabilir." +msgstr "" +"Çizim en alt sağ köşe boyunca sürüklenerek yeniden boyutlandırılabilir." #: js/messages.php:276 msgid "Strings are converted into integer for plotting" msgstr "Satırlar çizim yapmak için tam sayıya dönüştürülür" #: js/messages.php:278 -#| msgid "Add/Delete columns" msgid "Select two columns" msgstr "İki sütun seçin" @@ -1791,7 +1792,6 @@ msgstr "" "düzenleyebilirsiniz." #: js/messages.php:307 -#| msgid "Go to view" msgid "Go to link" msgstr "Bağlantıya git" @@ -2073,24 +2073,24 @@ msgstr "Dakika" msgid "Second" msgstr "Saniye" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Yazı Tipi boyutu" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "Dosya gönderilmiş bir dosya değil." -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "Gönderilirken bilinmeyen hata oldu." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2098,27 +2098,27 @@ msgstr "" "Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini " "aşıyor." -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Gönderilen dosya sadece kısmen gönderildi." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Eksik geçici klasör." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Dosyayı diske yazma başarısız." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Dosya gönderme uzantısından dolayı durduruldu." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Dosya göndermede bilinmeyen hata oldu." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2126,11 +2126,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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "Gönderilmiş dosya taşınırken hata oldu." -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "Gönderilen dosya okunamıyor (taşınamadı)." @@ -2158,7 +2158,7 @@ msgid "Cardinality" msgstr "Önemlilik" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Yorum" @@ -2181,14 +2181,14 @@ msgstr "" "İndeks %1$s ve %2$s eşit görünüyor ve bunlardan birinin silinmesi mümkün " "olabilir." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Veritabanları" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2280,19 +2280,19 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Tablo KA tercihlerini temizleme başarısız " -"($cfg['Servers'][$i]['MaxTableUiprefs'] %s bakın)" +"Tablo KA tercihlerini temizleme başarısız ($cfg['Servers'][$i]" +"['MaxTableUiprefs'] %s bakın)" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "%s teması için geçerli resim yolu bulunamadı!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Önizleme mevcut değil." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "Al" @@ -2306,12 +2306,12 @@ msgstr "Varsayılan tema %s bulunamadı!" msgid "Theme %s not found!" msgstr "%s teması bulunamadı!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "%s teması için tema yolu bulunamadı!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2320,7 +2320,7 @@ msgid "Cannot connect: invalid settings." msgstr "Bağlanamıyor: geçersiz ayarlar." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%s'e Hoş Geldiniz" @@ -2346,45 +2346,45 @@ msgstr "" "parolayı kontrol edin ve MySQL sunucusu yöneticisi tarafından verilen " "bilgiye uyduğundan emin olun." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Oturum aç" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin belgeleri" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" "Anamakine adı/IP adresi ve bağlantı noktasını boşluk bırakarak ayrı " "girebilirsiniz." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Sunucu:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Kullanıcı Adı:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Parola:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Sunucu Seçimi" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Bu kısmı geçmek için tanımlama bilgileri (cookies) açık olmalıdır." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2392,14 +2392,14 @@ msgstr "" "Yapılandırma tarafından parolasız oturum açma yasaktır (AllowNoPassword'a " "bakın)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s saniye içinde hiçbir işlem yapılmadı, lütfen yeniden oturum açın" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL sunucusuna oturum açılamıyor" @@ -2430,39 +2430,39 @@ msgstr "Geçerli kimlik doğrulama anahtarı takılı değil" msgid "Authenticating..." msgstr "Kimlik doğrulanıyor..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS hatası" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS bağlantısı başarısız:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS, BLOB bilgisi alması başarısız:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "PBMS, BLOB İçerik Türü alması başarısız" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Resmi göster" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Ses çal" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Görüntüyü göster" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Dosyayı indir" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "Açılamayan dosya: %s" @@ -2603,7 +2603,7 @@ msgid "Documentation" msgstr "Belgeler" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL sorgusu" @@ -2613,7 +2613,7 @@ msgstr "SQL sorgusu" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2662,7 +2662,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Sıralı" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profil çıkart" @@ -2753,7 +2753,7 @@ msgid "Click to toggle" msgstr "Değiştirmek için tıklayın" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2773,8 +2773,8 @@ msgstr "Yapı" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Ekle" @@ -2785,25 +2785,25 @@ msgstr "Ekle" msgid "Operations" msgstr "İşlemler" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "Bilgisayarınıza gözat:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Web sunucusu gönderme dizininden %s seçin:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 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/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "Göndermek için dosyalar yok" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Çalıştır" @@ -2968,7 +2968,7 @@ 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:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Sıfırla" @@ -4478,7 +4478,6 @@ msgstr "" "emin olur" #: libraries/config/messages.inc.php:399 -#| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "En fazla kayıt sayısı \"table_uiprefs\" tablosuna kaydedildi" @@ -5310,8 +5309,8 @@ msgstr "%s veritabanında yeni tablo oluştur" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5621,7 +5620,7 @@ msgstr "Anahtara göre sırala" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Seçenekler" @@ -5681,7 +5680,7 @@ msgid "The row has been deleted" msgstr "Satır silindi" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Sonlandır" @@ -6274,7 +6273,7 @@ msgstr "MIME türlerini göster" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Anamakine" @@ -6502,7 +6501,7 @@ msgstr "SQL sonucu" msgid "Generated by" msgstr "Üreten:" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş bir sonuç kümesi döndürdü (örn. sıfır satır)." @@ -6605,7 +6604,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Tablo adı" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Sütun adları" @@ -6966,7 +6965,7 @@ msgstr "" "Güncellenmiş yapılandırma dosyasını yüklemek için phpMyAdmin'e yeniden " "oturum açın." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "Açıklama yok" @@ -7003,14 +7002,14 @@ msgid "Slave status" msgstr "Slave durumu" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Değişken" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Değer" @@ -7074,7 +7073,7 @@ msgstr "Parola Üret" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7109,14 +7108,14 @@ msgstr "İsteğiniz işlenirken bir ya da daha fazla hata meydana geldi:" msgid "Edit event" msgstr "Olay düzenle" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "İstek işlemede hata" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "Ayrıntılar" @@ -7129,7 +7128,7 @@ msgstr "Olay adı" msgid "Event type" msgstr "Olay türü" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "%s'a değiştir" @@ -7152,7 +7151,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Bitiş" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "Tanım" @@ -7161,12 +7160,12 @@ msgstr "Tanım" msgid "On completion preserve" msgstr "Tamamlamada koruma" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "Tanımlayıcı" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "Tanımlayıcı \"kullanıcıadı@anamakineadı\" biçiminde olmak zorundadır" @@ -7212,7 +7211,7 @@ msgid "Returns" msgstr "Dönüşler" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Süre" @@ -7232,7 +7231,7 @@ msgstr "" "'mysql' uzantısı kullanın." #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "Geçersiz yordam türü: \"%s\"" @@ -7251,69 +7250,69 @@ msgstr "Yordam %1$s değiştirildi." msgid "Routine %1$s has been created." msgstr "Yordam %1$s oluşturuldu." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "Yordamı düzenle" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "Yordam adı" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "Parametreler" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "Yön" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Uzunluk/Değerler" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "Parametre ekle" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "Son parametreyi kaldır" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Dönüş türü" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "Dönüş uzunluğu/değerleri" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "Dönüş seçenekleri" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "Belirleyici" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "Güvenlik türü" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "SQL veri erişimi" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "Bir yordam adı vermek zorundasınız" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "Parametre için geçersiz yön \"%s\" verilmiş." -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." @@ -7321,40 +7320,40 @@ msgstr "" "ENUM, SET, VARCHAR ve VARBINARY türünün yordam parametreleri için uzunluk/" "değerler vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "Her yordam parametresi için bir ad ve bir tür vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "Yordam için geçerli bir dönüş türü vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "Bir yordam tanımı vermek zorundasınız." -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "İşlemin içindeki son ifade tarafından %d satır etkilendi" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "%s yordamı yürütme sonuçları" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "Yordamı çalıştır" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "Yordam parametreleri" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "İşlev" @@ -7481,7 +7480,7 @@ msgstr "Görüntülemek için olaylar yok." #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7490,7 +7489,7 @@ msgstr "%s tablosu yok!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7498,9 +7497,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Lütfen %s tablosu için koordinatları yapılandırın" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "%s veritabanının şeması - Sayfa %s" @@ -7513,105 +7512,105 @@ msgstr "Bu sayfa herhangi bir tablo içermiyor!" msgid "SCHEMA ERROR: " msgstr "ŞEMA HATASI: " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Bağlantılı şema" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "İçerik tablosu" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Öznitelikler" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Ekstra" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Yeni bir sayfa oluştur" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "Sayfa adı" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "Otomatik yerleşim tabanı" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Dahili bağlantılar" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "FOREIGN KEY" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Lütfen düzenlemek için sayfa seçin" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "Sayfa seç" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Tabloları seç" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "Bağlantılı şemayı göster" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "Dışa Aktarma Bağlantılı Türü Seç" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Izgara göster" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Rengi göster" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Tabloların boyutlarını göster" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Bütün tablolar aynı genişlikte gösterilsin" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Sadece anahtarları göster" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Peyzaj" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portre" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "Yönlendirme" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Kağıt boyutu" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7619,17 +7618,17 @@ msgstr "" "Şu anki sayfa, daha fazla bulunması gereksiz tablolara verilmiş referanslara " "sahip. Bu referansları silmek ister misiniz?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Karalama panosunu değiştir" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Bilinmeyen dil: %1$s." @@ -7702,11 +7701,11 @@ msgstr "Temizle" msgid "Columns" msgstr "Sütun" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Bu SQL sorgusunu işaretle" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver" @@ -7941,7 +7940,6 @@ msgid "Operator" msgstr "İşletici" #: libraries/tbl_select.lib.php:131 -#| msgid "Search" msgid "Table Search" msgstr "Tablo Arama" @@ -8137,7 +8135,7 @@ msgstr "Protokol sürümü" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Kullanıcı" @@ -8348,7 +8346,7 @@ msgstr "Tümü Küçük/Büyük" msgid "Toggle small/big" msgstr "Küçüğü/büyüğü değiştir" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "PDF şeması için düzenlemeleri içe/dışa aktar" @@ -8420,39 +8418,39 @@ msgstr "" "ayarı kaldırmak için \"Görüntülemek için sütun seç\" simgesine tıklayın, " "sonrada uygun sütun adı üzerine tıklayın." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Sayfa oluşturuldu" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Sayfa oluşturma başarısız" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "Sayfa" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "Seçili sayfadan içe aktar" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "Seçili sayfaya aktar" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "Yeni bir sayfa oluştur ve ona aktar" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "Yeni sayfa adı: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Ölçeklemek için içe/dışa aktar" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "önerilir" @@ -8563,12 +8561,12 @@ msgstr "Dosyaları içe aktar" msgid "All" msgstr "Tümü" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s tablosu bulunamadı veya %s içinde ayarlanmadı" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "Dosya mevcut değil" @@ -8580,13 +8578,13 @@ msgstr "Görüntülemek için binari günlüğünü seçin" msgid "Files" msgstr "Dosyalar" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Gösterilen Sorguları Kısalt" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Tüm Sorguları Göster" @@ -9416,8 +9414,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Başlangıçtan bu yana sorular: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "saat başına" @@ -9438,17 +9436,17 @@ msgstr "İfadeler" msgid "#" msgstr "#" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "Başlangıçtan bu yana ağ trafiği: %s" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." @@ -9456,19 +9454,19 @@ msgstr "" "Bu MySQL sunucusu kopya etme işlemi sırasında master ve " "slave olarak çalışır." -#: server_status.php:963 +#: server_status.php:964 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:965 +#: server_status.php:966 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:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9476,11 +9474,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:978 +#: server_status.php:979 msgid "Replication status" msgstr "Kopya etme durumu" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9488,35 +9486,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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Alınan" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Gönderilen" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "En fazla eşzamanlı bağlantı" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Başarısız deneme" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "İptal edilen" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Komut" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." @@ -9524,11 +9522,11 @@ msgstr "" "Bağlantı uygun bir şekilde kapatılmadan sonlanmış istemcinin durdurulmuş " "bağlantılarının sayısı." -#: server_status.php:1189 +#: server_status.php:1190 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ı." -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -9538,16 +9536,16 @@ msgstr "" "binlog_cache_size değerini aştı ve işlemdeki ifadeleri depolamak için geçici " "dosya kullandı." -#: server_status.php:1191 +#: server_status.php:1192 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ı." -#: server_status.php:1192 +#: server_status.php:1193 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ı." -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9559,11 +9557,11 @@ msgstr "" "büyük ise, geçici tabloların disk tabanlı yerine bellek tabanlı olamasına " "sebep olmak için tmp_table_size değerini arttırmak isteyebilirsiniz." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "Mysqld'nin kaç tane geçici dosya oluşturduğudur." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -9571,7 +9569,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:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9579,7 +9577,7 @@ msgstr "" "INSERT DELAYED komutu ile yazılmış, bazı hataların meydana geldiği satır " "sayısı (muhtemelen kopya anahtar)." -#: server_status.php:1197 +#: server_status.php:1198 msgid "" "The number of INSERT DELAYED handler threads in use. Every different table " "on which one uses INSERT DELAYED gets its own thread." @@ -9587,23 +9585,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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "INSERT DELAYED satır yazımı sayısıdır." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Çalıştırılmış FLUSH ifadesi sayısıdır." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Dahili COMMIT ifadesi sayısıdır." -#: server_status.php:1201 +#: server_status.php:1202 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:1202 +#: server_status.php:1203 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 " @@ -9613,7 +9611,7 @@ msgstr "" "motorunu sorabilir. Buna keşfetme denir. Handler_discover tabloların keç kez " "keşfedildiğini gösterir." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9623,7 +9621,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:1204 +#: server_status.php:1205 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." @@ -9632,7 +9630,7 @@ msgstr "" "sorgularınızın ve tablolarınızın düzgün bir şekilde indekslenmesinin iyi " "olduğu belirtisidir." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -9642,7 +9640,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:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9650,7 +9648,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:1207 +#: server_status.php:1208 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 " @@ -9663,7 +9661,7 @@ msgstr "" "fazla sorgulamanız vardır veya düzgün bir şekilde anahtarları " "kullanmamaktasınız." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9675,35 +9673,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:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "Dahili ROLLBACK ifadesi sayısıdır." -#: server_status.php:1210 +#: server_status.php:1211 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:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 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:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "Şu anki dolu sayfa sayısıdır." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Boş sayfa sayısıdır." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9713,7 +9711,7 @@ msgstr "" "okunan veya yazılmış ya da bazı diğer sebepler yüzünden temizlenemeyen veya " "taşınamayan sayfalardır." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9725,11 +9723,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:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Sayfalardaki arabellek havuzunun toplam boyutudur." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9737,7 +9735,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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -9745,11 +9743,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:1221 +#: server_status.php:1222 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:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -9757,7 +9755,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:1223 +#: server_status.php:1224 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 " @@ -9771,55 +9769,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:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB arabellek havuzuna bitti yazma sayısıdır." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Şimdiye kadarki fsync() işlem sayısıdır." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Şu anki bekleyen fsync() işlem sayısıdır." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Şu anki bekleyen okuma sayısıdır." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Şu anki bekleyen yazma sayısıdır." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki veri okuma miktarıdır." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Toplam veri okuma sayısıdır." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Toplam veri yazma sayısıdır." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Bayt cinsinden şimdiye kadarki yazılmış veri miktarıdır." -#: server_status.php:1233 +#: server_status.php:1234 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:1234 +#: server_status.php:1235 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:1235 +#: server_status.php:1236 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." @@ -9827,35 +9825,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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Günlük yazma isteği sayısıdır." -#: server_status.php:1237 +#: server_status.php:1238 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:1238 +#: server_status.php:1239 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "Bekleyen günlük dosyası fsyncs sayısıdır." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Bekleyen günlük dosyası yazma sayısıdır." -#: server_status.php:1241 +#: server_status.php:1242 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:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Oluşturulmuş sayfa sayısıdır." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9863,52 +9861,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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Okunan sayfa sayısıdır." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Yazılmış sayfa sayısıdır." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Şu anki beklenen satır kilidi sayısıdır." -#: server_status.php:1247 +#: server_status.php:1248 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:1248 +#: server_status.php:1249 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:1249 +#: server_status.php:1250 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:1250 +#: server_status.php:1251 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:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB tablolarından silinen satır sayısıdır." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB tablolarına eklenen satır sayısıdır." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB tablolarından okunan satır sayısıdır." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB tablolarında güncellenen satır sayısıdır." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -9916,7 +9914,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:1256 +#: server_status.php:1257 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." @@ -9925,7 +9923,7 @@ msgstr "" "önbelleğinin ne kadarının kullanımda olmasını belirlemek için " "kullanabilirsiniz." -#: server_status.php:1257 +#: server_status.php:1258 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 " @@ -9934,11 +9932,11 @@ 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:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -9948,15 +9946,15 @@ 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:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 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:1262 +#: server_status.php:1263 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 " @@ -9967,7 +9965,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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." @@ -9975,11 +9973,11 @@ msgstr "" "Sunucunun başlatılmasından bu yana kullanımda olan eşzamanlı en fazla " "bağlantı sayısı." -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -9987,19 +9985,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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Açık olan dosya sayısıdır." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Açık olan tablo sayısıdır." -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -10009,19 +10007,19 @@ msgstr "" "QUERY CACHE ifadesinin çıkmasıyla çözülebilen, parçalanma sorunlarını işaret " "edebilir." -#: server_status.php:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Sorgu önbelleği için boş bellek miktarıdır." -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Önbelleğe ulaşma sayısıdır." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Önbelleğe eklenen sorgu sayısıdır." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10033,7 +10031,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:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10041,19 +10039,19 @@ msgstr "" "Önbelleklenmemiş sorgu sayısıdır (önbelleklenemez, ya da query_cache_type " "ayarından dolayı önbelleklenmedi)." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Önbellekte kayıtlı sorgu sayısıdır." -#: server_status.php:1276 +#: server_status.php:1277 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:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Arıza-güvenli kopya etme durumu (henüz tamamlanmadı)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10061,11 +10059,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:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10074,7 +10072,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:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10082,15 +10080,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:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10098,11 +10096,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:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10110,12 +10108,12 @@ msgstr "" "Oluşturmak için slow_launch_time saniyeden daha uzun zaman almış işlem " "sayısıdır." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10125,23 +10123,23 @@ msgstr "" "değer büyükse, sort_buffer_size sistem değişkeninin değerini arttırmayı " "dikkate almalısınız." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Aralıklarla yapılmış sıralama sayısıdır." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Sıralanmış satır sayısıdır." -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10153,7 +10151,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:1294 +#: server_status.php:1295 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 " @@ -10163,11 +10161,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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Şu anki açık bağlantı sayısıdır." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10179,43 +10177,43 @@ msgstr "" "(eğer iyi bir işlem uygulamasına sahipseniz, normal olarak bu, dikkate değer " "bir performans artışı vermez.)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Hala faaliyette olan işlemler sayısıdır." -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "İzlemeyi başlat" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "Yönergeler/Ayarlama" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "Çizelgeleri düzenlemeyi/yeniden düzeltmeyi bitir" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "Çizelge ekle" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "Çizelgeleri düzenle/yeniden düzelt" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "Oranı yenile" -#: server_status.php:1467 +#: server_status.php:1468 msgid "Chart columns" msgstr "Çizelge sütunları" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "Çizelge ayarlaması" -#: server_status.php:1483 +#: server_status.php:1484 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." @@ -10223,15 +10221,15 @@ msgstr "" "Çizelgelerin ayarlanması tarayıcının yerel deposunda depolanır. Eğer karışık " "ayarlamalarınız varsa, bunu dışa aktarmak isteyebilirsiniz." -#: server_status.php:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "Varsayılana sıfırla" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "İzleme Yönergeleri" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10245,7 +10243,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:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10257,22 +10255,11 @@ msgstr "" "günlükleme MySQL 5.1.6 ve sonrakiler tarafından desteklenir. Yinede hala " "sunucu çizelgeleme özelliklerini kullanabilirsiniz." -#: server_status.php:1507 -#| msgid "Pause monitor" +#: server_status.php:1508 msgid "Using the monitor:" msgstr "İzleyici kullanımı:" -#: server_status.php:1509 -#| msgid "" -#| "Using the monitor:
Ok, you are good to go! Once you click " -#| "'Start monitor' 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.

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 confirmed, this will load a table of grouped queries, there " -#| "you may click on any occuring SELECT statements to further analyze them." +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10285,17 +10272,7 @@ msgstr "" "değiştirebilirsiniz veya her çizelgenin kendi dişli çark simgesini " "kullanarak herhangi bir çizelgeyi kaldırabilirsiniz." -#: server_status.php:1511 -#| msgid "" -#| "Using the monitor:
Ok, you are good to go! Once you click " -#| "'Start monitor' 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.

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 confirmed, this will load a table of grouped queries, there " -#| "you may click on any occuring SELECT statements to further analyze them." +#: server_status.php:1512 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 " @@ -10308,17 +10285,11 @@ msgstr "" "yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT " "ifadesine tıklayabilirsiniz." -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "Lütfen unutmayın:" -#: server_status.php:1520 -#| msgid "" -#| "Please note: 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." +#: server_status.php:1521 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 " @@ -10392,9 +10363,6 @@ 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:1608 -#| msgid "" -#| "

Choose from which log you want the statistics to be generated from. Results are grouped by query text." 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." @@ -10887,12 +10855,12 @@ msgstr "SQL sorgusu gösteriliyor" msgid "Validated SQL" msgstr "Oanylı SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Etiket" @@ -11555,22 +11523,18 @@ msgid "Create version" msgstr "Sürüm oluştur" #: tbl_zoom_select.php:140 -#| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "İki farklı sütun için \"örneğe göre sorgu\" (joker: \"%\") yap" #: tbl_zoom_select.php:151 -#| msgid "Hide search criteria" msgid "Additional search criteria" msgstr "İlave arama kriteri" #: tbl_zoom_select.php:281 -#| msgid "Label" msgid "Data Label" msgstr "Veri Etiketi" #: tbl_zoom_select.php:297 -#| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "Çizim için en fazla satır" @@ -11579,7 +11543,6 @@ msgid "Browse/Edit the points" msgstr "Noktalara gözat/düzenle" #: tbl_zoom_select.php:394 -#| msgid "Control user" msgid "How to use" msgstr "Nasıl kullanılır" @@ -12271,13 +12234,11 @@ msgstr "" #: po/advisory_rules.php:160 #, php-format -#| msgid "Max % MyISAM key buffer ever used" msgid "Max %% MyISAM key buffer ever used" msgstr "Şimdiye kadar kullanılan en fazla %% MyISAM anahtar arabelleği" #: po/advisory_rules.php:161 po/advisory_rules.php:166 #, php-format -#| msgid "Max % MyISAM key buffer ever used" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "Kullanılan MyISAM anahtar arabelleği (indeks önbelleği) %% düşük." @@ -12376,7 +12337,6 @@ msgstr "" #: po/advisory_rules.php:190 #, php-format -#| msgid "Immediate table locks %" msgid "Immediate table locks %%" msgstr "Acil tablo kilitleri %%" @@ -12422,7 +12382,6 @@ msgstr "" #: po/advisory_rules.php:205 #, php-format -#| msgid "Thread cache hit rate %" msgid "Thread cache hit rate %%" msgstr "İşlem önbelleği tavan oranı %%" diff --git a/po/tt.po b/po/tt.po index 515dd98d87..ff2fd0d392 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" @@ -21,10 +21,10 @@ msgstr "Barısın kürsät" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Bitneñ sanı:" @@ -39,8 +39,8 @@ msgstr "" "tora." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Ezläw" @@ -48,25 +48,25 @@ msgstr "Ezläw" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Tezeş adı" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Açıqlama" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Bu bäyä belän" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -126,7 +126,7 @@ msgstr "%s biremlege beterelde." msgid "Database comment: " msgstr "Biremlek açıqlaması:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -135,8 +135,8 @@ msgstr "Tüşämä açıqlaması" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "Alan iseme" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "Töre" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "Buş" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "Töpcay" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Bonı belän bäyläneş:" @@ -196,8 +196,8 @@ msgstr "Bonı belän bäyläneş:" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Açıqlama" @@ -208,7 +208,7 @@ msgstr "Açıqlama" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "Yuq" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -368,7 +368,7 @@ msgstr "Bäyläneşlär sxeme" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -392,21 +392,21 @@ msgstr "totıla" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Yasalışı" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Soñğı yañartılu" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Soñğı tikşerü" @@ -509,7 +509,7 @@ msgstr "Sorawnı Yulla" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "İreşep Bulmadı" @@ -543,7 +543,7 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s kileşü bar, %s atlı tüşämädä" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Küzätü" @@ -556,10 +556,10 @@ msgstr "Tüşämä eçtälegen çığaru" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -684,12 +684,12 @@ msgstr "Saylanunı Töşer" msgid "Check tables having overhead" msgstr "Check overheaded" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Export" @@ -699,13 +699,13 @@ msgstr "Export" msgid "Print view" msgstr "Bastıru küreneşe" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Buşat" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -744,7 +744,7 @@ msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" msgid "Copy table with prefix" msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Eçtälek Süzlege" @@ -760,7 +760,7 @@ msgstr "Tüşämä tikşerü" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -782,7 +782,7 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Torış" @@ -890,14 +890,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Birem uqıp bulmadı" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -923,7 +923,7 @@ msgstr "Tamğa beterelde." msgid "Showing bookmark" msgstr "Bitbilge kürsätü" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "%s digän bitbilge yaratıldı" @@ -946,7 +946,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1074,9 +1074,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Tözätü" @@ -1102,13 +1102,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Tulayım" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1140,7 +1140,7 @@ msgstr "Server Saylaw" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Proseslar" @@ -1168,7 +1168,7 @@ msgstr "Kerem Nöfüse" #: js/messages.php:93 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" #: js/messages.php:94 @@ -1277,7 +1277,7 @@ msgstr "" msgid "Bytes received" msgstr "Alındı" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Totaşular" @@ -1287,12 +1287,12 @@ msgstr "Totaşular" msgid "Questions" msgstr "Farsíça" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Taşım" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1319,7 +1319,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Buş" @@ -1544,7 +1544,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Yökläw" @@ -1743,7 +1743,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2221,60 +2221,60 @@ msgstr "totıla" msgid "Second" msgstr "sekund sayın" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 #, 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:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2302,7 +2302,7 @@ msgid "Cardinality" msgstr "Qabatlanu sanı" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 #, fuzzy msgid "Comment" @@ -2324,14 +2324,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Biremleklär" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2435,16 +2435,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "%s digän tışlaw sürätläre urınlaşqan yul tabılmadı!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "bonı sayla" @@ -2458,12 +2458,12 @@ msgstr "%s digän töp tışlaw tabılmadı!" msgid "Theme %s not found!" msgstr "%s digän tışlaw tabılmadı!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "%s digän tışlaw urınlaşqan yul tabılmadı!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2472,7 +2472,7 @@ msgid "Cannot connect: invalid settings." msgstr "Totaşa almím: yaraqsız köyläwlär." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%s siña İsäñme di" @@ -2496,56 +2496,56 @@ msgstr "" "sersüzlär tikäserep, alarnı MySQL idäräçese birgän mäğlümät belän çağıştırıp " "qarísı qala." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Kereş" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin qullanması" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Atama:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Sersüz:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Server Saylaw" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Cookies must be enabled past this point." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "Kimendä %s sekund eşlämi tordıq, şuña kürä yañadan keräse" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL servergä totaşılıp bulmadı" @@ -2576,41 +2576,41 @@ msgstr "" msgid "Authenticating..." msgstr "" -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "MySQL connection collation" msgid "PBMS connection failed:" msgstr "MySQL-totaşunıñ tezü cayı" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2753,7 +2753,7 @@ msgid "Documentation" msgstr "Qullanma" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-soraw" @@ -2763,7 +2763,7 @@ msgstr "SQL-soraw" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2814,7 +2814,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Engine" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2913,7 +2913,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2933,8 +2933,8 @@ msgstr "Tözeleş" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Östäw" @@ -2945,26 +2945,26 @@ msgstr "Östäw" msgid "Operations" msgstr "Eşkärtü" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, 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/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 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/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3141,7 +3141,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Awdar" @@ -5405,8 +5405,8 @@ msgstr "%s biremlegendä yaña tüşämä yaratu" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5752,7 +5752,7 @@ msgstr "Qullanası tezeş" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 #, fuzzy msgid "Options" @@ -5820,7 +5820,7 @@ msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Üter" @@ -6392,7 +6392,7 @@ msgstr "Barlıq MIME-törlär" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6611,7 +6611,7 @@ msgstr "SQL qaytarışı" msgid "Generated by" msgstr "Ürçätkeç:" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." @@ -6711,7 +6711,7 @@ msgstr "" msgid "Table name" msgstr "tüşämä adı" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Alan iseme" @@ -7071,7 +7071,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "Açıqlamasız" @@ -7106,14 +7106,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Üzgärmä" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Bäyä" @@ -7173,7 +7173,7 @@ msgstr "Sersüz Ürçetü" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7210,16 +7210,16 @@ msgstr "" msgid "Edit event" msgstr "Cibärelde" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Proseslar" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7234,7 +7234,7 @@ msgstr "Buldıq töre" msgid "Event type" msgstr "Buldıq töre" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7263,7 +7263,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Azaq" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7276,12 +7276,12 @@ msgstr "Açıqlama" msgid "On completion preserve" msgstr "Tulayım östise" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7329,7 +7329,7 @@ msgid "Returns" msgstr "Tüşämä köyläneşe" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Waqıt" @@ -7346,7 +7346,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7367,121 +7367,121 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "Routine %1$s has been created." msgstr "\"%s\" atlı tüşämä beterelde" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Alan iseme" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Yasalışı" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Ozınlıq/Bäyä*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Biremlekne bolay atap quy" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Ozınlıq/Bäyä*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Tüşämä köyläneşe" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Soraw töre" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Eçke funksílar eşlätterergä birä." -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funksí" @@ -7635,7 +7635,7 @@ msgstr "Tüşämä tikşerü" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7645,7 +7645,7 @@ msgstr "\"%s\" atlı tüşämä yuq äle!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7653,9 +7653,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Please configure the coordinates for table %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7669,115 +7669,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Bäyläneşlär sxeme" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Eçtälek isemlege" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Üzençälek" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Östämä" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Yaña Bit yaratu" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Bitneñ sanı:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Zihenle urnaştıru" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Eçke bäyläneş" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Tözätü öçen berär bit sayla" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Tüşämä Saylaw" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Tüşämä Saylaw" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Bäyläneşlär sxeme" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Sırlı kürsät" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Tösle kürsät" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Tüşämä ülçämen kürsätü" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "display all Tables with same width?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Yatqırıp" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Batırıp" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Yasalışı" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Qäğäz zuqlığı" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7785,17 +7785,17 @@ 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Toggle scratchboard" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Belgesez tel: %1$s." @@ -7875,11 +7875,11 @@ msgstr "Täqwim" msgid "Columns" msgstr "Alan iseme" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" @@ -8343,7 +8343,7 @@ msgstr "Protokol söreme" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Qullanuçı" @@ -8547,7 +8547,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8632,50 +8632,50 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 #, fuzzy msgid "Page has been created" msgstr "\"%s\" atlı tüşämä beterelde" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "bit" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Biremdän alu" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Kertemnär sayladı" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yaña tezeş yaratu" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "İreşü iseme" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8788,12 +8788,12 @@ msgstr "Biremdän alu" msgid "All" msgstr "Barısı" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "%s atlı tüşämä yuq, yä ki \"%s\" tezmäsenä kermi" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8808,13 +8808,13 @@ msgstr "Qaraw öçen binar köndälek saylaw" msgid "Files" msgstr "Alan" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Sorawnı Qısqartıp Kürsätäse" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Tulı Sorawlar Kürsät" @@ -9641,8 +9641,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "säğät sayın" @@ -9663,104 +9663,104 @@ msgstr "Cömlä" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 #, fuzzy msgid "Replication status" msgstr "Bäyläneşlär" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Alındı" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Cibärelde" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Failed attempts" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Özderelde" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Ämer" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9768,78 +9768,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9847,7 +9847,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9855,43 +9855,43 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 #, fuzzy msgid "The number of pages currently dirty." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Buş bitlär sanı." -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9899,33 +9899,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9934,92 +9934,92 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 #, fuzzy msgid "The current number of pending reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:1228 +#: server_status.php:1229 #, fuzzy msgid "The current number of pending writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 #, fuzzy msgid "The total number of data reads." msgstr "Uqılğan bit sanı bu." -#: server_status.php:1231 +#: server_status.php:1232 #, fuzzy msgid "The total number of data writes." msgstr "Yazılğan bit sanı bu." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 #, fuzzy msgid "The number of log write requests." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:1237 +#: server_status.php:1238 #, 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:1238 +#: server_status.php:1239 #, 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:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Köndälek biremenä yazılğan bayt sanı bu." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Yaratılğan bit sanı bu." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10028,144 +10028,144 @@ msgstr "" "values are counted in pages; the page size allows them to be easily " "converted to bytes." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Uqılğan bit sanı bu." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Yazılğan bit sanı bu." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 #, 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:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Açıq toruçı birem sanı." -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Açıq toruçı tüşämä sanı." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "Alxätergä turı kilü sanı bu." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10173,99 +10173,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Tezelgän yazma sanı bu." -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10273,18 +10273,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Biredä açıq bulğan totaşu sanı." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10292,65 +10292,65 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 #, fuzzy msgid "The number of threads that are not sleeping." msgstr "Açıq toruçı birem sanı." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Şmb" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add %s field(s)" msgid "Add chart" msgstr "%s alan östäw" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Yañart" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "Add/Delete Field Columns" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10359,7 +10359,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10367,11 +10367,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10379,7 +10379,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10387,11 +10387,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10927,12 +10927,12 @@ msgstr "Tulı Sorawlar Kürsät" msgid "Validated SQL" msgstr "SQL'nı Tikşer" -#: sql.php:890 +#: sql.php:918 #, 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:921 +#: sql.php:949 msgid "Label" msgstr "Yarlıq" diff --git a/po/ug.po b/po/ug.po index 1dd8006af7..02171d01c8 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" @@ -24,10 +24,10 @@ msgstr "ھەممىسىنى كۆرسىتىش" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "بەت نومۇرى:" @@ -41,8 +41,8 @@ msgstr "" "ياكى تور كۆرەۈچىڭىزنىڭ بىخەتەرلىك تەڭشىكى تسقۇنلۇق قىلغان بۇلىشى مۇمكىن." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "ئىزدەش" @@ -50,25 +50,25 @@ msgstr "ئىزدەش" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -90,7 +90,7 @@ msgstr "قىممەت ئىسمى" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "ئىزاھات" @@ -100,7 +100,7 @@ msgid "Use this value" msgstr "مۇشۇ قىممەتنى ئىشلىتىش" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "No blob streaming server configured!" @@ -128,7 +128,7 @@ msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" msgid "Database comment: " msgstr "ساندان ئىزاھاتى:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "جەدۋەل ئىزاھى" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -150,11 +150,11 @@ msgstr "سۆزلەم" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -165,8 +165,8 @@ msgstr "تۈرى" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -176,8 +176,8 @@ msgstr "بوش" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -186,8 +186,8 @@ msgstr "ئەندىز" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "ئۇلانما" @@ -196,8 +196,8 @@ msgstr "ئۇلانما" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "ئىزاھلار" @@ -208,7 +208,7 @@ msgstr "ئىزاھلار" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -229,7 +229,7 @@ msgstr "يوق" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -362,7 +362,7 @@ msgstr "PDF تىزىىسىنى كۆرسىتىش" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -386,21 +386,21 @@ msgstr "ئىشلىتىلمەكتە" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "قۇرۇش" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "ئاخىرقى يېڭلىنىش" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "ئاخىرقى تەكشۈرۈش" @@ -497,7 +497,7 @@ msgstr "تاپشۇرۇش" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "رەت قىلىندى" @@ -530,7 +530,7 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "كۆزەت" @@ -543,10 +543,10 @@ msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -667,12 +667,12 @@ msgstr "تاللاشنى بىكار قىلىش" msgid "Check tables having overhead" msgstr "مەزمۇن بارلارنى تاللاش" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "چىقىرىش" @@ -682,13 +682,13 @@ msgstr "چىقىرىش" msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "تازىلاش" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -724,7 +724,7 @@ msgstr "جەدۋەلنى ئوڭشاش" msgid "Copy table with prefix" msgstr "" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "مەلۇمات لۇغىتى" @@ -739,7 +739,7 @@ msgstr "ئىزلانغان جەدۋەل" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -759,7 +759,7 @@ msgstr "يېڭلاش" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "ھالەت" @@ -864,14 +864,14 @@ msgstr "" "سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش " "چارىسىنى كۆرۈڭ." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "ھۆججەتنى ئوقۇيالمىدى" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -902,7 +902,7 @@ msgstr "خەتكۈچ ئۆچۈرۈلدى" msgid "Showing bookmark" msgstr "خەتكۈچنى كۆرسىتىش" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "قۇرۇلغان خەتكۈچ %s" @@ -929,7 +929,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1055,9 +1055,9 @@ msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "تەھىرلەش" @@ -1084,13 +1084,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "يىغىندىسى" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1122,7 +1122,7 @@ msgstr "مۇلازىمىتېر تاللاش" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "" @@ -1147,7 +1147,7 @@ msgstr "" #: js/messages.php:93 #, fuzzy #| msgid "Could not load default configuration from: %1$s" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." #: js/messages.php:94 @@ -1252,7 +1252,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "" @@ -1263,12 +1263,12 @@ msgstr "" msgid "Questions" msgstr "نەشىر" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1295,7 +1295,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "يوق" @@ -1521,7 +1521,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "كىرگۈزۈش" @@ -1718,7 +1718,7 @@ msgid "Query execution time" msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2150,53 +2150,53 @@ msgstr "مىنۇت" msgid "Second" msgstr "سېكنۇت" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "خەتنىڭ چوڭ-كىچىكلىكى" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن " "ئېشىپ كەتتى." -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2204,11 +2204,11 @@ msgstr "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2236,7 +2236,7 @@ msgid "Cardinality" msgstr "تۈپ سان" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "ئىزاھات" @@ -2259,14 +2259,14 @@ msgstr "" "The indexes %1$s and %2$s seem to be equal and one of them could possibly be " "removed." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "ساندان" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2365,16 +2365,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "No valid image path for theme %s found!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "ئالدىن كۆرگىنى بولمايدۇ." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "ئېلىش" @@ -2388,12 +2388,12 @@ msgstr "ئۇسلۇپ ئەندىزسى %s تېپىلمىدى!" msgid "Theme %s not found!" msgstr "تېما %s تېپىلمىدى!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "ماۋزۇ %s تېپىلمىدى." -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2402,7 +2402,7 @@ msgid "Cannot connect: invalid settings." msgstr "ئۇلىنالمىدى: ئۈنۈمسىز تەڭشەك." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%s خۇش كەلدىڭىز" @@ -2428,56 +2428,56 @@ msgstr "" "configuration and make sure that they correspond to the information given by " "the administrator of the MySQL server." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "كىرىش" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin ھۆججىتى" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "You can enter hostname/IP address and port separated by space." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "مۇلازىمىتېر:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "ئابۇنىت ئىسمى:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "شىفىر" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "مۇلازىمىتېر تاللاش" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Cookies نى قوزغاتقاندىن كېيىن ئاندىن كېرىڭ." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "پارولسىز كىرىش چەكلەنگەن (پارولسىز كىرىش ئىقازىتىنى كۆرۈڭ)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "No activity within %s seconds; please log in again" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL مۇلازىمىتېرىغا ئۇلىنالمىدى." @@ -2510,39 +2510,39 @@ msgstr "No valid authentication key plugged" msgid "Authenticating..." msgstr "تەكشۈرۈشتىن ئۆزكۈزىۋاتىدۇ..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS خاتالىقى" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS ئۇلىنالمىدى:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "رەسىمنى كۆرۈش" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "ئاۋاز قۇيۇش" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "سىن قۇيۇش" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "ھۆججەت چۈشۈرۈش" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2679,7 +2679,7 @@ msgid "Documentation" msgstr "قوللانما" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL سورىقى" @@ -2689,7 +2689,7 @@ msgstr "SQL سورىقى" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2738,7 +2738,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ئىچكى بىرلىشىش" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "ئاساسىي مەزمۇن" @@ -2841,7 +2841,7 @@ msgid "Click to toggle" msgstr "بىر چىكىپ تاللاڭ" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2861,8 +2861,8 @@ msgstr "تۈزۈلىشى" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "قىستۇرۇش" @@ -2873,26 +2873,26 @@ msgstr "قىستۇرۇش" msgid "Operations" msgstr "ئىشلەملەر" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3061,7 +3061,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "" @@ -5246,8 +5246,8 @@ msgstr "ساندان %s غا جەدىۋەل قۇرۇش" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5585,7 +5585,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "" @@ -5647,7 +5647,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "" @@ -6199,7 +6199,7 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "ئاساسىي ماشىنا" @@ -6408,7 +6408,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6505,7 +6505,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "" @@ -6861,7 +6861,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "" @@ -6896,14 +6896,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "" @@ -6963,7 +6963,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7002,14 +7002,14 @@ msgstr "" msgid "Edit event" msgstr "مەجبۇرى قوشۇش" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7026,7 +7026,7 @@ msgstr "قىممەت ئىسمى" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7052,7 +7052,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "ئاخىرقىسى" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7063,12 +7063,12 @@ msgstr "ئىزاھات" msgid "On completion preserve" msgstr "" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7116,7 +7116,7 @@ msgid "Returns" msgstr "تۈرگە قايتىش" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "ۋاقىت" @@ -7132,7 +7132,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7154,122 +7154,122 @@ msgstr "%s كۆرۈنمە ئۆچۈرۈلدى" msgid "Routine %1$s has been created." msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Routines" msgid "Edit routine" msgstr "دائىملىق" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "دائىملىق" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "قۇرۇش" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "تۈرگە قايتىش" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Action" msgid "Return options" msgstr "ئامال" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Return type" msgid "Security type" msgstr "تۈرگە قايتىش" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "دائىملىق" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "" @@ -7423,7 +7423,7 @@ msgstr "ئىزلانغان جەدۋەل" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7432,7 +7432,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7440,9 +7440,9 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -7457,127 +7457,127 @@ msgstr "File %s does not contain any key id" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "ھەممىنى تاللاش" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "PDF تىزىىسىنى كۆرسىتىش" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "رەڭنى كۆرسىتىش" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "پەقەت كونوپكىنى كورسىتىش" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "توغرا يۈنىلىشتە" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "بوي يۈنىلىشتە" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "قۇرۇش" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "قەغەزنىڭ چوڭ-كىچىكلىكى" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7652,11 +7652,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -8024,7 +8024,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "" @@ -8211,7 +8211,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8296,43 +8296,43 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "بەت سانى" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "Keyname" msgid "New page name: " msgstr "قىممەت ئىسمى" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8441,12 +8441,12 @@ msgstr "" msgid "All" msgstr "" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "" @@ -8458,13 +8458,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "" @@ -9256,8 +9256,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "" @@ -9278,101 +9278,101 @@ msgstr "" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "بۇيرۇق" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9380,78 +9380,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9459,7 +9459,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9467,42 +9467,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9510,33 +9510,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9545,227 +9545,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9773,99 +9773,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9873,18 +9873,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9892,62 +9892,62 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Routines" msgid "Add chart" msgstr "دائىملىق" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "يېڭلاش" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete columns" msgid "Chart columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -9956,7 +9956,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -9964,11 +9964,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -9976,7 +9976,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -9984,11 +9984,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10513,12 +10513,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "" diff --git a/po/uk.po b/po/uk.po index 9956673815..3e83432126 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-07-03 18:10+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" @@ -22,10 +22,10 @@ msgstr "Показати все" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Номер сторінки:" @@ -40,8 +40,8 @@ msgstr "" "оновлення." #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Шукати" @@ -49,25 +49,25 @@ msgstr "Шукати" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -89,7 +89,7 @@ msgstr "Ім'я ключа" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Опис" @@ -99,7 +99,7 @@ msgid "Use this value" msgstr "Використовувати це значення" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "Потоковий сервер не налаштований!" @@ -129,7 +129,7 @@ msgstr "Базу даних %1$s створено." msgid "Database comment: " msgstr "Коментар бази даних: " -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -138,8 +138,8 @@ msgstr "Коментар до таблиці" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -151,11 +151,11 @@ msgstr "Стовпчик" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -166,8 +166,8 @@ msgstr "Тип" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -177,8 +177,8 @@ msgstr "Нуль" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -187,8 +187,8 @@ msgstr "По замовчуванню" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Лінки до" @@ -197,8 +197,8 @@ msgstr "Лінки до" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Коментарі" @@ -209,7 +209,7 @@ msgstr "Коментарі" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -230,7 +230,7 @@ msgstr "Ні" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -361,7 +361,7 @@ msgstr "Редагувати або експортувати схему зв'я #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -385,21 +385,21 @@ msgstr "використовується" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Створено" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Поновлено" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Перевірено" @@ -499,7 +499,7 @@ msgstr "Виконати запит" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Доступ заборонено" @@ -534,7 +534,7 @@ msgstr[1] "%s співпадіння у таблиці %s" msgstr[2] "%s співпадінь у таблиці %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Переглянути" @@ -546,10 +546,10 @@ msgstr "Видалити співпадіння для таблиці %s ?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -670,12 +670,12 @@ msgstr "Зняти усі відмітки" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Експорт" @@ -685,13 +685,13 @@ msgstr "Експорт" msgid "Print view" msgstr "Версія для друку" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Очистити" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -727,7 +727,7 @@ msgstr "Замінити дані таблиці даними з файлу" msgid "Copy table with prefix" msgstr "Копіювати таблицю з префіксом" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Словник даних" @@ -742,7 +742,7 @@ msgstr "" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -762,7 +762,7 @@ msgstr "Оновлено" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Статус" @@ -865,14 +865,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Неможливо прочитати файл" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -898,7 +898,7 @@ msgstr "Закладку було видалено." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "" @@ -921,7 +921,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1037,9 +1037,9 @@ msgstr "Закрити" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Редагувати" @@ -1066,13 +1066,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Разом" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "Інше" @@ -1104,7 +1104,7 @@ msgstr "Вибір сервера" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Процеси" @@ -1129,7 +1129,7 @@ msgstr "Статистика запиту" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Неможливо прочитати конфігураційний файл." #: js/messages.php:94 @@ -1234,7 +1234,7 @@ msgstr "" msgid "Bytes received" msgstr "Отримано" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "З'єднань" @@ -1245,12 +1245,12 @@ msgstr "З'єднань" msgid "Questions" msgstr "Зв'язки" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Трафік" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1277,7 +1277,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Немає" @@ -1503,7 +1503,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Імпорт" @@ -1682,7 +1682,7 @@ msgid "Query execution time" msgstr "Максимальний час виконання" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2104,61 +2104,61 @@ msgstr "Хвилина" msgid "Second" msgstr "Секунда" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Розмір шрифту" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Невідома помилка при завантаженні файлу." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." msgstr "" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Неможливо записати файл на диск." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Невідома помилка при завантаженні файлу." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" msgstr "" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2186,7 +2186,7 @@ msgid "Cardinality" msgstr "Кількість елементів" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Коментар" @@ -2207,14 +2207,14 @@ msgid "" "removed." msgstr "" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Бази Даних" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2314,16 +2314,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "" @@ -2337,12 +2337,12 @@ msgstr "" msgid "Theme %s not found!" msgstr "" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2351,7 +2351,7 @@ msgid "Cannot connect: invalid settings." msgstr "" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "Ласкаво просимо до %s" @@ -2375,56 +2375,56 @@ msgstr "" "config.inc.php та впевнитися, що вони відповідають даним отриманим Вами від " "адміністратора MySQL сервера." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Вхід в систему" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "Документація по phpMyAdmin" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Сервер:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Ім'я користувача:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Пароль:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Вибір сервера" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "З цього моменту Cookies повинні бути дозволені." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "Авторизація без паролю заборонена в настройках (див. AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "Не можу зареєструватися на MySQL сервері" @@ -2455,39 +2455,39 @@ msgstr "" msgid "Authenticating..." msgstr "Авторизуємося..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2624,7 +2624,7 @@ msgid "Documentation" msgstr "Документація" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL-запит" @@ -2634,7 +2634,7 @@ msgstr "SQL-запит" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2683,7 +2683,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "" @@ -2782,7 +2782,7 @@ msgid "Click to toggle" msgstr "" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2802,8 +2802,8 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Вставити" @@ -2814,25 +2814,25 @@ msgstr "Вставити" msgid "Operations" msgstr "Операцій" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Встановлений Вами каталог для завантаження файлів недоступний" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "Виконати" @@ -2997,7 +2997,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Перевстановити" @@ -5145,8 +5145,8 @@ msgstr "Створити нову таблицю в БД %s" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5451,7 +5451,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "" @@ -5517,7 +5517,7 @@ msgid "The row has been deleted" msgstr "Рядок видалено" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Вбити" @@ -6069,7 +6069,7 @@ msgstr "Доступні MIME-types" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Хост" @@ -6279,7 +6279,7 @@ msgstr "SQL result" msgid "Generated by" msgstr "Згенеровано" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." @@ -6376,7 +6376,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Назви колонок" @@ -6736,7 +6736,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "без опису" @@ -6771,14 +6771,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Змінна" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Значення" @@ -6838,7 +6838,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -6877,14 +6877,14 @@ msgstr "" msgid "Edit event" msgstr "Додати нового користувача" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "Помилка при обробці запиту" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -6899,7 +6899,7 @@ msgstr "Ім'я користувача" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -6929,7 +6929,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Кінець" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -6942,12 +6942,12 @@ msgstr "Опис" msgid "On completion preserve" msgstr "повні вставки" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -6995,7 +6995,7 @@ msgid "Returns" msgstr "Налаштування таблиці" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Час" @@ -7011,7 +7011,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "" @@ -7032,99 +7032,99 @@ msgstr "Таблицю %s було знищено" msgid "Routine %1$s has been created." msgstr "Базу даних %1$s створено." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Column names" msgid "Routine name" msgstr "Назви колонок" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "Створено" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Довжини/Значення*" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "Видалити базу даних" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Довжини/Значення*" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Налаштування таблиці" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Query type" msgid "Security type" msgstr "Тип запиту" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" @@ -7132,22 +7132,22 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Функція" @@ -7301,7 +7301,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -7311,7 +7311,7 @@ msgstr "Таблиці \"%s\" не існує!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7319,9 +7319,9 @@ msgid "Please configure the coordinates for table %s" msgstr "Прошу сконфіґурувати координати таблиці %s" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -7335,115 +7335,115 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Схема зв'язків" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Зміст" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Атрибути" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Додатково" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Створити нову сторінку" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Номер сторінки:" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автоматичний layout" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Прошу вибрати сторінку для редагування" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Вибрати таблиці" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Вибрати таблиці" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Схема зв'язків" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Показати сітку" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Показати колір" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Показати розміри таблиць" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "показувати всі таблиці однакової ширини?" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Landscape" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Portrait" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Створено" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Формат паперу" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -7451,17 +7451,17 @@ msgstr "" "Ця сторінка має посилання на таблицю, якої вже немає. Бажаєте видалити ці " "посилання?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "ввімкнути чорновик (scratchboard)" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7538,11 +7538,11 @@ msgstr "" msgid "Columns" msgstr "Назви колонок" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Закладка на даний SQL-запит" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -7980,7 +7980,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Користувач" @@ -8177,7 +8177,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8262,47 +8262,47 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Usage" msgid "Page" msgstr "Використання" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Імпорт файлів" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Створити новий індекс" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Ім'я користувача" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8411,12 +8411,12 @@ msgstr "Імпорт файлів" msgid "All" msgstr "Все" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "Таблицю %s не знайдено або не визначено у %s" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -8430,13 +8430,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Обрізати показані запити" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Показати повні запити" @@ -9263,8 +9263,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "за годину" @@ -9285,102 +9285,102 @@ msgstr "Параметр" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "Отримано" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Відправлено" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Невдалих спроб" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Перервано" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Команда" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9388,78 +9388,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9467,7 +9467,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9475,42 +9475,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9518,33 +9518,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9553,227 +9553,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9781,99 +9781,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9881,18 +9881,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9900,63 +9900,63 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add into comments" msgid "Add chart" msgstr "Додати коментар" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy #| msgid "Refresh" msgid "Refresh rate" msgstr "Оновити" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Column names" msgid "Chart columns" msgstr "Назви колонок" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -9965,7 +9965,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -9973,11 +9973,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -9985,7 +9985,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -9993,11 +9993,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10532,12 +10532,12 @@ msgstr "" msgid "Validated SQL" msgstr "Перевірити SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Мітка" diff --git a/po/ur.po b/po/ur.po index c404731e6a..887ec55258 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" @@ -24,10 +24,10 @@ msgstr "تمام دکھائیں" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "صفحہ نمبر:" @@ -41,8 +41,8 @@ msgstr "" "کیا ہو یا آپ کے سلامتی ترتیبات پار دریچہ تازہ کاری میں رکاوٹ بن رہے ہوں۔" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "تلاش" @@ -50,25 +50,25 @@ msgstr "تلاش" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -90,7 +90,7 @@ msgstr "کلید نام" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "وضاحت" @@ -100,7 +100,7 @@ msgid "Use this value" msgstr "یہ قدر استعمال کریں" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "بلوب بہاؤ سرور موزوں نہیں ہوا!" @@ -131,7 +131,7 @@ msgstr "کوائفیہ $1%s بن گئی ہے۔" msgid "Database comment: " msgstr "کوائفیہ تبصرہ:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -140,8 +140,8 @@ msgstr "جدول تبصرے" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -155,11 +155,11 @@ msgstr "کالم" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -170,8 +170,8 @@ msgstr "قِسم" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -181,8 +181,8 @@ msgstr "خالی" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -191,8 +191,8 @@ msgstr "طے شدہ" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "ربط بطرف" @@ -201,8 +201,8 @@ msgstr "ربط بطرف" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "تبصرہ" @@ -213,7 +213,7 @@ msgstr "تبصرہ" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -234,7 +234,7 @@ msgstr "نہیں" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -365,7 +365,7 @@ msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -390,21 +390,21 @@ msgstr "استعمال میں ہے" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "بنائیں" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "آخری دفعہ کی تازہ کاری" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "آخری دفعہ کی پڑتال" @@ -503,7 +503,7 @@ msgstr "طلب بھیجیں" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "‏‏رسائی نہیں دی گئی" @@ -537,7 +537,7 @@ msgstr[0] "%sجدول کے ساتھ مشابہ%s" msgstr[1] "%sجدول کے ساتھ مشابہات%s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "براؤز" @@ -549,10 +549,10 @@ msgstr "اس جدول کے مشابہات حذف %s کریں؟" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -673,12 +673,12 @@ msgstr "تمام غیر پڑتال کریں" msgid "Check tables having overhead" msgstr "اوور ہیڈ جداول کی پڑتال کریں" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "برآمد" @@ -688,13 +688,13 @@ msgstr "برآمد" msgid "Print view" msgstr "چھپائی منظر" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "خالی" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -732,7 +732,7 @@ msgstr "جدول کوائف کو مسل سے بدلیں" msgid "Copy table with prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "کوائف لغت" @@ -747,7 +747,7 @@ msgstr "کھوج شدہ جداول" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -767,7 +767,7 @@ msgstr "تازہ کی گئی" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "حالت" @@ -872,14 +872,14 @@ msgstr "" "آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے " "%sdocumentation%s دیکھیں۔" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "مسل قابل مطالعہ نہیں ہے" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -910,7 +910,7 @@ msgstr "نشانی حذف ہوچکا ہے۔" msgid "Showing bookmark" msgstr "نشانی دکھاتے ہوئے" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "نشانی %s بنایا گیا" @@ -937,7 +937,7 @@ msgstr "" "کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1060,9 +1060,9 @@ msgstr "بند کریں" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "تدوین" @@ -1089,13 +1089,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "میزان" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1127,7 +1127,7 @@ msgstr "سرور انتخاب" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "" @@ -1154,7 +1154,7 @@ msgstr "طلب شماریات" #: js/messages.php:93 #, fuzzy #| msgid "Configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "تشکیلی مسل" #: js/messages.php:94 @@ -1257,7 +1257,7 @@ msgstr "" msgid "Bytes received" msgstr "" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "" @@ -1268,12 +1268,12 @@ msgstr "" msgid "Questions" msgstr "نسخے" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1300,7 +1300,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "" @@ -1525,7 +1525,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "درآمد" @@ -1710,7 +1710,7 @@ msgid "Query execution time" msgstr "چلنے کی حد اوقات" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2138,52 +2138,52 @@ msgstr "منٹ" msgid "Second" msgstr "سیکنڈ" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "فانٹ سائز" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "اپ لوڈ مسل نے php.ini میں موجود upload_max_filesize ہدایات سے تجاوز کی۔" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "اپ لوڈ کی گئی مسل صرف جزوی اپ لوڈ ہوا ہے۔" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "ایک عارضی پوشہ موجود نہیں ہے۔" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "ڈسک پر مسل تحریر ناکام ہوا۔" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "مسل قسم کی وجہ سے اپ لوڈ روکا گیا۔" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2191,11 +2191,11 @@ msgstr "" "اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [a@./Documentation." "html#faq1_11@Documentation]عمومی سوالات 1.11[/a]" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2223,7 +2223,7 @@ msgid "Cardinality" msgstr "درجہ تعلق داری" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "تبصرہ" @@ -2246,14 +2246,14 @@ msgstr "" "اشاریے %1$s اور %2$s مساوی نظر آتے ہیں اور ان میں ایک ممکنہ طور پر ہٹا دیا " "جائے گا۔" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "کوائفیے" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2355,16 +2355,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "اس خیالیہ %s کے لیے درست راہ نہیں ملا!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "کوئی پیش منظر دستیاب نہیں ہے۔" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "اسے لیں" @@ -2378,12 +2378,12 @@ msgstr "طے شدہ خیالیہ %s نہیں ملا!" msgid "Theme %s not found!" msgstr "خیالیہ %s نیہں ملا!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "خیالیہ راہ اس خیالیہ %s کے لیے نہیں ملا!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2392,7 +2392,7 @@ msgid "Cannot connect: invalid settings." msgstr "جڑ نہیں سکتا: غلط ترتیبات۔" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "%s میں خوش آمدید" @@ -2417,56 +2417,56 @@ msgstr "" "ہوسٹ، صارف نام، پاس ورڈ کو اپنے تشکیل میں پڑتال کریں اور اثبات کریں کہ دی " "گئی معلومات MySQL سرور منتظم نے دیے ہیں۔" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "لاگ ان" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin دستاویز" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "آپ ہوسٹ نام یا IP پتا اور دہانہ وقفوں سے جدا کرکے داخل کرسکتے ہیں۔" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "سرور:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "صارف نام:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "پاس ورڈ:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "سرور انتخاب" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "اس جگہ کوکی لازمی اہل ہوں۔" -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "پاس ورڈ کے بغیر لاگ ان تشکیل میں ممنوع ہے (دیکھیں AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "%s سیکنڈ میں کوئی سرگرمی نہیں ہوئی، دوبارہ لاگ ان کریں۔" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL سرور میں لاگ ان نہیں کرسکتا" @@ -2497,41 +2497,41 @@ msgstr "جائز توثیقی کلید پلگ نہیں ہے" msgid "Authenticating..." msgstr "توثیق کررہا ہے..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS نقص" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS جڑت ناکام ہوا:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS حاصل کریں BLOB معلومات ناکام ہوا:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "get BLOB Content-Type ناکام ہوا" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "تصویر دیکھیں" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "آڈیو چلائیں" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "ویڈیو دکھائیں" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "مسل ڈاؤن لوڈ کریں" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "مسل نہیں کھول سکتا: %s" @@ -2669,7 +2669,7 @@ msgid "Documentation" msgstr "دستاویزات" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL طلب" @@ -2679,7 +2679,7 @@ msgstr "SQL طلب" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2728,7 +2728,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ان لائن" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "تفصیلات" @@ -2829,7 +2829,7 @@ msgid "Click to toggle" msgstr "انتخاب کے لیے کلک کریں" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2849,8 +2849,8 @@ msgstr "ساخت" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "داخل کریں" @@ -2861,25 +2861,25 @@ msgstr "داخل کریں" msgid "Operations" msgstr "عملیات" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "اپنے کمپیوٹر کو براؤز کریں:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3044,7 +3044,7 @@ msgid "Allow users to customize this value" msgstr "صارفین کو اس قدر کے مخصوص کرنے کی اجازت دیں" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "دوبارہ سیٹ کریں" @@ -5297,8 +5297,8 @@ msgstr "" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5611,7 +5611,7 @@ msgstr "" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "" @@ -5671,7 +5671,7 @@ msgid "The row has been deleted" msgstr "" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "" @@ -6207,7 +6207,7 @@ msgstr "" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "" @@ -6416,7 +6416,7 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6514,7 +6514,7 @@ msgstr "" msgid "Table name" msgstr "" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "" @@ -6870,7 +6870,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "" @@ -6905,14 +6905,14 @@ msgid "Slave status" msgstr "" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "" @@ -6972,7 +6972,7 @@ msgstr "" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -7011,16 +7011,16 @@ msgstr "" msgid "Edit event" msgstr "نیا صارف اضافہ کریں" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "فرمایش عمل کرتے ہوئے نقص ہے" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "" @@ -7035,7 +7035,7 @@ msgstr "صفحہ نمبر" msgid "Event type" msgstr "" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, php-format msgid "Change to %s" msgstr "" @@ -7062,7 +7062,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "اختتام" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7075,12 +7075,12 @@ msgstr "وضاحت" msgid "On completion preserve" msgstr "داخل کرنا مکمل ہوا" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7128,7 +7128,7 @@ msgid "Returns" msgstr "عمل" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "وقت" @@ -7144,7 +7144,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7166,121 +7166,121 @@ msgstr "Table %s has been dropped" msgid "Routine %1$s has been created." msgstr "کوائفیہ $1%s بن گئی ہے۔" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "تدوین موڈ" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Comments" msgid "Routine name" msgstr "آراء-رائے" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Creation" msgid "Direction" msgstr "بنائیں" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "کوائفیہ ہٹائیں" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Action" msgid "Return options" msgstr "عمل" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "سلامتی" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" msgstr[1] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "" @@ -7436,7 +7436,7 @@ msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7445,7 +7445,7 @@ msgstr "" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7453,9 +7453,9 @@ msgid "Please configure the coordinates for table %s" msgstr "" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "" @@ -7468,129 +7468,129 @@ msgstr "" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "صفحہ نمبر" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select All" msgid "Select page" msgstr "سارا منتخب کریں" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Display PDF schema" msgid "Display relational schema" msgstr "دکھائیں PDF schema" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "گرِڈ دکھائیں" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "کلر دکھائیں" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "ٹیبلز کی جسامت دیکھیں" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "سارے ٹیبلز یکساں چوڑائی کے ساتھ دیکھیں" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "صرف کیز دیکھیں" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "لینڈسکیپ" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "پورٹریٹ" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "تخلیق" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "صفحے کا ناپ" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "rtl" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "" @@ -7665,11 +7665,11 @@ msgstr "" msgid "Columns" msgstr "آراء-رائے" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "" @@ -8037,7 +8037,7 @@ msgstr "" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "" @@ -8224,7 +8224,7 @@ msgstr "" msgid "Toggle small/big" msgstr "" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -8309,43 +8309,43 @@ msgid "" "appropriate column name." msgstr "" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "Page number:" msgid "Page" msgstr "صفحہ نمبر" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "Page number:" msgid "New page name: " msgstr "صفحہ نمبر" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "" @@ -8452,12 +8452,12 @@ msgstr "" msgid "All" msgstr "" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "" @@ -8469,13 +8469,13 @@ msgstr "" msgid "Files" msgstr "" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "" @@ -9272,8 +9272,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "ابتدائیہ صفحہ کی تخصیص کریں" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "" @@ -9294,101 +9294,101 @@ msgstr "" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "" -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." msgstr "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "" -#: server_status.php:994 +#: server_status.php:995 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:1000 +#: server_status.php:1001 msgid "Received" msgstr "" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "حکم" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "" -#: server_status.php:1190 +#: server_status.php:1191 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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9396,78 +9396,78 @@ msgid "" "based instead of disk-based." msgstr "" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "" -#: server_status.php:1202 +#: server_status.php:1203 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:1203 +#: server_status.php:1204 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:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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:1206 +#: server_status.php:1207 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:1207 +#: server_status.php:1208 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 " @@ -9475,7 +9475,7 @@ msgid "" "you have joins that don't use keys properly." msgstr "" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9483,42 +9483,42 @@ msgid "" "advantage of the indexes you have." msgstr "" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "" -#: server_status.php:1216 +#: server_status.php:1217 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:1217 +#: server_status.php:1218 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 " @@ -9526,33 +9526,33 @@ msgid "" "Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data." msgstr "" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "" -#: server_status.php:1219 +#: server_status.php:1220 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:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." msgstr "" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9561,227 +9561,227 @@ msgid "" "properly, this value should be small." msgstr "" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "" -#: server_status.php:1243 +#: server_status.php:1244 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:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "" -#: server_status.php:1259 +#: server_status.php:1260 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:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "" -#: server_status.php:1262 +#: server_status.php:1263 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:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9789,99 +9789,99 @@ msgid "" "decide which queries to remove from the cache." msgstr "" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." msgstr "" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "" -#: server_status.php:1278 +#: server_status.php:1279 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:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" -#: server_status.php:1280 +#: server_status.php:1281 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:1281 +#: server_status.php:1282 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:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "" -#: server_status.php:1288 +#: server_status.php:1289 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:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9889,18 +9889,18 @@ msgid "" "tables or use replication." msgstr "" -#: server_status.php:1294 +#: server_status.php:1295 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:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9908,66 +9908,66 @@ msgid "" "implementation.)" msgstr "" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Startup" msgid "Start Monitor" msgstr "ابتدائیہ" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add chart" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "تازہ کریں" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Chart columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "طے شدہ قدر بحال کریں" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -9976,7 +9976,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -9984,11 +9984,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -9996,7 +9996,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10004,11 +10004,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10538,12 +10538,12 @@ msgstr "" msgid "Validated SQL" msgstr "" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "" diff --git a/po/uz.po b/po/uz.po index ed77ea522b..892b267e4b 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" @@ -21,10 +21,10 @@ msgstr "Барчасини кўрсатиш" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Саҳифа рақами: " @@ -38,8 +38,8 @@ msgstr "" "ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Қидириш" @@ -47,25 +47,25 @@ msgstr "Қидириш" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "Индекс номи" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Тавсифи" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "Ушбу қийматни ишлатиш" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -127,7 +127,7 @@ msgstr "%1$s маълумотлар базаси тузилди." msgid "Database comment: " msgstr "Маълумотлар базасига изоҳ:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -136,8 +136,8 @@ msgstr "Жадвал изоҳи" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -151,11 +151,11 @@ msgstr "Майдон номлари" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -166,8 +166,8 @@ msgstr "Тур" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -177,8 +177,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -187,8 +187,8 @@ msgstr "Андоза" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Алоқалар" @@ -197,8 +197,8 @@ msgstr "Алоқалар" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Изоҳлар" @@ -209,7 +209,7 @@ msgstr "Изоҳлар" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -230,7 +230,7 @@ msgstr "Йўқ" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -370,7 +370,7 @@ msgstr "Алоқалар схемаси" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -394,21 +394,21 @@ msgstr "ишлатилмоқда" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Тузиш" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Охирги янгиланиш" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Охирги текширув" @@ -512,7 +512,7 @@ msgstr "сўровни бажариш" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Рухсат берилмади" @@ -547,7 +547,7 @@ msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Кўриб чиқиш" @@ -560,10 +560,10 @@ msgstr "Ушбу жадвал учун кузатув маълумотлари #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -690,12 +690,12 @@ msgstr "Белгилашни бекор қилиш" msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Экспорт" @@ -705,13 +705,13 @@ msgstr "Экспорт" msgid "Print view" msgstr "Чоп этиш версияси" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Тозалаш" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -751,7 +751,7 @@ msgstr "Жадвал маълумотларини файл маълумотла msgid "Copy table with prefix" msgstr "Жадвал маълумотларини файл маълумотлари билан алмаштириш" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Маълумотлар луғати" @@ -766,7 +766,7 @@ msgstr "Кузатилган жадваллар" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -786,7 +786,7 @@ msgstr "Янгиланди" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Ҳолат" @@ -891,14 +891,14 @@ msgstr "" "Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари " "%sдокументацияда%s келтирилган." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Файлни ўқиб бўлмади!!" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -933,7 +933,7 @@ msgstr "Хатчўп ўчирилди." msgid "Showing bookmark" msgstr "Хатчўпларни кўрсатиш" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" хатчўпи тузилди" @@ -962,7 +962,7 @@ msgstr "" "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1093,9 +1093,9 @@ msgstr "Ёпиш" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Таҳрирлаш" @@ -1122,13 +1122,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Жами" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1160,7 +1160,7 @@ msgstr "Серверни танланг" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Жараёнлар" @@ -1189,7 +1189,7 @@ msgstr "Статискани кўрсатиш" #: js/messages.php:93 #, fuzzy #| msgid "Cannot load or save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" #: js/messages.php:94 @@ -1298,7 +1298,7 @@ msgstr "" msgid "Bytes received" msgstr "Қабул қилинди" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Уланишлар" @@ -1309,12 +1309,12 @@ msgstr "Уланишлар" msgid "Questions" msgstr "Версиялар" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Трафик" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "settings" msgid "Settings" @@ -1343,7 +1343,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Йўқ" @@ -1573,7 +1573,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Импорт" @@ -1782,7 +1782,7 @@ msgid "Query execution time" msgstr "Максимум бажарилиш вақти" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2273,27 +2273,27 @@ msgstr "ишлатилмоқда" msgid "Second" msgstr "секундига" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Шрифт ўлчами" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "" "Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган " "\"upload_max_filesize\" директиваси қийматидан катта!" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2301,27 +2301,27 @@ msgstr "" "Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" " "директиваси қийматидан катта!" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Юкланаётган файл фақатгина қисман юкланди." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Файлни дискка ёзишдахатолик юз берди." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2329,11 +2329,11 @@ msgstr "" "Юкланган файл жойини ўзгартиришда хатолик, [a@./Documentation." "html#faq1_11@Documentation]\"FAQ 1.11\"[/a]га қаранг" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2361,7 +2361,7 @@ msgid "Cardinality" msgstr "Элементлар сони" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Изоҳ" @@ -2382,14 +2382,14 @@ msgid "" "removed." msgstr "%1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Маълумотлар базалари" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2498,16 +2498,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "\"%s\" мавзуси расмларига тўғри йўл топилмади!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Олдиндан кўриш мумкин эмас." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "Тадбиқ қилиш" @@ -2521,12 +2521,12 @@ msgstr "\"%s\" асл мавзуси топилмади!" msgid "Theme %s not found!" msgstr "\"%s\" мавзуси топилмади!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "\"%s\" мавзуси файлларига йўл топилмади!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2535,7 +2535,7 @@ msgid "Cannot connect: invalid settings." msgstr "Уланиб бўлмади: нотўғри созланган." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "\"%s\" дастурига хуш келибсиз" @@ -2560,43 +2560,43 @@ msgstr "" "файлидаги хост, фойдаланувчи ва паролни текширинг ва улар MySQL сервери " "администраторидан олинган маълумотларга мос келишига ишонч ҳосил қилинг." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Авторизация" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin документацияси" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Сиз хост/IP адрес ва бўш жой қолдириб портни киритишингиз мумкин." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Сервер" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Фойдаланувчи:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Парол:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Серверни танланг" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Браузерда \"cookies\" фаоллаштирилган бўлиши шарт." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2604,7 +2604,7 @@ msgstr "" "Паролсиз аутентификация конфигурация томонидан ўчирилган (қаранг " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2612,8 +2612,8 @@ msgstr "" "\"%s\" сония давомида фаоллик кузатилмади, илтимос, қайта авторизациядан " "ўтинг. " -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL серверига уланиб бўлмади" @@ -2646,41 +2646,41 @@ msgstr "Тўғри аутентификация калити уланмаган" msgid "Authenticating..." msgstr "Aутентификация..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "Page creation failed" msgid "PBMS connection failed:" msgstr "Саҳифа тузиб бўлмади" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Расм кўриниши" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Аудиофайлни ўқиш" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Видео кўриниши" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Файлни юклаб олиш" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2830,7 +2830,7 @@ msgid "Documentation" msgstr "Документация" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL сўрови" @@ -2840,7 +2840,7 @@ msgstr "SQL сўрови" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2893,7 +2893,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Жадвал турлари" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Профиллаштириш" @@ -2998,7 +2998,7 @@ msgid "Click to toggle" msgstr "Танлаш учун сичқонча тугмасини босинг" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -3018,8 +3018,8 @@ msgstr "Тузилиши" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Қўйиш" @@ -3030,26 +3030,26 @@ msgstr "Қўйиш" msgid "Operations" msgstr "Операциялар" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Юклаш каталогидан" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Кўрсатилган каталокка юклаб бўлмади" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3227,7 +3227,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Тозалаш" @@ -5710,8 +5710,8 @@ msgstr "\"%s\" маълумотлар базасида янги жадвал т #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -6087,7 +6087,7 @@ msgstr "Индекс бўйича сортировка қилиш" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Параметрлар" @@ -6153,7 +6153,7 @@ msgid "The row has been deleted" msgstr "Ёзув ўчирилди" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Тугатиш" @@ -6768,7 +6768,7 @@ msgstr "Мавжуд MIME турлари" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Хост" @@ -6982,7 +6982,7 @@ msgstr "SQL сўрови натижаси" msgid "Generated by" msgstr "Тузилган" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." @@ -7089,7 +7089,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Жадвал номи" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Майдон номлари" @@ -7469,7 +7469,7 @@ msgstr "" "Янгиланган конфигурация файли ишга тушиши учун, phpMyAdmin дастуридан чиқиб, " "қайта киринг." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "тавсиф мавжуд эмас" @@ -7507,14 +7507,14 @@ msgid "Slave status" msgstr "Тобе сервер статуси" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "Ўзгарувчи" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Қиймати" @@ -7578,7 +7578,7 @@ msgstr "Парол ўрнатиш" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7618,16 +7618,16 @@ msgstr "" msgid "Edit event" msgstr "Серверларни таҳрирлаш" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Жараёнлар" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7644,7 +7644,7 @@ msgstr "Ҳодиса тури" msgid "Event type" msgstr "Ҳодиса тури" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7674,7 +7674,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Охири" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7687,12 +7687,12 @@ msgstr "Тавсифи" msgid "On completion preserve" msgstr "Тўла қўйиш" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7740,7 +7740,7 @@ msgid "Returns" msgstr "Қайтариладиган тип" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Вақт" @@ -7756,7 +7756,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7778,127 +7778,127 @@ msgstr "\"%s\" жадвали ўчирилди" msgid "Routine %1$s has been created." msgstr "%1$s жадвали тузилди." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Таҳрирлаш усули" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Муолажалар" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "Тўғридан-тўғри боғланишлар" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Узунлик/қийматлар" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Индекс(лар)ни сақлаш" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Қайтариладиган тип" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Узунлик/қийматлар" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Жадвал параметрлари" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Хавфсизлик" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Муолажалар" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Функция" @@ -8063,7 +8063,7 @@ msgstr "Биронта ҳам конфигурацияланган сервер #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -8073,7 +8073,7 @@ msgstr "\"%s\" жадвали мавжуд эмас!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -8081,9 +8081,9 @@ msgid "Please configure the coordinates for table %s" msgstr "\"%s\" жадвалининг координаталарини ўзгартириш" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8099,115 +8099,115 @@ msgstr "\"%s\" файлида калит идентификатори мавжу msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Алоқалар схемаси" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Мундарижа" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Атрибутлар" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Қўшимча" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Янги саҳифа тузиш" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Саҳифа рақами: " -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Автоматик раскладка" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Ички алоқалар" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Таҳрирлаш лозим бўлган саҳифани танлаш" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Жадвалларни танланг" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Жадвалларни танланг" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Алоқалар схемаси" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "Тўрни кўрсатиш" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Рангда кўрсатиш" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Жадвал ўлчамларини кўрсатиш" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Бир хил кенгликдаги барча жадвалларни кўрсатиш" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Фақат калитларни кўрсатиш" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Албом шаклида" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Китоб шаклида" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Тузиш" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Қоғоз ўлчами" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8215,17 +8215,17 @@ msgstr "" "Ушбу саҳифада мавжуд бўлмаган жадваллар учун мурожаатлар мавжуд. Ушбу " "мурожаатларни ўчиришни хоҳлайсизми?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Кўрсатиш" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Номаълум тил: %1$s." @@ -8302,11 +8302,11 @@ msgstr "Тозалаш" msgid "Columns" msgstr "Майдон номлари" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Барча фойдаланувчиларга рухсат бериш" @@ -8799,7 +8799,7 @@ msgstr "Протокол версияси" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Фойдаланувчи" @@ -9031,7 +9031,7 @@ msgstr "Барча жадваллар кўрсатилишини Тахлаш/Т msgid "Toggle small/big" msgstr "Тескари кўрсатиш" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "PDF-схемага/схемадан жадвал координаталарини импорт/экспорт қилиш" @@ -9123,49 +9123,49 @@ msgstr "" "Кўрсатиладиган майдонлар пушти рангда берилади. Майдонни кўрсатиладиган " "қилиш учун \"Кўрсатиладиган майдонни танлаш\" бўлимидан мос майдонни танланг." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Саҳифа тузилди" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Саҳифа тузиб бўлмади" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "саҳифалар сони " -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Файлларни импорт қилиш" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Масштаб" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Янги индекс тузиш" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Фойдаланувчи номи" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Масштаб" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "тавсия этилган" @@ -9282,12 +9282,12 @@ msgstr "Файлларни импорт қилиш" msgid "All" msgstr "Барча" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "\"%s\" жадвали топилмади ёки \"%s\"да ўрнатилмаган" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9301,13 +9301,13 @@ msgstr "Кўриш учун бинар журнални танланг" msgid "Files" msgstr "Файллар сони " -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "Сўровларни қисқартириб кўрсатиш" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "Сўровларнинг кенгайтирилган кўриниши" @@ -10176,8 +10176,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Бошланғич саҳифани созлаш" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "соатига" @@ -10198,18 +10198,18 @@ msgstr "Тавсиф" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -10217,19 +10217,19 @@ msgid "" "b> process." msgstr "Ушбу сервер репликация жараёнида \"бош\" деб конфигурация қилинган." -#: server_status.php:963 +#: server_status.php:964 #, 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:965 +#: server_status.php:966 #, 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:968 +#: server_status.php:969 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -10243,11 +10243,11 @@ msgstr "" "сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот " "учун, <a href=\"#replication\">репликация бўлими</a>га киринг." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Репликация статуси" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10255,47 +10255,47 @@ msgstr "" "Юқори юкламага эга бўлган серверларда ҳисоблагич тўлиб қолиши мумкин, шунинг " "учун, MySQL сервери берган статистик маълумотлар нотўғри бўлиши мумкин." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Қабул қилинди" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Юборилди" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Максимал уланишлар сони " -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Муваффақиятсиз уринишлар сони: " -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Узилди" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Буйруқ" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -10304,16 +10304,16 @@ msgstr "" "Бинар журнали кешини ишлатиб, \"binlog_cache_size\" қийматидан ошиб, ўз " "ичига олган SQL-жумлалари вақтинчалик файлга сақланган транзакциялар сони." -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "Бинар журнал кешини ишлатган транзакциялар сони." -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -10326,11 +10326,11 @@ msgstr "" "сақланишини таъминлаш мақсадида tmp_table_size ўзгарувчисининг қийматини " "ошириш тавсия этилади." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "MySQL сервери (mysqld) томонидан тузилган вақтинчалик файллар сони." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10338,7 +10338,7 @@ msgstr "" "Сервер томонидан SQL-жумлалари бажарилаётган вақтда хотирада автоматик " "тузилган вақтинчалик жадваллар сони." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10346,31 +10346,31 @@ msgstr "" "\"INSERT DELAYED\" сўровларини қайта ишлаш жараёнида юз берган хатолар " "(масалан, калитлар такрорланиши оқибатида) сони." -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" "Маълумотларни кечиктириб қўйиш (\"INSERT DELAYED\") режимида ёзилган " "қаторлар сони." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Бажарилган \"FLUSH\" буйруқлар сони." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Ички \"COMMIT\" буйруқлари сони." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Жадвалдал ёзувларни ўчириш бўйича сшровлар сони." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -10380,7 +10380,7 @@ msgstr "" "бериши мумкин. Бу жараён топиш деб номланади. Handler_discover - топилган " "жадваллар сони." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -10389,7 +10389,7 @@ msgstr "" "Индексдан биринчи ёзувни ўқишга бўлган сўровлар сони. Ўзгарувчининг қиймати " "катта бўлса, сервер бир неча маротиба индексни кўриб чиқади." -#: server_status.php:1204 +#: server_status.php:1205 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." @@ -10398,7 +10398,7 @@ msgstr "" "Ўзгарувчининг қиймати катталиги сўров ва жадваллар тўғри индексланганидан " "далолат беради." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -10408,7 +10408,7 @@ msgstr "" "Ҳажми чекланган индекс устунига бўлган сўров ёки индексни кўриб чиқиш " "вақтида ўзгарувчи қиймати ошади." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10417,7 +10417,7 @@ msgstr "" "бўлган сўровлар сони. Одатда оптималлаштириш учун қўлланилади: ORDER BY ... " "DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -10430,7 +10430,7 @@ msgstr "" "чиқишни талаб этадиган сўровларнинг тез-ез бажарилиши; индекслардан нотўғри " "фойдаланадиган бирлашмаларнинг мавжудлиги." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -10442,35 +10442,35 @@ msgstr "" "индексланганлигини ёки сўровлар индексларнинг афзалликларидан " "фойдаланмаётганлигини билдиради." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ички буйруқлар сони." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Жадвалдаги ёзувларни янгилашга бўлган сўровлар сони." -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "Жадвалга ёзув қўйишга бўлган сўровлар сони." -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Маълумот мавжуд бўлган саҳифалар сони (\"кир\" ва \"тоза\")." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "\"Кир\" саҳифаларнинг жорий сони." -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "Буфер пулидаги тозалаш жараёни (FLUSH) қўлланилган саҳифалар сони." -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Бўш саҳифалар сони." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -10480,7 +10480,7 @@ msgstr "" "устидан ўқиш ёки ёзиш жараёни бажарилмоқда, ёки уларни бошқа сабабларга кўра " "тозалаш ёки ўчириш имконияти йўқ." -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -10492,11 +10492,11 @@ msgstr "" "\"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Буфер пулининг умумий ҳажми (саҳифаларда)." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10505,7 +10505,7 @@ msgstr "" "сони. Ушбу ҳол сўров жадвални тасодифий тартибда кўриб чиқаётганда рўй " "беради." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10514,12 +10514,12 @@ msgstr "" "сони. Ушбу ҳол InnoDB жадвални тўлалигича кетма-кет кўриб чиқаётганда рўй " "беради" -#: server_status.php:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "" "InnoDB томонидан амалга оширилган ўқишга бўлган кетма-кет сўровлар сони." -#: server_status.php:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10527,7 +10527,7 @@ msgstr "" "InnoDB буфер пулидан бажар олмаган ва саҳифалаб ўқишдан фойдаланган ўқишга " "бўлган кетма-кет сўровлар сони." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -10540,51 +10540,51 @@ msgstr "" "Ушбу ҳисоблагич шундай кутишлар сонини билдиради. Агар буфер пулининг ҳажми " "тўғри белгиланган бўлса, унда кутишлар сони катта бўлмаслиги керак." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB буфер пулига амалга оширилган ёзувлар сони." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Жорий вақтда амалга оширилган \"fsync()\" операциялари сони." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Тугалланмаган \"fsync()\" операциялари сони." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Тугалланмаган ўқиш операциялари сони." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Тугалланмаган ёзиш операциялари сони." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Жорий вақтда ўқилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Умумий маълумотларни ўқиш операциялари сони." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Умумий маълумотларни ёзиш операциялари сони." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Жорий вақтда ёзилган маълумотлар йиғиндиси (байтларда)." -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" операциялари учун ёзилган саҳифалар сони." -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "Бажарилган \"doublewrite\" операциялари сони." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -10592,35 +10592,35 @@ msgstr "" "Журнал буферининг ҳажми кичик бўлганлиги сабабли, унинг тозаланиши кутаётган " "ёзувлар сони" -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Журналга ёзишга бўлган сўровларсони." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Журнал файлидаги жисмоний ёзувлар сони." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Журнал файлига \"fsync()\" ёрдамида амалга оширилган ёзувлар сони." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" ёрдамида амалга оширилиши кутилаётган ёзувлар сони." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Тугалланмаган журналга ёзиш сўровлари сони." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Журнал файлига ёзилган маълумотлар ҳажми (байтларда)." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Тузилган саҳифалар сони." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10629,51 +10629,51 @@ msgstr "" "Кўпгина қийматлар саҳифаларда келтирилади, лекин саҳифа ҳажми билган ҳолда, " "уларни байтларга ўтказиш мумкин." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "Ўқилган саҳифалар сони." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Ёзилган саҳифалар сони." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Ҳозирда кутилаётган қатор блокировкалари сони." -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг ўртача вақти (миллисекундларда)." -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Қатор блокировкасини кутишнинг умумий вақти (миллисекундларда)." -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Қатор блокировкасини кутишнинг максимал вақти (миллисекундларда)." -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "Умумий кутилаётган қатор блокировкалари сони." -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB жадвалидан ўчирилган қаторлар сони." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB жадвалига ёзилган қаторлар сони." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB жадвалларидан ўқилган қаторлар сони." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB жадвалларида янгиланган қаторлар сони." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10681,7 +10681,7 @@ msgstr "" "Индекс кешидаги ўзгартирилган, лекин ҳали дискка ёзилмаган блоклар сони. " "Ушбу параметр, шунингдек, \"Not_flushed_key_blocks\" номи билан ҳам маълум." -#: server_status.php:1256 +#: server_status.php:1257 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." @@ -10689,7 +10689,7 @@ msgstr "" "Индекс кешидаги ишлатилмаётган блоклар сони. Ушбу параметр индекс кеши " "ишлатилиш даражасини белгилайди." -#: server_status.php:1257 +#: server_status.php:1258 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 " @@ -10698,11 +10698,11 @@ msgstr "" "Индекс кешидаги ишлатилаётган блоклар сони. Ушбу қиймат бир вақтнинг ўзида " "ишлатилиши мумкин бўлган блоклар сонини билдиради." -#: server_status.php:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "Индекс кешидаги блокларни ўқишга бўлган сўровлар сони." -#: server_status.php:1259 +#: server_status.php:1260 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 " @@ -10713,15 +10713,15 @@ msgstr "" "қилиб белгиланган. Кешга бўлган муваффақиятсиз мурожаатлар коэффициенти " "қуйидагича ҳисобланди: Key_reads/Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "Блокни индекс кешига ёзишга бўлган сўровлар сони." -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "Дискдан индекс блокларини жисмоний ёзиш операциялари сони." -#: server_status.php:1262 +#: server_status.php:1263 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 " @@ -10732,19 +10732,19 @@ msgstr "" "эффективлигини таққослашда фойдали ҳисобланади. Асл ноль қиймат ҳали сўров " "компиляция жараёни бажарилмаганлигини билдиради." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "" "Количество строк, ожидающих вставки в запросах \"INSERT DELAYED\" " "сўровларида қўйилишини кутаётган қаторлар сони." -#: server_status.php:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10752,42 +10752,42 @@ msgstr "" "Очилаётган жадвалларнинг умумий сони. Агар ўзгарувчининг қиймати катта " "бўлса, жадвал кеши (table_cache) ҳажмини ошириш тавсия этилади." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Очиқ файллар сони." -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "" "Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen" "()\" функцияси ёрдамида очилган файлга айтилади." -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Очиқ жадваллар сони." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "Сўровлар кеши учун бўш хотира ҳажми" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "" "Сўровлар кешига \"тушишлар\" сони, яъни кешда турган сўровлар томонидан " "қониқтирилган сўровлар сони." -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "Сўровлар кешига қўшилган сўровлар сони." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10799,7 +10799,7 @@ msgstr "" "кешдан сўровларни ўчиришда \"LRU\" (Least Recently Used - энг олдинги " "ишлатилган) стратегиясидан фойдаланади" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10807,19 +10807,19 @@ msgstr "" "Кешлаб бўлмайдиган ёки кешлаш \"SQL_NO_CACHE\" калит сўзи ёрдамида " "сўндирилган сўровлар сони." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Кешда регистрация қилинган сўровлар сони." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "Сўровлар кешига ажратилган хотира блокларнинг умумий сони." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Барқарор репликациялар сони (ҳали амалга оширилмаган)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10827,13 +10827,13 @@ msgstr "" "Индекс ишлатмасдан бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати " "0 бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "" "Боғланиш мавжуд бўлган жадвалда диапазон бўйича қидирув ишлатган ҳолда " "бажарилган бирлашма сўровлар сони." -#: server_status.php:1280 +#: server_status.php:1281 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.)" @@ -10842,7 +10842,7 @@ msgstr "" "ишлатган ҳолда бажарилган бирлашма сўровлар сони. Агар ўзгарувчи қиймати 0 " "бўлмаса, жадвал индексларини текшириш тавсия этилади." -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10851,17 +10851,17 @@ msgstr "" "сўровлар сони. Одатда, ушбу ўзгарувчининг қиймати, ҳатто жуда катта бўлса " "ҳам, унчалик муҳим эмас." -#: server_status.php:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "" "Биринчи жадвалга нисбатан тўлалигича қидирув ишлатган ҳолда бажарилган " "бирлашма сўровлар сони." -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "Тобе оқим томонидан жорий вақтда очилган вақтинчалик жадваллар сони." -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10869,13 +10869,13 @@ msgstr "" "Ишга туширилгандан буён репликациянинг тобе оқими томонидан бажарилган қайта " "транзакцияларнинг умумий сони." -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "" "Агар ушбу сервер бош серверга уланган ҳолда тобе сервер сифатида ишлаётган " "бўлса, ушбу ўзгарувчига \"ON\" қиймати белгиланади." -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10883,12 +10883,12 @@ msgstr "" "Тузилиши учун slow_launch_time секунддан кўпроқ вақт талаб этилган оқимлар " "сони." -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "long_query_time секунддан кўпроқ вақт бажарилган сўровлар сони." -#: server_status.php:1288 +#: server_status.php:1289 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 " @@ -10898,25 +10898,25 @@ msgstr "" "қиймати катта бўлса, \"sort_buffer_size\" ўзгарувчисининг қийматини ошириш " "зарур." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Диапазон ёрдамида бажарилган сортировка операциялари сони." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Сортировка қилинган қаторлар сони" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "" "Жадвални тўлалигича кўриб чиқиш ёрдамида бажарилган сортировка операциялари " "сони." -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "Дарҳол қониқтирилган жадвални блокировка қилишга бўлган сўровлар сони." -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -10928,7 +10928,7 @@ msgstr "" "пайдо бўлаётган бўлса, аввал сўровларни оптималлаштириш, сўнгра эса жадвал" "(лар)ни қисмларга бўлиш ёки репликация ишлатиш керак." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10939,11 +10939,11 @@ msgstr "" "ушбу қиймат қизил ранг билан белгиланган бўлса, унда \"thread_cache_size\" " "ўзгарувчисининг қийматини ошириш зарур." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Очиқ жорий уланишлар сони." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -10955,68 +10955,68 @@ msgstr "" "ўзгарувчисининг қийматини ошириш мумкин (лекин у унумдорликни унчалик ҳам " "оширмайди)." -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Фаол ҳолатда бўлган жараёнлар сони." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Бошлаш" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Индекс(лар)ни сақлаш" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Янгилаш" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR майдонидаги устунлар сони" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Хатоликларни бошқариш:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Асл қийматларни тиклаш" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -11025,7 +11025,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11033,11 +11033,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -11045,7 +11045,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -11053,11 +11053,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11703,12 +11703,12 @@ msgstr "SQL-сўровни кўрсатиш" msgid "Validated SQL" msgstr "SQL тўғрилигини текшириш" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Хатчўп белгиси" diff --git a/po/uz@latin.po b/po/uz@latin.po index e4c9368e55..5530eb0604 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" @@ -21,10 +21,10 @@ msgstr "Barchasini ko‘rsatish" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "Sahifa raqami: " @@ -39,8 +39,8 @@ msgstr "" "qilmoqda" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Qidirish" @@ -48,25 +48,25 @@ msgstr "Qidirish" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -88,7 +88,7 @@ msgstr "Indeks nomi" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "Tavsifi" @@ -98,7 +98,7 @@ msgid "Use this value" msgstr "Ushbu qiymatni ishlatish" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "" @@ -128,7 +128,7 @@ msgstr "%1$s ma`lumotlar bazasi tuzildi." msgid "Database comment: " msgstr "Ma`lumotlar bazasiga izoh:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -137,8 +137,8 @@ msgstr "Jadval izohi" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -152,11 +152,11 @@ msgstr "Maydon nomlari" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -167,8 +167,8 @@ msgstr "Tur" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -178,8 +178,8 @@ msgstr "Null" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -188,8 +188,8 @@ msgstr "Andoza" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "Aloqalar" @@ -198,8 +198,8 @@ msgstr "Aloqalar" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "Izohlar" @@ -210,7 +210,7 @@ msgstr "Izohlar" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -231,7 +231,7 @@ msgstr "Yo‘q" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -371,7 +371,7 @@ msgstr "Aloqalar sxemasi" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -395,21 +395,21 @@ msgstr "ishlatilmoqda" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "Tuzish" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "Oxirgi yangilanish" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "Oxirgi tekshiruv" @@ -513,7 +513,7 @@ msgstr "so‘rovni bajarish" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "Ruxsat berilmadi" @@ -548,7 +548,7 @@ msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Ko‘rib chiqish" @@ -561,10 +561,10 @@ msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -692,12 +692,12 @@ msgstr "Belgilashni bekor qilish" msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "Eksport" @@ -707,13 +707,13 @@ msgstr "Eksport" msgid "Print view" msgstr "Chop etish versiyasi" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "Tozalash" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -753,7 +753,7 @@ msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" msgid "Copy table with prefix" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "Ma`lumotlar lug‘ati" @@ -768,7 +768,7 @@ msgstr "Kuzatilgan jadvallar" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -788,7 +788,7 @@ msgstr "Yangilandi" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "Holat" @@ -893,14 +893,14 @@ msgstr "" "Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning " "usullari %sdokumentatsiyada%s keltirilgan." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "Faylni o‘qib bo‘lmadi!!" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -935,7 +935,7 @@ msgstr "Xatcho‘p o‘chirildi." msgid "Showing bookmark" msgstr "Xatcho‘plarni ko‘rsatish" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" xatcho‘pi tuzildi" @@ -964,7 +964,7 @@ msgstr "" "phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1098,9 +1098,9 @@ msgstr "Yopish" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "Tahrirlash" @@ -1127,13 +1127,13 @@ msgstr "" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "Jami" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "" @@ -1165,7 +1165,7 @@ msgstr "Serverni tanlang" msgid "Connections since last refresh" msgstr "" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "Jarayonlar" @@ -1194,7 +1194,7 @@ msgstr "Statiskani ko‘rsatish" #: js/messages.php:93 #, fuzzy #| msgid "Cannot load or save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" #: js/messages.php:94 @@ -1303,7 +1303,7 @@ msgstr "" msgid "Bytes received" msgstr "Qabul qilindi" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "Ulanishlar" @@ -1314,12 +1314,12 @@ msgstr "Ulanishlar" msgid "Questions" msgstr "Vеrsiyalar" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "Trafik" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 #, fuzzy #| msgid "settings" msgid "Settings" @@ -1348,7 +1348,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Yo‘q" @@ -1578,7 +1578,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "Import" @@ -1788,7 +1788,7 @@ msgid "Query execution time" msgstr "Maksimum bajarilish vaqti" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2280,27 +2280,27 @@ msgstr "ishlatilmoqda" msgid "Second" msgstr "sekundiga" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "Shrift o‘lchami" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 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:280 +#: libraries/File.class.php:281 msgid "" "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in " "the HTML form." @@ -2308,27 +2308,27 @@ msgstr "" "Yuklanayotgan fayl hajmi HTML formada ko‘rsatilgan \"MAX_FILE_SIZE\" " "direktivasi qiymatidan katta!" -#: libraries/File.class.php:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi." -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi." -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "Faylni diskka yozishdaxatolik yuz berdi." -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi." -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi." -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2336,11 +2336,11 @@ msgstr "" "Yuklangan fayl joyini o‘zgartirishda xatolik, [a@./Documentation." "html#faq1_11@Documentation]\"FAQ 1.11\"[/a]ga qarang" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2368,7 +2368,7 @@ msgid "Cardinality" msgstr "Elementlar soni" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "Izoh" @@ -2389,14 +2389,14 @@ msgid "" "removed." msgstr "%1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin." -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "Ma`lumotlar bazalari" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2505,16 +2505,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "\"%s\" mavzusi rasmlariga to‘g‘ri yo‘l topilmadi!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "Oldindan ko‘rish mumkin emas." -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "Tadbiq qilish" @@ -2528,12 +2528,12 @@ msgstr "\"%s\" asl mavzusi topilmadi!" msgid "Theme %s not found!" msgstr "\"%s\" mavzusi topilmadi!" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "\"%s\" mavzusi fayllariga yo‘l topilmadi!" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2542,7 +2542,7 @@ msgid "Cannot connect: invalid settings." msgstr "Ulanib bo‘lmadi: noto‘g‘ri sozlangan." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "\"%s\" dasturiga xush kelibsiz" @@ -2567,43 +2567,43 @@ msgstr "" "faylidagi xost, foydalanuvchi va parolni tekshiring va ular MySQL serveri " "administratoridan olingan ma`lumotlarga mos kelishiga ishonch hosil qiling." -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "Avtorizatsiya" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin dokumentatsiyasi" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "Siz xost/IP adres va bo‘sh joy qoldirib portni kiritishingiz mumkin." -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "Server" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "Foydalanuvchi:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "Parol:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "Serverni tanlang" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "Brauzerda \"cookies\" faollashtirilgan bo‘lishi shart." -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" @@ -2611,7 +2611,7 @@ msgstr "" "Parolsiz autentifikatsiya konfiguratsiya tomonidan o‘chirilgan (qarang " "AllowNoPassword)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" @@ -2619,8 +2619,8 @@ msgstr "" "\"%s\" soniya davomida faollik kuzatilmadi, iltimos, qayta avtorizatsiyadan " "o‘ting. " -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "MySQL serveriga ulanib bo‘lmadi" @@ -2653,41 +2653,41 @@ msgstr "To‘g‘ri autentifikatsiya kaliti ulanmagan" msgid "Authenticating..." msgstr "Autentifikatsiya..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 #, fuzzy #| msgid "Page creation failed" msgid "PBMS connection failed:" msgstr "Sahifa tuzib bo‘lmadi" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "Rasm ko‘rinishi" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "Audiofaylni o‘qish" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "Vidеo ko‘rinishi" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "Faylni yuklab olish" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "" @@ -2838,7 +2838,7 @@ msgid "Documentation" msgstr "Dokumentatsiya" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL so‘rovi" @@ -2848,7 +2848,7 @@ msgstr "SQL so‘rovi" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2901,7 +2901,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Jadval turlari" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "Profillashtirish" @@ -3006,7 +3006,7 @@ msgid "Click to toggle" msgstr "Tanlash uchun sichqoncha tugmasini bosing" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -3026,8 +3026,8 @@ msgstr "Tuzilishi" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Qo‘yish" @@ -3038,26 +3038,26 @@ msgstr "Qo‘yish" msgid "Operations" msgstr "Operatsiyalar" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Yuklash katalogidan" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -3235,7 +3235,7 @@ msgid "Allow users to customize this value" msgstr "" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "Tozalash" @@ -5731,8 +5731,8 @@ msgstr "\"%s\" ma`lumotlar bazasida yangi jadval tuzish" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -6109,7 +6109,7 @@ msgstr "Indeks bo‘yicha sortirovka qilish" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "Parametrlar" @@ -6175,7 +6175,7 @@ msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "Tugatish" @@ -6793,7 +6793,7 @@ msgstr "Mavjud MIME turlari" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "Xost" @@ -7008,7 +7008,7 @@ msgstr "SQL so‘rovi natijasi" msgid "Generated by" msgstr "Tuzilgan" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." @@ -7116,7 +7116,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "Jadval nomi" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "Maydon nomlari" @@ -7498,7 +7498,7 @@ msgstr "" "Yangilangan konfiguratsiya fayli ishga tushishi uchun, phpMyAdmin dasturidan " "chiqib, qayta kiring." -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "tavsif mavjud emas" @@ -7536,14 +7536,14 @@ msgid "Slave status" msgstr "Tobе rеplikatsiya sеrvеri statusi" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "O‘zgaruvchi" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Qiymati" @@ -7607,7 +7607,7 @@ msgstr "Parol o‘rnatish" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -7647,16 +7647,16 @@ msgstr "" msgid "Edit event" msgstr "Serverlarni tahrirlash" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Processes" msgid "Error in processing request" msgstr "Jarayonlar" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -7673,7 +7673,7 @@ msgstr "Hodisa turi" msgid "Event type" msgstr "Hodisa turi" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7703,7 +7703,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "Oxiri" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7716,12 +7716,12 @@ msgstr "Tavsifi" msgid "On completion preserve" msgstr "To‘la qo‘yish" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7769,7 +7769,7 @@ msgid "Returns" msgstr "Qaytariladigan tip" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "Vaqt" @@ -7785,7 +7785,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: \"%s\"" msgid "Invalid routine type: \"%s\"" @@ -7807,127 +7807,127 @@ msgstr "\"%s\" jadvali o‘chirildi" msgid "Routine %1$s has been created." msgstr "%1$s jadvali tuzildi." -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "Tahrirlash usuli" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "Muolajalar" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "To‘g‘ridan-to‘g‘ri bog‘lanishlar" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "Uzunlik/qiymatlar" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 #, fuzzy #| msgid "Apply index(s)" msgid "Add parameter" msgstr "Indеks(lar)ni saqlash" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Rename database to" msgid "Remove last parameter" msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "Qaytariladigan tip" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "Uzunlik/qiymatlar" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "Jadval parametrlari" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "Xavfsizlik" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "Muolajalar" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "Funksiya" @@ -8092,7 +8092,7 @@ msgstr "Bironta ham konfiguratsiyalangan server mavjud emas" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, fuzzy, php-format @@ -8102,7 +8102,7 @@ msgstr "\"%s\" jadvali mavjud emas!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -8110,9 +8110,9 @@ msgid "Please configure the coordinates for table %s" msgstr "\"%s\" jadvalining koordinatalarini o‘zgartirish" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, fuzzy, php-format #| msgid "Schema of the \"%s\" database - Page %s" msgid "Schema of the %s database - Page %s" @@ -8128,115 +8128,115 @@ msgstr "\"%s\" faylida kalit identifikatori mavjud emas" msgid "SCHEMA ERROR: " msgstr "" -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "Aloqalar sxemasi" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "Mundarija" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "Atributlar" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "Qo‘shimcha" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "Yangi sahifa tuzish" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 #, fuzzy #| msgid "Page number:" msgid "Page name" msgstr "Sahifa raqami: " -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 #, fuzzy #| msgid "Automatic layout" msgid "Automatic layout based on" msgstr "Avtomatik raskladka" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "Ichki aloqalar" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "Tahrirlash lozim bo‘lgan sahifani tanlash" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 #, fuzzy #| msgid "Select Tables" msgid "Select page" msgstr "Jadvallarni tanlang" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "Jadvallarni tanlang" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 #, fuzzy #| msgid "Relational schema" msgid "Display relational schema" msgstr "Aloqalar sxemasi" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "To‘rni ko‘rsatish" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "Rangda ko‘rsatish" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "Jadval o‘lchamlarini ko‘rsatish" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "Bir xil kenglikdagi barcha jadvallarni ko‘rsatish" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "Faqat kalitlarni ko‘rsatish" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "Albom shaklida" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "Kitob shaklida" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 #, fuzzy #| msgid "Creation" msgid "Orientation" msgstr "Tuzish" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "Qog‘oz o‘lchami" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 msgid "" "The current page has references to tables that no longer exist. Would you " "like to delete those references?" @@ -8244,17 +8244,17 @@ msgstr "" "Ushbu sahifada mavjud bo‘lmagan jadvallar uchun murojaatlar mavjud. Ushbu " "murojaatlarni o‘chirishni xohlaysizmi?" -#: libraries/schema/User_Schema.class.php:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "Ko‘rsatish" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "Noma`lum til: %1$s." @@ -8331,11 +8331,11 @@ msgstr "Tozalash" msgid "Columns" msgstr "Maydon nomlari" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "Barcha foydalanuvchilarga ruxsat berish" @@ -8833,7 +8833,7 @@ msgstr "Protokol versiyasi" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "Foydalanuvchi" @@ -9066,7 +9066,7 @@ msgstr "Barcha jadvallar ko‘rsatilishini Taxlash/Tiklash" msgid "Toggle small/big" msgstr "Teskari ko‘rsatish" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "PDF-sxemaga/sxemadan jadval koordinatalarini import/eksport qilish" @@ -9160,49 +9160,49 @@ msgstr "" "qilish uchun \"Ko‘rsatiladigan maydonni tanlash\" bo‘limidan mos maydonni " "tanlang." -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "Sahifa tuzildi" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "Sahifa tuzib bo‘lmadi" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 #, fuzzy #| msgid "pages" msgid "Page" msgstr "sahifalar soni " -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Fayllarni import qilish" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Masshtab" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yangi indeks tuzish" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Foydalanuvchi nomi" -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "Masshtab" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "tavsiya etilgan" @@ -9319,12 +9319,12 @@ msgstr "Fayllarni import qilish" msgid "All" msgstr "Barcha" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "\"%s\" jadvali topilmadi yoki \"%s\"da o‘rnatilmagan" -#: schema_export.php:47 +#: schema_export.php:39 #, fuzzy #| msgid "The \"%s\" table doesn't exist!" msgid "File doesn't exist" @@ -9338,13 +9338,13 @@ msgstr "Ko‘rish uchun binar jurnalni tanlang" msgid "Files" msgstr "Fayllar soni " -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "So‘rovlarni qisqartirib ko‘rsatish" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "So‘rovlarning kengaytirilgan ko‘rinishi" @@ -10223,8 +10223,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "Boshlang‘ich sahifani sozlash" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "soatiga" @@ -10245,19 +10245,19 @@ msgstr "Tavsif" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 #, fuzzy #| msgid "This server is configured as master in a replication process." msgid "" @@ -10266,21 +10266,21 @@ msgid "" msgstr "" "Ushbu sеrvеr rеplikatsiya jarayonida \"bosh\" dеb konfiguratsiya qilingan." -#: server_status.php:963 +#: server_status.php:964 #, 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:965 +#: server_status.php:966 #, 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:968 +#: server_status.php:969 #, fuzzy #| msgid "" #| "This MySQL server works as %s in replication process. For further " @@ -10295,11 +10295,11 @@ msgstr "" "uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga " "kiring." -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "Replikatsiya statusi" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -10308,47 +10308,47 @@ msgstr "" "shuning uchun, MySQL serveri bergan statistik ma`lumotlar noto‘g‘ri bo‘lishi " "mumkin." -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "Qabul qilindi" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "Yuborildi" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "Maksimal ulanishlar soni " -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "Muvaffaqiyatsiz urinishlar soni: " -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "Uzildi" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "Buyruq" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -10357,16 +10357,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:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "Binar jurnal keshini ishlatgan tranzaksiyalar soni." -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -10379,11 +10379,11 @@ msgstr "" "saqlanishini ta`minlash maqsadida tmp_table_size o‘zgaruvchisining qiymatini " "oshirish tavsiya etiladi." -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "MySQL serveri (mysqld) tomonidan tuzilgan vaqtinchalik fayllar soni." -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." @@ -10391,7 +10391,7 @@ msgstr "" "Server tomonidan SQL-jumlalari bajarilayotgan vaqtda xotirada avtomatik " "tuzilgan vaqtinchalik jadvallar soni." -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -10399,31 +10399,31 @@ msgstr "" "\"INSERT DELAYED\" so‘rovlarini qayta ishlash jarayonida yuz bergan xatolar " "(masalan, kalitlar takrorlanishi oqibatida) soni." -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "" "Ma`lumotlarni kechiktirib qo‘yish (\"INSERT DELAYED\") rejimida yozilgan " "qatorlar soni." -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "Bajarilgan \"FLUSH\" buyruqlar soni." -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "Ichki \"COMMIT\" buyruqlari soni." -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "Jadvaldal yozuvlarni o‘chirish bo‘yicha sshrovlar soni." -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -10433,7 +10433,7 @@ msgstr "" "berishi mumkin. Bu jarayon topish deb nomlanadi. Handler_discover - topilgan " "jadvallar soni." -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -10442,7 +10442,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:1204 +#: server_status.php:1205 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." @@ -10451,7 +10451,7 @@ msgstr "" "soni. O‘zgaruvchining qiymati kattaligi so‘rov va jadvallar to‘g‘ri " "indekslanganidan dalolat beradi." -#: server_status.php:1205 +#: server_status.php:1206 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 " @@ -10461,7 +10461,7 @@ msgstr "" "soni. Hajmi cheklangan indeks ustuniga bo‘lgan so‘rov yoki indeksni ko‘rib " "chiqish vaqtida o‘zgaruvchi qiymati oshadi." -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -10470,7 +10470,7 @@ msgstr "" "o‘qishga bo‘lgan so‘rovlar soni. Odatda optimallashtirish uchun " "qo‘llaniladi: ORDER BY ... DESC." -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -10484,7 +10484,7 @@ msgstr "" "bajarilishi; indekslardan noto‘g‘ri foydalanadigan birlashmalarning " "mavjudligi." -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -10496,35 +10496,35 @@ msgstr "" "jadvallar noto‘g‘ri indekslanganligini yoki so‘rovlar indekslarning " "afzalliklaridan foydalanmayotganligini bildiradi." -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "ROLLBACK ichki buyruqlar soni." -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "Jadvaldagi yozuvlarni yangilashga bo‘lgan so‘rovlar soni." -#: server_status.php:1211 +#: server_status.php:1212 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:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "Ma`lumot mavjud bo‘lgan sahifalar soni (\"kir\" va \"toza\")." -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "\"Kir\" sahifalarning joriy soni." -#: server_status.php:1214 +#: server_status.php:1215 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:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "Bo‘sh sahifalar soni." -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -10534,7 +10534,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:1217 +#: server_status.php:1218 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 " @@ -10546,11 +10546,11 @@ msgstr "" "mumkin: \"Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data\"." -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "Bufer pulining umumiy hajmi (sahifalarda)." -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -10559,7 +10559,7 @@ msgstr "" "o‘qishlar soni. Ushbu hol so‘rov jadvalni tasodifiy tartibda ko‘rib " "chiqayotganda ro‘y beradi." -#: server_status.php:1220 +#: server_status.php:1221 msgid "" "The number of sequential read-aheads InnoDB initiated. This happens when " "InnoDB does a sequential full table scan." @@ -10568,12 +10568,12 @@ msgstr "" "soni. Ushbu hol InnoDB jadvalni to‘laligicha ketma-ket ko‘rib chiqayotganda " "ro‘y beradi" -#: server_status.php:1221 +#: server_status.php:1222 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:1222 +#: server_status.php:1223 msgid "" "The number of logical reads that InnoDB could not satisfy from buffer pool " "and had to do a single-page read." @@ -10581,7 +10581,7 @@ msgstr "" "InnoDB bufer pulidan bajar olmagan va sahifalab o‘qishdan foydalangan " "o‘qishga bo‘lgan ketma-ket so‘rovlar soni." -#: server_status.php:1223 +#: server_status.php:1224 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 " @@ -10595,51 +10595,51 @@ msgstr "" "bufer pulining hajmi to‘g‘ri belgilangan bo‘lsa, unda kutishlar soni katta " "bo‘lmasligi kerak." -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "InnoDB bufer puliga amalga oshirilgan yozuvlar soni." -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "Joriy vaqtda amalga oshirilgan \"fsync()\" operatsiyalari soni." -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "Tugallanmagan \"fsync()\" operatsiyalari soni." -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "Tugallanmagan o‘qish operatsiyalari soni." -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "Tugallanmagan yozish operatsiyalari soni." -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "Joriy vaqtda o‘qilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "Umumiy ma`lumotlarni o‘qish operatsiyalari soni." -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "Umumiy ma`lumotlarni yozish operatsiyalari soni." -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "Joriy vaqtda yozilgan ma`lumotlar yig‘indisi (baytlarda)." -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "\"doublewrite\" operatsiyalari uchun yozilgan sahifalar soni." -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "Bajarilgan \"doublewrite\" operatsiyalari soni." -#: server_status.php:1235 +#: server_status.php:1236 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." @@ -10647,35 +10647,35 @@ msgstr "" "Jurnal buferining hajmi kichik bo‘lganligi sababli, uning tozalanishi " "kutayotgan yozuvlar soni" -#: server_status.php:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "Jurnalga yozishga bo‘lgan so‘rovlarsoni." -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "Jurnal faylidagi jismoniy yozuvlar soni." -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "Jurnal fayliga \"fsync()\" yordamida amalga oshirilgan yozuvlar soni." -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "\"fsync()\" yordamida amalga oshirilishi kutilayotgan yozuvlar soni." -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "Tugallanmagan jurnalga yozish so‘rovlari soni." -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "Jurnal fayliga yozilgan ma`lumotlar hajmi (baytlarda)." -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "Tuzilgan sahifalar soni." -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -10684,51 +10684,51 @@ msgstr "" "Ko‘pgina qiymatlar sahifalarda keltiriladi, lekin sahifa hajmi bilgan holda, " "ularni baytlarga o‘tkazish mumkin." -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "O‘qilgan sahifalar soni." -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "Yozilgan sahifalar soni." -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "Hozirda kutilayotgan qator blokirovkalari soni." -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning o‘rtacha vaqti (millisekundlarda)." -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "Qator blokirovkasini kutishning umumiy vaqti (millisekundlarda)." -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "Qator blokirovkasini kutishning maksimal vaqti (millisekundlarda)." -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "Umumiy kutilayotgan qator blokirovkalari soni." -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "InnoDB jadvalidan o‘chirilgan qatorlar soni." -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "InnoDB jadvaliga yozilgan qatorlar soni." -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "InnoDB jadvallaridan o‘qilgan qatorlar soni." -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB jadvallarida yangilangan qatorlar soni." -#: server_status.php:1255 +#: server_status.php:1256 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." @@ -10736,7 +10736,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:1256 +#: server_status.php:1257 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." @@ -10744,7 +10744,7 @@ msgstr "" "Indeks keshidagi ishlatilmayotgan bloklar soni. Ushbu parametr indeks keshi " "ishlatilish darajasini belgilaydi." -#: server_status.php:1257 +#: server_status.php:1258 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 " @@ -10753,11 +10753,11 @@ msgstr "" "Indeks keshidagi ishlatilayotgan bloklar soni. Ushbu qiymat bir vaqtning " "o‘zida ishlatilishi mumkin bo‘lgan bloklar sonini bildiradi." -#: server_status.php:1258 +#: server_status.php:1259 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:1259 +#: server_status.php:1260 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 " @@ -10769,15 +10769,15 @@ msgstr "" "murojaatlar koeffitsiyenti quyidagicha hisoblandi: Key_reads/" "Key_read_requests." -#: server_status.php:1260 +#: server_status.php:1261 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:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "Diskdan indeks bloklarini jismoniy yozish operatsiyalari soni." -#: server_status.php:1262 +#: server_status.php:1263 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 " @@ -10788,19 +10788,19 @@ msgstr "" "effektivligini taqqoslashda foydali hisoblanadi. Asl nol qiymat hali so‘rov " "kompilyatsiya jarayoni bajarilmaganligini bildiradi." -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 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:1265 +#: server_status.php:1266 msgid "" "The number of tables that have been opened. If opened tables is big, your " "table cache value is probably too small." @@ -10808,42 +10808,42 @@ msgstr "" "Ochilayotgan jadvallarning umumiy soni. Agar o‘zgaruvchining qiymati katta " "bo‘lsa, jadval keshi (table_cache) hajmini oshirish tavsiya etiladi." -#: server_status.php:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "Ochiq fayllar soni." -#: server_status.php:1267 +#: server_status.php:1268 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:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "Ochiq jadvallar soni." -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "So‘rovlar keshi uchun bo‘sh xotira hajmi" -#: server_status.php:1271 +#: server_status.php:1272 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:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "So‘rovlar keshiga qo‘shilgan so‘rovlar soni." -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -10855,7 +10855,7 @@ msgstr "" "beradi. So‘rovlar keshi keshdan so‘rovlarni o‘chirishda \"LRU\" (Least " "Recently Used - eng oldingi ishlatilgan) strategiyasidan foydalanadi" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -10863,19 +10863,19 @@ msgstr "" "Keshlab bo‘lmaydigan yoki keshlash \"SQL_NO_CACHE\" kalit so‘zi yordamida " "so‘ndirilgan so‘rovlar soni." -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "Keshda registratsiya qilingan so‘rovlar soni." -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "So‘rovlar keshiga ajratilgan xotira bloklarning umumiy soni." -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "Barqaror replikatsiyalar soni (hali amalga oshirilmagan)." -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -10883,13 +10883,13 @@ msgstr "" "Indeks ishlatmasdan bajarilgan birlashma so‘rovlar soni. Agar o‘zgaruvchi " "qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya etiladi." -#: server_status.php:1279 +#: server_status.php:1280 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:1280 +#: server_status.php:1281 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.)" @@ -10899,7 +10899,7 @@ msgstr "" "o‘zgaruvchi qiymati 0 bo‘lmasa, jadval indekslarini tekshirish tavsiya " "etiladi." -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -10908,17 +10908,17 @@ msgstr "" "birlashma so‘rovlar soni. Odatda, ushbu o‘zgaruvchining qiymati, hatto juda " "katta bo‘lsa ham, unchalik muhim emas." -#: server_status.php:1282 +#: server_status.php:1283 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:1283 +#: server_status.php:1284 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:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." @@ -10926,13 +10926,13 @@ msgstr "" "Ishga tushirilgandan buyon replikatsiyaning tobe oqimi tomonidan bajarilgan " "qayta tranzaksiyalarning umumiy soni." -#: server_status.php:1285 +#: server_status.php:1286 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:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." @@ -10940,12 +10940,12 @@ msgstr "" "Tuzilishi uchun slow_launch_time sekunddan ko‘proq vaqt talab etilgan " "oqimlar soni." -#: server_status.php:1287 +#: server_status.php:1288 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:1288 +#: server_status.php:1289 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 " @@ -10955,26 +10955,26 @@ msgstr "" "o‘zgaruvchi qiymati katta bo‘lsa, \"sort_buffer_size\" o‘zgaruvchisining " "qiymatini oshirish zarur." -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "Diapazon yordamida bajarilgan sortirovka operatsiyalari soni." -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "Sortirovka qilingan qatorlar soni" -#: server_status.php:1291 +#: server_status.php:1292 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:1292 +#: server_status.php:1293 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:1293 +#: server_status.php:1294 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 " @@ -10987,7 +10987,7 @@ msgstr "" "so‘ngra esa jadval(lar)ni qismlarga bo‘lish yoki replikatsiya ishlatish " "kerak." -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -10998,11 +10998,11 @@ msgstr "" "Connections. Agar ushbu qiymat qizil rang bilan belgilangan bo‘lsa, unda " "\"thread_cache_size\" o‘zgaruvchisining qiymatini oshirish zarur." -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "Ochiq joriy ulanishlar soni." -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -11014,68 +11014,68 @@ msgstr "" "o‘zgaruvchisining qiymatini oshirish mumkin (lekin u unumdorlikni unchalik " "ham oshirmaydi)." -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "Faol holatda bo‘lgan jarayonlar soni." -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Start" msgid "Start Monitor" msgstr "Boshlash" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Apply index(s)" msgid "Add chart" msgstr "Indеks(lar)ni saqlash" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "Yangilash" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "CHAR textarea columns" msgid "Chart columns" msgstr "CHAR maydonidagi ustunlar soni" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "Xatoliklarni boshqarish:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "Asl qiymatlarni tiklash" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -11084,7 +11084,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -11092,11 +11092,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -11104,7 +11104,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -11112,11 +11112,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -11765,12 +11765,12 @@ msgstr "SQL-so‘rovni ko‘rsatish" msgid "Validated SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "Xatcho‘p belgisi" diff --git a/po/zh_CN.po b/po/zh_CN.po index 4902bd6b5a..97b8f5345f 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-08-11 04:40+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" @@ -21,10 +21,10 @@ msgstr "全部显示" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "页码:" @@ -38,8 +38,8 @@ msgstr "" "更新。" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "搜索" @@ -47,25 +47,25 @@ msgstr "搜索" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "键名" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "说明" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "使用此值" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "尚未配置二进制大对象 (BLOB) 流服务器!" @@ -125,7 +125,7 @@ msgstr "创建数据库 %1$s 成功。" msgid "Database comment: " msgstr "数据库注释:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -134,8 +134,8 @@ msgstr "表注释" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -147,11 +147,11 @@ msgstr "字段" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -162,8 +162,8 @@ msgstr "类型" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -173,8 +173,8 @@ msgstr "空" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -183,8 +183,8 @@ msgstr "默认" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "链接到" @@ -193,8 +193,8 @@ msgstr "链接到" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "注释" @@ -205,7 +205,7 @@ msgstr "注释" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -226,7 +226,7 @@ msgstr "否" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -355,7 +355,7 @@ msgstr "编辑或导出关系大纲" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -379,21 +379,21 @@ msgstr "使用中" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "创建时间" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "最后更新" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "最后检查" @@ -490,7 +490,7 @@ msgstr "提交查询" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "拒绝访问" @@ -523,7 +523,7 @@ msgid_plural "%s matches inside table %s" msgstr[0] "在表 %2$s 中找到 %1$s 个匹配" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "浏览" @@ -535,10 +535,10 @@ msgstr "删除 %s 表中所有匹配的记录?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -653,12 +653,12 @@ msgstr "全不选" msgid "Check tables having overhead" msgstr "仅选择多余" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "导出" @@ -668,13 +668,13 @@ msgstr "导出" msgid "Print view" msgstr "打印预览" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "清空" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -708,7 +708,7 @@ msgstr "修改表前缀" msgid "Copy table with prefix" msgstr "复制表为新前缀" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "数据字典" @@ -723,7 +723,7 @@ msgstr "已追踪的表" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -743,7 +743,7 @@ msgstr "更新" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "状态" @@ -844,14 +844,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。" -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "无法读取文件" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -880,7 +880,7 @@ msgstr "书签已删除。" msgid "Showing bookmark" msgstr "显示书签" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "已创建书签 %s" @@ -905,7 +905,7 @@ msgstr "" "将无法完成导入操作。" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1019,9 +1019,9 @@ msgstr "关闭" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "编辑" @@ -1044,13 +1044,13 @@ msgstr "静态数据" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "总计" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "其它" @@ -1080,7 +1080,7 @@ msgstr "服务器流量 (单位: KB)" msgid "Connections since last refresh" msgstr "自上次刷新起的连接数" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "进程" @@ -1105,7 +1105,7 @@ msgstr "查询统计" #: js/messages.php:93 #, fuzzy #| msgid "Failed to read configuration file" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "读取配置文件失败" #: js/messages.php:94 @@ -1204,7 +1204,7 @@ msgstr "已发送字节数" msgid "Bytes received" msgstr "已接收字节数" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "连接" @@ -1213,12 +1213,12 @@ msgstr "连接" msgid "Questions" msgstr "内部查询" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "流量" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "设置" @@ -1241,7 +1241,7 @@ msgstr "请至少添加一个数据" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "无" @@ -1454,7 +1454,7 @@ msgstr "导入配置失败。正在重设为默认设置..." #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "导入" @@ -1629,7 +1629,7 @@ msgid "Query execution time" msgstr "查询执行时间" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2042,49 +2042,49 @@ msgstr "分" msgid "Second" msgstr "秒" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "字号" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "文件不是上传的文件。" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 msgid "Unknown error while uploading." msgstr "上传时发生未知错误。" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "仅上传了文件的一部分内容。" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "找不到临时文件夹。" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "将文件写入磁盘失败。" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "因扩展而停止文件上传。" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "上传文件时发生未知错误。" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2092,11 +2092,11 @@ msgstr "" "移动上传文件时发生错误,参见 [a@./Documentation.html#faq1_11@Documentation]" "FAQ 1.11[/a]。" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "移动上传的文件时发生错误。" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "无法读取移动后的上传文件。" @@ -2124,7 +2124,7 @@ msgid "Cardinality" msgstr "基数" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "注释" @@ -2145,14 +2145,14 @@ msgid "" "removed." msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "数据库" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2245,16 +2245,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "找不到主题 %s 对应的图片路径!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "没有可用的预览。" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "确定" @@ -2268,12 +2268,12 @@ msgstr "未找到默认主题 %s !" msgid "Theme %s not found!" msgstr "未找到主题 %s !" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "找不到主题 %s 的路径" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "主题" @@ -2282,7 +2282,7 @@ msgid "Cannot connect: invalid settings." msgstr "无法连接:无效的设置。" #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "欢迎使用 %s" @@ -2305,56 +2305,56 @@ msgstr "" "phpMyAdmin 尝试连接到 MySQL 服务器,但服务器拒绝连接。您应该检查配置文件中的" "主机、用户名和密码,并确认这些信息与 MySQL 服务器管理员所给出的信息一致。" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "登录" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin 文档" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "您可以输入以空格分隔的主机名/IP地址和端口号。" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "服务器:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "用户名:" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "密码:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "选择服务器" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "必须启用 Cookies 才能登录。" -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "空密码登录被禁止 (参见 允许空密码)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "登录超时 (%s 秒未活动),请重新登录" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "无法登录 MySQL 服务器" @@ -2385,39 +2385,39 @@ msgstr "没有可用的密钥插入" msgid "Authenticating..." msgstr "正在认证..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS 错误" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS 连接失败:" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS 获取 BLOB 信息失败:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 msgid "PBMS get BLOB Content-Type failed" msgstr "PBMS 获取 BLOB 内容类型失败" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "查看图像" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "播放音频" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "播放视频" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "下载文件" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "无法打开文件:%s" @@ -2552,7 +2552,7 @@ msgid "Documentation" msgstr "文档" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL 查询" @@ -2562,7 +2562,7 @@ msgstr "SQL 查询" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2611,7 +2611,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "快速编辑" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "概要" @@ -2702,7 +2702,7 @@ msgid "Click to toggle" msgstr "点击切换" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2722,8 +2722,8 @@ msgstr "结构" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "插入" @@ -2734,25 +2734,25 @@ msgstr "插入" msgid "Operations" msgstr "操作" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "从计算机中上传:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "从网站服务器上传文件夹 %s 中选择:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "用于上传的文件夹出错,无法使用" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "没有可上传的文件" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "执行" @@ -2917,7 +2917,7 @@ msgid "Allow users to customize this value" msgstr "允许用户自定义该值" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "重置" @@ -5136,8 +5136,8 @@ msgstr "在数据库 %s 中新建一张数据表" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5442,7 +5442,7 @@ msgstr "主键排序" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "选项" @@ -5502,7 +5502,7 @@ msgid "The row has been deleted" msgstr "已删除该行" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "杀死" @@ -6056,7 +6056,7 @@ msgstr "显示 MIME 类型" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "主机" @@ -6270,7 +6270,7 @@ msgstr "SQL 查询结果" msgid "Generated by" msgstr "生成者" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" @@ -6368,7 +6368,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "数据表名" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "字段名" @@ -6722,7 +6722,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "请重新登录 phpMyAdmin 以加载新配置并使其生效。" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "无说明" @@ -6759,14 +6759,14 @@ msgid "Slave status" msgstr "从服务器状态" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "变量" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "值" @@ -6826,7 +6826,7 @@ msgstr "生成密码" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, php-format @@ -6861,14 +6861,14 @@ msgstr "处理请求时发生错误:" msgid "Edit event" msgstr "编辑事件" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 msgid "Error in processing request" msgstr "处理请求时的错误" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 msgid "Details" msgstr "详细" @@ -6881,7 +6881,7 @@ msgstr "事件名称" msgid "Event type" msgstr "事件类型" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -6909,7 +6909,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "结束" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 msgid "Definition" msgstr "定义" @@ -6920,12 +6920,12 @@ msgstr "定义" msgid "On completion preserve" msgstr "完整插入" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "用户" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "用户必须是 \"用户名@主机名\" 格式" @@ -6973,7 +6973,7 @@ msgid "Returns" msgstr "返回类型" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "时间" @@ -6991,7 +6991,7 @@ msgstr "" "时可能会失败!请使用改进的 'mysqli' 扩展避免此类问题发生。" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, php-format msgid "Invalid routine type: \"%s\"" msgstr "无效的程序类型: \"%s\"" @@ -7010,108 +7010,108 @@ msgstr "已修改程序 %1$s 。" msgid "Routine %1$s has been created." msgstr "已创建程序 %1$s 。" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 msgid "Edit routine" msgstr "编辑程序" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 msgid "Routine name" msgstr "程序名称" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "参数" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 msgid "Direction" msgstr "方向" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "长度/值" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "添加参数" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 msgid "Remove last parameter" msgstr "删除最后一个参数" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "返回类型" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 msgid "Return length/values" msgstr "返回长度/值" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 msgid "Return options" msgstr "返回选项" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "是否固定" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 msgid "Security type" msgstr "安全类型" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "SQL 数据访问" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "请输入程序名称" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "参数方向 \"%s\" 无效。" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "请设置 ENUM、SET、VARCHAR 和 VARBINARY 类型参数的长度/值。" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "请输入每一个参数的名称并设置其类型。" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "请设置一个有效的返回类型。" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "请输入程序定义。" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "存储过程中最后一条语句影响了 %d 行" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, php-format msgid "Execution results of routine %s" msgstr "程序 %s 的运行结果" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "运行程序" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 msgid "Routine parameters" msgstr "程序参数" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "函数" @@ -7238,7 +7238,7 @@ msgstr "没有事件。" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7247,7 +7247,7 @@ msgstr "数据表 %s 不存在!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7255,9 +7255,9 @@ msgid "Please configure the coordinates for table %s" msgstr "请配置表 %s 的并发" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "数据库 %s 的大纲 - 第 %s 页" @@ -7270,121 +7270,121 @@ msgstr "此页没有包含任何表!" msgid "SCHEMA ERROR: " msgstr "大纲错误: " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "关系大纲" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "目录" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "属性" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "额外" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "创建新页" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "页面名称" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "自动排版,基于" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "内联" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "外键" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "请选择需要编辑的页" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "选择页" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "选择表" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "显示关系大纲" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "选择导出关系类型" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "显示网格" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "显示颜色" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "显示表格大小" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "以相同宽度显示所有的表" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "仅显示键" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "横向" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "纵向" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "方向" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "纸张大小" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "切换草稿板" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "未知的语言:%1$s." @@ -7457,11 +7457,11 @@ msgstr "清除" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" @@ -7855,7 +7855,7 @@ msgstr "协议版本" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "用户" @@ -8057,7 +8057,7 @@ msgstr "全部收缩/展开" msgid "Toggle small/big" msgstr "反向收缩/展开" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "为 PDF 大纲导入/导出坐标" @@ -8128,39 +8128,39 @@ msgstr "" "显示的字段为粉红色。要设置/取消显示的字段,点击“选择显示字段”图标,然后选择需" "要的字段名。" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "已创建页面" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "页面创建失败" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "页面" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "从所选页导入" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "导出至所选页" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "导出至新页" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "新页面名: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "按比例导出/导入" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "推荐" @@ -8268,12 +8268,12 @@ msgstr "导入文件" msgid "All" msgstr "全部" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "找不到 %s 表或还未在 %s 设置" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "文件不存在" @@ -8285,13 +8285,13 @@ msgstr "选择要查看的二进制日志" msgid "Files" msgstr "文件" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "截断显示的查询" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "显示完整查询" @@ -9089,8 +9089,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "自启动以来的内部查询: %s" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "每小时" @@ -9111,31 +9111,31 @@ msgstr "说明" msgid "#" msgstr "查询数量" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "自启动以来的网络流量: %s" -#: server_status.php:951 +#: server_status.php:952 #, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." msgstr "此 MySQL 服务器已运行 %s。启动时间为 %s 。" -#: server_status.php:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 服务器正以服务器运行于复制进程中。" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9143,11 +9143,11 @@ msgstr "" "要获得更多关于此服务器的复制状态,请查看复制状态信息" "。" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "复制状态" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9155,45 +9155,45 @@ msgstr "" "在高负载的服务器上,字节计数器可能会溢出,因此由 MySQL 返回的统计值可能会不正" "确" -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "已接收" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "已发送" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "最大并发连接数" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "已失败" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "已取消" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "命令" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "因客户端没有关闭连接而中止的连接数。" -#: server_status.php:1189 +#: server_status.php:1190 msgid "The number of failed attempts to connect to the MySQL server." msgstr "尝试连接到 MySQL 服务器但失败的连接数。" -#: server_status.php:1190 +#: server_status.php:1191 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 " @@ -9202,16 +9202,16 @@ msgstr "" "因事务使用的临时二进制日志缓存超出 binlog_cache_size 的设置而使用临时文件存储" "的数量。" -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "事务所用的临时二进制日志缓存的数量。" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "尝试连接到 MySQL 服务器的连接数 (不论成功或失败) 。" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9221,17 +9221,17 @@ msgstr "" "服务器执行语句时自动在磁盘上创建的临时表的数量。如果 Created_tmp_disk_tables " "很大,你可以增加 tmp_table_size 的值,让服务器使用内存来存储临时表而非磁盘。" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "mysqld 已创建的临时文件的数量。" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "服务器执行语句时自动在内存中创建的临时表的数量。" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." @@ -9239,29 +9239,29 @@ msgstr "" "发生错误的延迟插入 (INSERT DELAYED) 行数 (可能是因为在唯一字段中存在重复" "值) 。" -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "延迟插入已写入的行数。" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "已执行的强制更新 (FLUSH) 语句数。" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "已执行的内部提交 (COMMIT) 语句数。" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "从表中删除行的次数。" -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -9270,7 +9270,7 @@ msgstr "" "如果知道一张表的名字,MySQL 服务器可以询问 NDB 集群存储引擎,这被称为“发现”。" "Handler_discovery 表明了一张表被发现的次数。" -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9279,14 +9279,14 @@ msgstr "" "读取一个索引入口点的次数。如果该值很大,说明你的服务器执行了很多完整索引扫" "描。例如,假设字段 col1 已经建立了索引,然后执行 SELECT col1 FROM foo 。" -#: server_status.php:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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 " @@ -9295,7 +9295,7 @@ msgstr "" "根据索引顺序读取下一行的请求数。如果你在查询一个已索引的字段且限制了范围,或" "进行完整表扫描,该值将会不断增长。" -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9303,7 +9303,7 @@ msgstr "" "根据索引顺序读取上一行的请求数。这种读取方式通常用于优化带有 ORDER BY ... " "DESC 的查询。" -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9313,7 +9313,7 @@ msgstr "" "根据固定位置读取行的请求数。如果你执行很多需要排序的查询,该值会很高。你可能" "有很多需要完整表扫描的查询,或者你使用了不正确的索引用来多表查询。" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9323,35 +9323,35 @@ msgstr "" "从数据文件中读取行的请求数。如果你在扫描很多表,该值会很大。通常情况下这意味" "着你的表没有做好索引,或者你的查询语句没有使用好索引字段。" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "内部回滚 (ROLLBACK) 语句数。" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "表中更新行的请求数。" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "表中插入行的请求数。" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "非空页数 (含脏页) 。" -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "当前脏页数。" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "请求更新的缓冲池页数。" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "空闲页数。" -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9360,7 +9360,7 @@ msgstr "" "InnoDB 缓冲池中锁定页的数量。这些页是正在被读取或写入的,或者是因其他原因不能" "被刷新或删除的。" -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9371,11 +9371,11 @@ msgstr "" "公式计算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data 。" -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "缓冲池总大小 (单位:页)。" -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9383,24 +9383,24 @@ msgstr "" "InnoDB 初始化的“随机”预读数。这通常会在对一张表进行大范围的随机排序查询时发" "生。" -#: server_status.php:1220 +#: server_status.php:1221 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:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的逻辑读请求数。" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9412,85 +9412,85 @@ msgstr "" "必要先等待页被刷新。该计数器统计了这种等待的数量。如果缓冲池大小设置正确,这" "个值应该会很小。" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "写入 InnoDB 缓冲池的次数。" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "fsync() 总操作的次数。" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "当前挂起 fsync() 操作的数量。" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "当前挂起的读操作数。" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "当前挂起的写操作数。" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "读取的总数据量 (单位:字节)。" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "数据读取总数。" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "数据写入总数。" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "写入的总数据量 (单位:字节)。" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "以双写入操作写入的页数。" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "已经执行的双写入次数。" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "日志写入请求数。" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "日志物理写入次数。" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 写入日志文件的次数。" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "当前挂起的 fsync 日志文件数。" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "当前挂起的日志写入数。" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "写入日志文件的字节数。" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "创建的页数。" -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9498,75 +9498,75 @@ msgstr "" "编译的 InnoDB 页大小 (默认 16KB)。许多值都以页为单位进行统计,页大小可以很方" "便地将这些值转化为字节数。" -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "读取的页数。" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "写入的页数。" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "正在等待行锁的数量。" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的平均时间 (单位:毫秒)。" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待获得行锁的总时间 (单位:毫秒)。" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待获得行锁的最大时间 (单位:毫秒)。" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "等待行锁的次数。" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "从 InnoDB 表中删除的行数。" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 表中的行数。" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "从 InnoDB 表中读取的行数。" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行数。" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "从缓存中读取键块的请求次数。" -#: server_status.php:1259 +#: server_status.php:1260 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 " @@ -9575,15 +9575,15 @@ msgstr "" "从磁盘中物理读取键块的次数。如果 Key_reads 很大,则说明您的 key_buffer_size " "可能设置得太小了。缓存缺失率可以由 Key_reads/Key_read_requests 计算得出。" -#: server_status.php:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "将一个键块写入缓存的请求数。" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "将键块物理写入到磁盘的次数。" -#: server_status.php:1262 +#: server_status.php:1263 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 " @@ -9592,35 +9592,35 @@ msgstr "" "最后编译的查询的总开销由查询优化器计算得出,可用于比较使用不同的查询语句进行" "相同的查询时的效率差异。默认值0表示还没有查询被编译。" -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "自服务器启动以来的最高并发连接数。" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待写入延迟插入队列的行数。" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "打开的文件个数。" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "打开的流个数 (主要用于日志记录)。" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "打开的数据表个数。" -#: server_status.php:1269 +#: server_status.php:1270 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 " @@ -9629,19 +9629,19 @@ msgstr "" "查询缓存中的空闲内存块。过多的空闲内存块可能产生碎片,可通过执行 FLUSH QUERY " "CACHE 语句解决。" -#: server_status.php:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "查询缓存中空闲的内存总数。" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "缓存命中数。" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "加入到缓存的查询数。" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9651,7 +9651,7 @@ msgstr "" "为缓存新的查询而被删除的已缓存查询的个数,由最近最少使用算法 (LRU) 确定应删除" "哪个已缓存的查询。该信息可帮助您调整查询缓存大小。" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9659,19 +9659,19 @@ msgstr "" "未缓存的查询数 (包括不能被缓存,或因为 query_cache_type 的设置而没有被缓存的" "查询)。" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "在缓存中注册的查询数。" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "查询缓存中的总块数。" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "失败保护器的状态 (尚未应用)。" -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -9679,11 +9679,11 @@ msgstr "" "没有使用索引的多表查询数。如果该值不为0,您应该仔细检查是否已经为表建立了适当" "的索引。" -#: server_status.php:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "使用在关联表上使用范围搜索的多表查询的数量。" -#: server_status.php:1280 +#: server_status.php:1281 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.)" @@ -9691,7 +9691,7 @@ msgstr "" "没有使用索引但在每行之后检查索引使用的多表查询数。(如果该值不为 0,您应该仔细" "检查是否已经为表建立了适当的索引。)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9699,36 +9699,36 @@ msgstr "" "在第一张表上使用范围查询的多表查询数。(即使该值很大,通常也不会有致命的影" "响。)" -#: server_status.php:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "在第一张表上进行了完整表扫描的多表查询数。" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "当前由从 SQL 线程打开的临时表的数量。" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "从 SQL 线程总共重试事务复制数。" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果该值为 ON,则这台服务器是一台已经连接到主服务器的从服务器。" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的时间来启动的线程数量。" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多时间的查询数。" -#: server_status.php:1288 +#: server_status.php:1289 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 " @@ -9737,23 +9737,23 @@ msgstr "" "排序算法使用归并的次数。如果该值很大,您应该考虑增加系统变量 " "sort_buffer_size 的值。" -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "局部范围完成的排序次数。" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "排序的行数。" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "扫描表完成的排序次数。" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要锁定表的次数。" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9763,7 +9763,7 @@ msgstr "" "无法立即获得锁定表而必须等待的次数。如果该值很高,且您遇到了性能方面的问题," "则应该首先检查您的查询语句,然后使用复制操作来分开表。" -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -9772,11 +9772,11 @@ msgstr "" "线程缓存中线程的数量。缓存命中率可以由 Threads_created/Connections 计算得出。" "如果该值是红色的,则应该增加 thread_cache_size 的值。" -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "当前打开的连接数。" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9787,58 +9787,58 @@ msgstr "" "thread_cache_size 的值 (如果线程状况良好,这么做通常并不会带来显著的性能提" "升)。" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "非睡眠状态的线程数量。" -#: server_status.php:1437 +#: server_status.php:1438 msgid "Start Monitor" msgstr "启动监控" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "说明/设置" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "完成排列/编辑图表" -#: server_status.php:1456 +#: server_status.php:1457 msgid "Add chart" msgstr "添加图表" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "排列/编辑图表" -#: server_status.php:1462 +#: server_status.php:1463 msgid "Refresh rate" msgstr "刷新频率" -#: server_status.php:1467 +#: server_status.php:1468 msgid "Chart columns" msgstr "每行图表个数" -#: server_status.php:1483 +#: server_status.php:1484 msgid "Chart arrangement" msgstr "图表排列" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 msgid "Reset to default" msgstr "恢复默认" -#: server_status.php:1488 +#: server_status.php:1489 msgid "Monitor Instructions" msgstr "监控说明" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -9850,7 +9850,7 @@ msgstr "" "需要将 log_output 设置为 'TABLE' 并启用 slow_query_log 或 general_log 功能。" "请注意,general_log 会产生很多数据并可能增加服务器负载多达 15%" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -9860,13 +9860,13 @@ msgstr "" "很遗憾你的数据库服务器不支持日志记录到表,这是使用 phpMyAdmin 分析数据库日志" "的必要功能。MySQL 自 5.1.6 起有该功能。但你仍然可以使用服务器图表功能。" -#: server_status.php:1507 +#: server_status.php:1508 #, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" msgstr "暂停监控" -#: server_status.php:1509 +#: server_status.php:1510 #, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " @@ -9890,7 +9890,7 @@ msgstr "" "住鼠标左键的拖拽操作选择相应的时间段。确认后即可显示出分组后的查询,你可以通" "过点击其中的 SELECT 语句获得进一步分析。

" -#: server_status.php:1511 +#: server_status.php:1512 #, fuzzy #| msgid "" #| "Using the monitor:
Ok, you are good to go! Once you click " @@ -9914,11 +9914,11 @@ msgstr "" "住鼠标左键的拖拽操作选择相应的时间段。确认后即可显示出分组后的查询,你可以通" "过点击其中的 SELECT 语句获得进一步分析。

" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 #, fuzzy #| msgid "" #| "Please note: Enabling the general_log may increase the server load " @@ -10466,12 +10466,12 @@ msgstr "显示 SQL 查询" msgid "Validated SQL" msgstr "已校验的 SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "标签" diff --git a/po/zh_TW.po b/po/zh_TW.po index 1d3ef9a3db..99414a837f 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-15 10:09+0200\n" +"POT-Creation-Date: 2011-08-16 19:11+0200\n" "PO-Revision-Date: 2011-06-19 09:59+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" @@ -21,10 +21,10 @@ msgstr "全部顯示" #: browse_foreigners.php:70 libraries/PDF.class.php:42 #: libraries/common.lib.php:2258 -#: libraries/schema/Pdf_Relation_Schema.class.php:918 -#: libraries/schema/Pdf_Relation_Schema.class.php:934 -#: libraries/schema/User_Schema.class.php:355 -#: libraries/select_lang.lib.php:482 +#: libraries/schema/Pdf_Relation_Schema.class.php:922 +#: libraries/schema/Pdf_Relation_Schema.class.php:938 +#: libraries/schema/User_Schema.class.php:376 +#: libraries/select_lang.lib.php:487 msgid "Page number:" msgstr "頁碼:" @@ -38,8 +38,8 @@ msgstr "" "更新" #: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3062 -#: libraries/common.lib.php:3063 libraries/db_links.inc.php:60 +#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "搜尋" @@ -47,25 +47,25 @@ msgstr "搜尋" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 #: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1182 libraries/Theme_Manager.class.php:302 -#: libraries/auth/cookie.auth.lib.php:246 libraries/common.lib.php:1279 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 #: libraries/common.lib.php:2234 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 #: libraries/display_tbl.lib.php:556 libraries/display_tbl.lib.php:674 #: libraries/replication_gui.lib.php:76 libraries/replication_gui.lib.php:375 -#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:959 -#: libraries/rte/rte_routines.lib.php:1435 +#: libraries/rte/rte_events.lib.php:493 libraries/rte/rte_routines.lib.php:963 +#: libraries/rte/rte_routines.lib.php:1441 #: libraries/rte/rte_triggers.lib.php:373 -#: libraries/schema/User_Schema.class.php:120 -#: libraries/schema/User_Schema.class.php:172 -#: libraries/schema/User_Schema.class.php:405 -#: libraries/schema/User_Schema.class.php:444 +#: libraries/schema/User_Schema.class.php:141 +#: libraries/schema/User_Schema.class.php:193 +#: libraries/schema/User_Schema.class.php:426 +#: libraries/schema/User_Schema.class.php:466 #: libraries/select_server.lib.php:93 libraries/sql_query_form.lib.php:350 #: libraries/sql_query_form.lib.php:413 libraries/sql_query_form.lib.php:466 #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 -#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:124 +#: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 #: server_privileges.php:733 server_privileges.php:1781 #: server_privileges.php:2138 server_privileges.php:2185 @@ -87,7 +87,7 @@ msgstr "鍵名" #: browse_foreigners.php:170 browse_foreigners.php:172 #: server_collations.php:54 server_collations.php:66 server_engines.php:56 -#: server_status.php:1363 +#: server_status.php:1364 msgid "Description" msgstr "說明" @@ -97,7 +97,7 @@ msgid "Use this value" msgstr "使用此值" #: bs_disp_as_mime_type.php:29 bs_play_media.php:35 -#: libraries/blobstreaming.lib.php:343 +#: libraries/blobstreaming.lib.php:348 msgid "No blob streaming server configured!" msgstr "未設定BLOB 串流伺服器" @@ -125,7 +125,7 @@ msgstr "建立資料庫 %1$s 成功" msgid "Database comment: " msgstr "資料庫註釋:" -#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1032 +#: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1036 #: libraries/tbl_properties.inc.php:700 tbl_operations.php:366 #: tbl_printview.php:124 msgid "Table comments" @@ -134,8 +134,8 @@ msgstr "表註釋" #: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:436 #: libraries/export/htmlword.php:251 libraries/export/latex.php:361 #: libraries/export/odt.php:288 libraries/export/texytext.php:230 -#: libraries/schema/Pdf_Relation_Schema.class.php:1058 -#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1062 +#: libraries/schema/Pdf_Relation_Schema.class.php:1083 #: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 #: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 @@ -147,11 +147,11 @@ msgstr "欄位" #: libraries/db_structure.lib.php:46 libraries/export/htmlword.php:252 #: libraries/export/latex.php:361 libraries/export/odt.php:291 #: libraries/export/texytext.php:231 libraries/rte/rte_list.lib.php:53 -#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:825 -#: libraries/rte/rte_routines.lib.php:850 -#: libraries/rte/rte_routines.lib.php:1353 -#: libraries/schema/Pdf_Relation_Schema.class.php:1059 -#: libraries/schema/Pdf_Relation_Schema.class.php:1080 +#: libraries/rte/rte_list.lib.php:69 libraries/rte/rte_routines.lib.php:829 +#: libraries/rte/rte_routines.lib.php:854 +#: libraries/rte/rte_routines.lib.php:1359 +#: libraries/schema/Pdf_Relation_Schema.class.php:1063 +#: libraries/schema/Pdf_Relation_Schema.class.php:1084 #: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 #: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 @@ -162,8 +162,8 @@ msgstr "類型" #: db_datadict.php:169 libraries/Index.class.php:439 #: libraries/export/htmlword.php:253 libraries/export/latex.php:361 #: libraries/export/odt.php:294 libraries/export/texytext.php:232 -#: libraries/schema/Pdf_Relation_Schema.class.php:1061 -#: libraries/schema/Pdf_Relation_Schema.class.php:1082 +#: libraries/schema/Pdf_Relation_Schema.class.php:1065 +#: libraries/schema/Pdf_Relation_Schema.class.php:1086 #: libraries/tbl_properties.inc.php:112 tbl_change.php:328 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 @@ -173,8 +173,8 @@ msgstr "空" #: db_datadict.php:170 db_structure.php:455 libraries/export/htmlword.php:254 #: libraries/export/latex.php:361 libraries/export/odt.php:297 #: libraries/export/texytext.php:233 -#: libraries/schema/Pdf_Relation_Schema.class.php:1062 -#: libraries/schema/Pdf_Relation_Schema.class.php:1083 +#: libraries/schema/Pdf_Relation_Schema.class.php:1066 +#: libraries/schema/Pdf_Relation_Schema.class.php:1087 #: libraries/tbl_properties.inc.php:109 tbl_printview.php:140 #: tbl_structure.php:207 tbl_tracking.php:261 msgid "Default" @@ -183,8 +183,8 @@ msgstr "預設" #: db_datadict.php:174 libraries/export/htmlword.php:256 #: libraries/export/latex.php:363 libraries/export/odt.php:301 #: libraries/export/texytext.php:235 -#: libraries/schema/Pdf_Relation_Schema.class.php:1064 -#: libraries/schema/Pdf_Relation_Schema.class.php:1085 tbl_printview.php:144 +#: libraries/schema/Pdf_Relation_Schema.class.php:1068 +#: libraries/schema/Pdf_Relation_Schema.class.php:1089 tbl_printview.php:144 msgid "Links to" msgstr "連結到" @@ -193,8 +193,8 @@ msgstr "連結到" #: libraries/config/messages.inc.php:131 libraries/export/htmlword.php:259 #: libraries/export/latex.php:366 libraries/export/odt.php:306 #: libraries/export/texytext.php:238 -#: libraries/schema/Pdf_Relation_Schema.class.php:1075 -#: libraries/schema/Pdf_Relation_Schema.class.php:1086 +#: libraries/schema/Pdf_Relation_Schema.class.php:1079 +#: libraries/schema/Pdf_Relation_Schema.class.php:1090 #: libraries/tbl_properties.inc.php:132 tbl_printview.php:146 msgid "Comments" msgstr "註釋" @@ -205,7 +205,7 @@ msgstr "註釋" #: libraries/config/FormDisplay.tpl.php:198 libraries/export/htmlword.php:301 #: libraries/export/latex.php:409 libraries/export/odt.php:345 #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 #: server_privileges.php:1468 server_privileges.php:1479 #: server_privileges.php:1725 server_privileges.php:1736 @@ -226,7 +226,7 @@ msgstr "否" #: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262 #: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286 #: libraries/mult_submits.inc.php:299 -#: libraries/schema/Pdf_Relation_Schema.class.php:1109 +#: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 #: server_privileges.php:1476 server_privileges.php:1722 @@ -355,7 +355,7 @@ msgstr "編輯或匯出關聯大綱" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:233 server_privileges.php:1832 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 #: server_privileges.php:1888 server_privileges.php:2152 #: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 msgid "Table" @@ -379,21 +379,21 @@ msgstr "使用中" #: db_printview.php:185 libraries/db_info.inc.php:61 #: libraries/export/sql.php:711 -#: libraries/schema/Pdf_Relation_Schema.class.php:1037 tbl_printview.php:398 +#: libraries/schema/Pdf_Relation_Schema.class.php:1041 tbl_printview.php:398 #: tbl_structure.php:908 msgid "Creation" msgstr "建立時間" #: db_printview.php:194 libraries/db_info.inc.php:66 #: libraries/export/sql.php:716 -#: libraries/schema/Pdf_Relation_Schema.class.php:1042 tbl_printview.php:408 +#: libraries/schema/Pdf_Relation_Schema.class.php:1046 tbl_printview.php:408 #: tbl_structure.php:916 msgid "Last update" msgstr "最後更新" #: db_printview.php:203 libraries/db_info.inc.php:71 #: libraries/export/sql.php:721 -#: libraries/schema/Pdf_Relation_Schema.class.php:1047 tbl_printview.php:418 +#: libraries/schema/Pdf_Relation_Schema.class.php:1051 tbl_printview.php:418 #: tbl_structure.php:924 msgid "Last check" msgstr "最後檢查" @@ -491,7 +491,7 @@ msgstr "送出查詢" #: db_search.php:30 libraries/auth/config.auth.lib.php:77 #: libraries/auth/config.auth.lib.php:96 -#: libraries/auth/cookie.auth.lib.php:567 libraries/auth/http.auth.lib.php:51 +#: libraries/auth/cookie.auth.lib.php:568 libraries/auth/http.auth.lib.php:51 #: libraries/auth/signon.auth.lib.php:237 msgid "Access denied" msgstr "拒絕訪問" @@ -524,7 +524,7 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s 筆資料符合 - 於資料表 %s" #: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3060 libraries/common.lib.php:3061 +#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "瀏覽" @@ -536,10 +536,10 @@ msgstr "刪除 %s 資料表中符合的資料?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 #: libraries/display_tbl.lib.php:2342 -#: libraries/schema/User_Schema.class.php:165 -#: libraries/schema/User_Schema.class.php:234 -#: libraries/schema/User_Schema.class.php:269 -#: libraries/schema/User_Schema.class.php:299 +#: libraries/schema/User_Schema.class.php:186 +#: libraries/schema/User_Schema.class.php:255 +#: libraries/schema/User_Schema.class.php:290 +#: libraries/schema/User_Schema.class.php:320 #: libraries/sql_query_form.lib.php:406 pmd_general.php:423 #: setup/frames/index.inc.php:139 setup/frames/index.inc.php:230 #: tbl_tracking.php:426 tbl_tracking.php:447 tbl_tracking.php:504 @@ -658,12 +658,12 @@ msgstr "全不選" msgid "Check tables having overhead" msgstr "僅選擇多餘" -#: db_structure.php:498 libraries/common.lib.php:3073 -#: libraries/common.lib.php:3074 libraries/config/messages.inc.php:164 +#: db_structure.php:498 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 #: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 #: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 -#: server_privileges.php:1441 server_status.php:1484 +#: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 msgid "Export" msgstr "匯出" @@ -673,13 +673,13 @@ msgstr "匯出" msgid "Print view" msgstr "列印預覽" -#: db_structure.php:504 libraries/common.lib.php:3069 -#: libraries/common.lib.php:3070 +#: db_structure.php:504 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3069 msgid "Empty" msgstr "清空" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3067 libraries/common.lib.php:3068 +#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -713,7 +713,7 @@ msgstr "覆蓋資料表名稱的前綴文字" msgid "Copy table with prefix" msgstr "複製資料表名稱的前綴文字" -#: db_structure.php:560 libraries/schema/User_Schema.class.php:382 +#: db_structure.php:560 libraries/schema/User_Schema.class.php:403 msgid "Data Dictionary" msgstr "資料字典" @@ -728,7 +728,7 @@ msgstr "已追蹤的表" #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 #: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1117 +#: server_privileges.php:2146 server_status.php:1118 #: server_synchronize.php:1140 server_synchronize.php:1144 #: tbl_tracking.php:633 msgid "Database" @@ -748,7 +748,7 @@ msgstr "更新" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1120 sql.php:842 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 msgid "Status" msgstr "狀態" @@ -849,14 +849,14 @@ msgid "" "%s for ways to workaround this limit." msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制." -#: import.php:277 import.php:330 libraries/File.class.php:456 -#: libraries/File.class.php:539 +#: import.php:277 import.php:330 libraries/File.class.php:457 +#: libraries/File.class.php:540 msgid "File could not be read" msgstr "檔案無法讀取" #: import.php:285 import.php:294 import.php:313 import.php:322 -#: libraries/File.class.php:609 libraries/File.class.php:617 -#: libraries/File.class.php:633 libraries/File.class.php:641 +#: libraries/File.class.php:610 libraries/File.class.php:618 +#: libraries/File.class.php:634 libraries/File.class.php:642 #, php-format msgid "" "You attempted to load file with unsupported compression (%s). Either support " @@ -886,7 +886,7 @@ msgstr "書籤已被刪除." msgid "Showing bookmark" msgstr "顯示書籤" -#: import.php:401 sql.php:877 +#: import.php:401 sql.php:905 #, php-format msgid "Bookmark %s created" msgstr "已建立書籤 %s" @@ -912,7 +912,7 @@ msgstr "" "將無法完成匯入操作" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1193 +#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -1027,9 +1027,9 @@ msgstr "關閉" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 #: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3071 libraries/common.lib.php:3072 +#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 -#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:138 +#: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" msgstr "編輯" @@ -1052,13 +1052,13 @@ msgstr "靜態資料" #. l10n: Total number of queries #: js/messages.php:71 libraries/build_html_for_db.lib.php:46 #: libraries/engines/innodb.lib.php:158 server_databases.php:218 -#: server_status.php:1020 server_status.php:1081 tbl_printview.php:315 +#: server_status.php:1021 server_status.php:1082 tbl_printview.php:315 #: tbl_structure.php:798 msgid "Total" msgstr "總計" #. l10n: Other, small valued, queries -#: js/messages.php:73 server_status.php:918 +#: js/messages.php:73 server_status.php:919 msgid "Other" msgstr "其他" @@ -1088,7 +1088,7 @@ msgstr "伺服器流量(單位為KiB,即2^10)" msgid "Connections since last refresh" msgstr "最後一次連線" -#: js/messages.php:83 js/messages.php:121 server_status.php:1113 +#: js/messages.php:83 js/messages.php:121 server_status.php:1114 msgid "Processes" msgstr "處理" @@ -1115,7 +1115,7 @@ msgstr "查詢統計" #: js/messages.php:93 #, fuzzy #| msgid "Could not save configuration" -msgid "Local monitor configuration icompatible" +msgid "Local monitor configuration incompatible" msgstr "無法儲存設定" #: js/messages.php:94 @@ -1224,7 +1224,7 @@ msgstr "" msgid "Bytes received" msgstr "已接收" -#: js/messages.php:120 server_status.php:1039 +#: js/messages.php:120 server_status.php:1040 msgid "Connections" msgstr "連線" @@ -1235,12 +1235,12 @@ msgstr "連線" msgid "Questions" msgstr "版本" -#: js/messages.php:125 server_status.php:994 +#: js/messages.php:125 server_status.php:995 msgid "Traffic" msgstr "流量" #: js/messages.php:126 libraries/server_links.inc.php:73 -#: server_status.php:1441 +#: server_status.php:1442 msgid "Settings" msgstr "設定" @@ -1267,7 +1267,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1154 server_status.php:1582 +#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "無" @@ -1497,7 +1497,7 @@ msgstr "" #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 -#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1484 +#: libraries/tbl_links.inc.php:89 prefs_manage.php:229 server_status.php:1485 #: setup/frames/menu.inc.php:20 msgid "Import" msgstr "輸入" @@ -1674,7 +1674,7 @@ msgid "Query execution time" msgstr "最長執行時間" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 -#: libraries/schema/User_Schema.class.php:313 +#: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 #: setup/frames/index.inc.php:228 tbl_change.php:979 #: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 @@ -2100,51 +2100,51 @@ msgstr "分" msgid "Second" msgstr "秒" -#: libraries/Config.class.php:1154 +#: libraries/Config.class.php:1159 msgid "Font size" msgstr "字體大小" -#: libraries/File.class.php:220 +#: libraries/File.class.php:221 msgid "File was not an uploaded file." msgstr "" -#: libraries/File.class.php:259 libraries/File.class.php:388 +#: libraries/File.class.php:260 libraries/File.class.php:389 #, fuzzy #| msgid "Unknown error in file upload." msgid "Unknown error while uploading." msgstr "上傳檔案時發生未知錯誤" -#: libraries/File.class.php:277 +#: libraries/File.class.php:278 msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini." msgstr "上傳檔案的大小超過 php.ini 檔案中 upload_max_filesize 的限制" -#: libraries/File.class.php:280 +#: libraries/File.class.php:281 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:283 +#: libraries/File.class.php:284 msgid "The uploaded file was only partially uploaded." msgstr "僅上傳了檔案的一部分內容" -#: libraries/File.class.php:286 +#: libraries/File.class.php:287 msgid "Missing a temporary folder." msgstr "找不到臨時資料夾" -#: libraries/File.class.php:289 +#: libraries/File.class.php:290 msgid "Failed to write file to disk." msgstr "將檔案寫入硬碟失敗" -#: libraries/File.class.php:292 +#: libraries/File.class.php:293 msgid "File upload stopped by extension." msgstr "因外掛而停止檔案上傳" -#: libraries/File.class.php:295 +#: libraries/File.class.php:296 msgid "Unknown error in file upload." msgstr "上傳檔案時發生未知錯誤" -#: libraries/File.class.php:495 +#: libraries/File.class.php:496 msgid "" "Error moving the uploaded file, see [a@./Documentation." "html#faq1_11@Documentation]FAQ 1.11[/a]" @@ -2152,11 +2152,11 @@ msgstr "" "移動上傳文件時發生錯誤,參見 [a@./Documentation.html#faq1_11@Documentation]" "FAQ 1.11[/a]。" -#: libraries/File.class.php:507 +#: libraries/File.class.php:508 msgid "Error while moving uploaded file." msgstr "" -#: libraries/File.class.php:515 +#: libraries/File.class.php:516 msgid "Cannot read (moved) upload file." msgstr "" @@ -2184,7 +2184,7 @@ msgid "Cardinality" msgstr "基數" #: libraries/Index.class.php:440 libraries/rte/rte_events.lib.php:480 -#: libraries/rte/rte_routines.lib.php:946 tbl_tracking.php:263 +#: libraries/rte/rte_routines.lib.php:950 tbl_tracking.php:263 #: tbl_tracking.php:312 msgid "Comment" msgstr "註解" @@ -2205,14 +2205,14 @@ msgid "" "removed." msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除" -#: libraries/List_Database.class.php:378 libraries/config/messages.inc.php:177 +#: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 #: server_privileges.php:1827 msgid "Databases" msgstr "資料庫" -#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:320 -#: libraries/blobstreaming.lib.php:326 libraries/common.lib.php:547 +#: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 +#: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 #: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" @@ -2309,16 +2309,16 @@ msgid "" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Theme.class.php:144 +#: libraries/Theme.class.php:145 #, php-format msgid "No valid image path for theme %s found!" msgstr "找不到佈景主題 %s 指定圖片路徑!" -#: libraries/Theme.class.php:338 +#: libraries/Theme.class.php:340 msgid "No preview available." msgstr "沒有可用的預覽。" -#: libraries/Theme.class.php:341 +#: libraries/Theme.class.php:343 msgid "take it" msgstr "確定" @@ -2332,12 +2332,12 @@ msgstr "未找到預設主題 %s !" msgid "Theme %s not found!" msgstr "未找到主題 %s !" -#: libraries/Theme_Manager.class.php:216 +#: libraries/Theme_Manager.class.php:217 #, php-format msgid "Theme path not found for theme %s!" msgstr "找不到主題 %s 的路徑" -#: libraries/Theme_Manager.class.php:289 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2346,7 +2346,7 @@ msgid "Cannot connect: invalid settings." msgstr "無法連線: 設定錯誤." #: libraries/auth/config.auth.lib.php:85 -#: libraries/auth/cookie.auth.lib.php:173 libraries/auth/http.auth.lib.php:64 +#: libraries/auth/cookie.auth.lib.php:174 libraries/auth/http.auth.lib.php:64 #, php-format msgid "Welcome to %s" msgstr "歡迎使用 %s" @@ -2369,56 +2369,56 @@ msgstr "" "phpMyAdmin 嘗試連線到 MySQL 伺服器,但伺服器拒絕連線。您應該檢查設定檔案中的" "主機、帳號和密碼,並確認這些資訊與 MySQL 伺服器管理員所給出的資訊一致" -#: libraries/auth/cookie.auth.lib.php:198 +#: libraries/auth/cookie.auth.lib.php:199 msgid "Log in" msgstr "登錄" -#: libraries/auth/cookie.auth.lib.php:200 -#: libraries/auth/cookie.auth.lib.php:202 +#: libraries/auth/cookie.auth.lib.php:201 +#: libraries/auth/cookie.auth.lib.php:203 #: libraries/navigation_header.inc.php:92 #: libraries/navigation_header.inc.php:96 msgid "phpMyAdmin documentation" msgstr "phpMyAdmin 檔案" -#: libraries/auth/cookie.auth.lib.php:212 #: libraries/auth/cookie.auth.lib.php:213 +#: libraries/auth/cookie.auth.lib.php:214 msgid "You can enter hostname/IP address and port separated by space." msgstr "您可以輸入以空格分隔的主機名/IP網址和連結埠" -#: libraries/auth/cookie.auth.lib.php:212 +#: libraries/auth/cookie.auth.lib.php:213 msgid "Server:" msgstr "伺服器:" -#: libraries/auth/cookie.auth.lib.php:217 +#: libraries/auth/cookie.auth.lib.php:218 msgid "Username:" msgstr "使用者名稱" -#: libraries/auth/cookie.auth.lib.php:221 +#: libraries/auth/cookie.auth.lib.php:222 msgid "Password:" msgstr "密碼:" -#: libraries/auth/cookie.auth.lib.php:228 +#: libraries/auth/cookie.auth.lib.php:229 msgid "Server Choice" msgstr "選擇伺服器" -#: libraries/auth/cookie.auth.lib.php:274 libraries/header.inc.php:87 +#: libraries/auth/cookie.auth.lib.php:275 libraries/header.inc.php:87 msgid "Cookies must be enabled past this point." msgstr "必須啟用 Cookies 才能登入。" -#: libraries/auth/cookie.auth.lib.php:565 +#: libraries/auth/cookie.auth.lib.php:566 #: libraries/auth/signon.auth.lib.php:235 msgid "" "Login without a password is forbidden by configuration (see AllowNoPassword)" msgstr "空密碼登錄被禁止 (參見 允許空密碼)" -#: libraries/auth/cookie.auth.lib.php:569 +#: libraries/auth/cookie.auth.lib.php:570 #: libraries/auth/signon.auth.lib.php:239 #, php-format msgid "No activity within %s seconds; please log in again" msgstr "登錄超時 (%s 秒未操作),請重新登錄" -#: libraries/auth/cookie.auth.lib.php:579 -#: libraries/auth/cookie.auth.lib.php:581 +#: libraries/auth/cookie.auth.lib.php:580 +#: libraries/auth/cookie.auth.lib.php:582 #: libraries/auth/signon.auth.lib.php:243 msgid "Cannot log in to the MySQL server" msgstr "無法登錄 MySQL 伺服器" @@ -2449,41 +2449,41 @@ msgstr "沒有可用的密鑰插入" msgid "Authenticating..." msgstr "正在認證..." -#: libraries/blobstreaming.lib.php:239 +#: libraries/blobstreaming.lib.php:244 msgid "PBMS error" msgstr "PBMS 錯誤" -#: libraries/blobstreaming.lib.php:272 +#: libraries/blobstreaming.lib.php:277 msgid "PBMS connection failed:" msgstr "PBMS 連線失敗" -#: libraries/blobstreaming.lib.php:324 +#: libraries/blobstreaming.lib.php:329 msgid "PBMS get BLOB info failed:" msgstr "PBMS 取得 BLOB 資訊失敗:" -#: libraries/blobstreaming.lib.php:332 +#: libraries/blobstreaming.lib.php:337 #, fuzzy #| msgid "get BLOB Content-Type failed" msgid "PBMS get BLOB Content-Type failed" msgstr "取得 BLOB 內容類型失敗" -#: libraries/blobstreaming.lib.php:358 +#: libraries/blobstreaming.lib.php:363 msgid "View image" msgstr "查看圖片" -#: libraries/blobstreaming.lib.php:362 +#: libraries/blobstreaming.lib.php:367 msgid "Play audio" msgstr "播放音效" -#: libraries/blobstreaming.lib.php:367 +#: libraries/blobstreaming.lib.php:372 msgid "View video" msgstr "播放影片" -#: libraries/blobstreaming.lib.php:371 +#: libraries/blobstreaming.lib.php:376 msgid "Download file" msgstr "下載檔案" -#: libraries/blobstreaming.lib.php:433 +#: libraries/blobstreaming.lib.php:443 #, php-format msgid "Could not open file: %s" msgstr "無法開啟檔案:%s" @@ -2620,7 +2620,7 @@ msgid "Documentation" msgstr "文件" #: libraries/common.lib.php:559 libraries/header_printview.inc.php:60 -#: server_status.php:532 server_status.php:1122 +#: server_status.php:532 server_status.php:1123 msgid "SQL query" msgstr "SQL 查詢" @@ -2630,7 +2630,7 @@ msgstr "SQL 查詢" #: libraries/rte/rte_routines.lib.php:260 #: libraries/rte/rte_routines.lib.php:270 #: libraries/rte/rte_routines.lib.php:284 -#: libraries/rte/rte_routines.lib.php:1243 +#: libraries/rte/rte_routines.lib.php:1247 #: libraries/rte/rte_triggers.lib.php:76 libraries/rte/rte_triggers.lib.php:81 #: libraries/rte/rte_triggers.lib.php:91 #: libraries/rte/rte_triggers.lib.php:104 @@ -2679,7 +2679,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "行間" -#: libraries/common.lib.php:1278 sql.php:838 +#: libraries/common.lib.php:1278 sql.php:866 msgid "Profiling" msgstr "概要" @@ -2783,7 +2783,7 @@ msgid "Click to toggle" msgstr "點擊選取" #: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3066 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 @@ -2803,8 +2803,8 @@ msgstr "結構" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3064 -#: libraries/common.lib.php:3065 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 +#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "插入" @@ -2815,25 +2815,25 @@ msgstr "插入" msgid "Operations" msgstr "操作" -#: libraries/common.lib.php:3010 +#: libraries/common.lib.php:3009 msgid "Browse your computer:" msgstr "從計算機中上傳:" -#: libraries/common.lib.php:3027 +#: libraries/common.lib.php:3026 #, php-format msgid "Select from the web server upload directory %s:" msgstr "選擇 Web 伺服器上傳目錄 %s:" -#: libraries/common.lib.php:3039 libraries/sql_query_form.lib.php:447 +#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 #: tbl_change.php:887 msgid "The directory you set for upload work cannot be reached" msgstr "設定之上傳目錄錯誤,無法使用" -#: libraries/common.lib.php:3047 +#: libraries/common.lib.php:3046 msgid "There are no files to upload" msgstr "沒有可上傳的檔案" -#: libraries/common.lib.php:3075 libraries/common.lib.php:3076 +#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 msgid "Execute" msgstr "" @@ -2998,7 +2998,7 @@ msgid "Allow users to customize this value" msgstr "允許使用者自訂該值" #: libraries/config/FormDisplay.tpl.php:324 -#: libraries/schema/User_Schema.class.php:465 prefs_manage.php:318 +#: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 #: prefs_manage.php:323 tbl_change.php:1028 msgid "Reset" msgstr "重置" @@ -5223,8 +5223,8 @@ msgstr "在資料庫 %s 中建立一張資料表" #: libraries/display_create_table.lib.php:51 libraries/rte/rte_list.lib.php:51 #: libraries/rte/rte_list.lib.php:57 libraries/rte/rte_list.lib.php:66 -#: libraries/rte/rte_routines.lib.php:849 -#: libraries/rte/rte_routines.lib.php:1352 +#: libraries/rte/rte_routines.lib.php:853 +#: libraries/rte/rte_routines.lib.php:1358 #: libraries/tbl_properties.inc.php:102 setup/frames/index.inc.php:126 #: tbl_structure.php:202 msgid "Name" @@ -5531,7 +5531,7 @@ msgstr "主鍵排序" #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 #: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:852 tbl_select.php:152 +#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 #: tbl_structure.php:852 msgid "Options" msgstr "選項" @@ -5591,7 +5591,7 @@ msgid "The row has been deleted" msgstr "已刪除該行" #: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 -#: server_status.php:1150 +#: server_status.php:1151 msgid "Kill" msgstr "中止" @@ -6143,7 +6143,7 @@ msgstr "顯示 MIME 類型" #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 #: server_privileges.php:1694 server_privileges.php:2237 -#: server_status.php:1116 +#: server_status.php:1117 msgid "Host" msgstr "主機" @@ -6363,7 +6363,7 @@ msgstr "SQL 查詢結果" msgid "Generated by" msgstr "產生者" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1237 +#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 #: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查詢結果爲空 (即零行)" @@ -6467,7 +6467,7 @@ msgstr "DocSQL" msgid "Table name" msgstr "資料資料表名稱" -#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:312 +#: libraries/import/ldi.php:45 libraries/schema/User_Schema.class.php:333 #: view_create.php:147 msgid "Column names" msgstr "欄位名稱" @@ -6823,7 +6823,7 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "請重新登錄 phpMyAdmin 以載入新設定並使其生效" -#: libraries/relation.lib.php:1077 +#: libraries/relation.lib.php:1076 msgid "no description" msgstr "無說明" @@ -6860,14 +6860,14 @@ msgid "Slave status" msgstr "從伺服器狀態" #: libraries/replication_gui.lib.php:118 libraries/sql_query_form.lib.php:382 -#: server_status.php:1361 server_variables.php:108 +#: server_status.php:1362 server_variables.php:108 msgid "Variable" msgstr "變數" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1357 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1362 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "值" @@ -6927,7 +6927,7 @@ msgstr "產生密碼" #: libraries/rte/rte_events.lib.php:130 libraries/rte/rte_routines.lib.php:254 #: libraries/rte/rte_routines.lib.php:259 #: libraries/rte/rte_routines.lib.php:283 -#: libraries/rte/rte_routines.lib.php:1242 +#: libraries/rte/rte_routines.lib.php:1246 #: libraries/rte/rte_triggers.lib.php:75 libraries/rte/rte_triggers.lib.php:80 #: libraries/rte/rte_triggers.lib.php:103 #, fuzzy, php-format @@ -6967,16 +6967,16 @@ msgstr "" msgid "Edit event" msgstr "編輯伺服器" -#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:370 -#: libraries/rte/rte_routines.lib.php:1264 -#: libraries/rte/rte_routines.lib.php:1300 +#: libraries/rte/rte_events.lib.php:212 libraries/rte/rte_routines.lib.php:372 +#: libraries/rte/rte_routines.lib.php:1268 +#: libraries/rte/rte_routines.lib.php:1304 #: libraries/rte/rte_triggers.lib.php:187 #, fuzzy #| msgid "Error in Processing Request" msgid "Error in processing request" msgstr "要求處理得程序中有錯誤" -#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:817 +#: libraries/rte/rte_events.lib.php:371 libraries/rte/rte_routines.lib.php:821 #: libraries/rte/rte_triggers.lib.php:302 #, fuzzy #| msgid "Details..." @@ -6993,7 +6993,7 @@ msgstr "事件類型" msgid "Event type" msgstr "事件類型" -#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:838 +#: libraries/rte/rte_events.lib.php:416 libraries/rte/rte_routines.lib.php:842 #, fuzzy, php-format #| msgid "Change" msgid "Change to %s" @@ -7021,7 +7021,7 @@ msgctxt "End of recurring event" msgid "End" msgstr "結束" -#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:912 +#: libraries/rte/rte_events.lib.php:465 libraries/rte/rte_routines.lib.php:916 #: libraries/rte/rte_triggers.lib.php:354 #, fuzzy #| msgid "Description" @@ -7034,12 +7034,12 @@ msgstr "說明" msgid "On completion preserve" msgstr "完整插入" -#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:922 +#: libraries/rte/rte_events.lib.php:475 libraries/rte/rte_routines.lib.php:926 #: libraries/rte/rte_triggers.lib.php:360 msgid "Definer" msgstr "" -#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:986 +#: libraries/rte/rte_events.lib.php:518 libraries/rte/rte_routines.lib.php:990 #: libraries/rte/rte_triggers.lib.php:398 msgid "The definer must be in the \"username@hostname\" format" msgstr "" @@ -7087,7 +7087,7 @@ msgid "Returns" msgstr "返回類型" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1119 sql.php:843 +#: server_status.php:1120 sql.php:871 msgid "Time" msgstr "時間" @@ -7103,7 +7103,7 @@ msgid "" msgstr "" #: libraries/rte/rte_routines.lib.php:247 -#: libraries/rte/rte_routines.lib.php:994 +#: libraries/rte/rte_routines.lib.php:998 #, fuzzy, php-format #| msgid "Invalid server index: %s" msgid "Invalid routine type: \"%s\"" @@ -7125,125 +7125,125 @@ msgstr "已刪除欄位 %s " msgid "Routine %1$s has been created." msgstr "建立資料表 %1$s 成功" -#: libraries/rte/rte_routines.lib.php:344 +#: libraries/rte/rte_routines.lib.php:346 #, fuzzy #| msgid "Edit mode" msgid "Edit routine" msgstr "編輯模式" -#: libraries/rte/rte_routines.lib.php:820 +#: libraries/rte/rte_routines.lib.php:824 #, fuzzy #| msgid "Routines" msgid "Routine name" msgstr "一般" -#: libraries/rte/rte_routines.lib.php:843 +#: libraries/rte/rte_routines.lib.php:847 msgid "Parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:848 +#: libraries/rte/rte_routines.lib.php:852 #, fuzzy #| msgid "Direct links" msgid "Direction" msgstr "直接連線" -#: libraries/rte/rte_routines.lib.php:851 libraries/tbl_properties.inc.php:108 +#: libraries/rte/rte_routines.lib.php:855 libraries/tbl_properties.inc.php:108 msgid "Length/Values" msgstr "長度/值" -#: libraries/rte/rte_routines.lib.php:866 +#: libraries/rte/rte_routines.lib.php:870 msgid "Add parameter" msgstr "" -#: libraries/rte/rte_routines.lib.php:870 +#: libraries/rte/rte_routines.lib.php:874 #, fuzzy #| msgid "Remove database" msgid "Remove last parameter" msgstr "刪除資料庫" -#: libraries/rte/rte_routines.lib.php:875 +#: libraries/rte/rte_routines.lib.php:879 msgid "Return type" msgstr "返回類型" -#: libraries/rte/rte_routines.lib.php:881 +#: libraries/rte/rte_routines.lib.php:885 #, fuzzy #| msgid "Length/Values" msgid "Return length/values" msgstr "長度/值" -#: libraries/rte/rte_routines.lib.php:887 +#: libraries/rte/rte_routines.lib.php:891 #, fuzzy #| msgid "Table options" msgid "Return options" msgstr "表選項" -#: libraries/rte/rte_routines.lib.php:918 +#: libraries/rte/rte_routines.lib.php:922 msgid "Is deterministic" msgstr "" -#: libraries/rte/rte_routines.lib.php:927 +#: libraries/rte/rte_routines.lib.php:931 #, fuzzy #| msgid "Security" msgid "Security type" msgstr "安全" -#: libraries/rte/rte_routines.lib.php:934 +#: libraries/rte/rte_routines.lib.php:938 msgid "SQL data access" msgstr "" -#: libraries/rte/rte_routines.lib.php:999 +#: libraries/rte/rte_routines.lib.php:1003 msgid "You must provide a routine name" msgstr "" -#: libraries/rte/rte_routines.lib.php:1025 +#: libraries/rte/rte_routines.lib.php:1029 #, php-format msgid "Invalid direction \"%s\" given for parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1037 -#: libraries/rte/rte_routines.lib.php:1075 +#: libraries/rte/rte_routines.lib.php:1041 +#: libraries/rte/rte_routines.lib.php:1079 msgid "" "You must provide length/values for routine parameters of type ENUM, SET, " "VARCHAR and VARBINARY." msgstr "" -#: libraries/rte/rte_routines.lib.php:1055 +#: libraries/rte/rte_routines.lib.php:1059 msgid "You must provide a name and a type for each routine parameter." msgstr "" -#: libraries/rte/rte_routines.lib.php:1065 +#: libraries/rte/rte_routines.lib.php:1069 msgid "You must provide a valid return type for the routine." msgstr "" -#: libraries/rte/rte_routines.lib.php:1109 +#: libraries/rte/rte_routines.lib.php:1113 msgid "You must provide a routine definition." msgstr "" -#: libraries/rte/rte_routines.lib.php:1198 +#: libraries/rte/rte_routines.lib.php:1202 #, php-format msgid "%d row affected by the last statement inside the procedure" msgid_plural "%d rows affected by the last statement inside the procedure" msgstr[0] "" -#: libraries/rte/rte_routines.lib.php:1214 +#: libraries/rte/rte_routines.lib.php:1218 #, fuzzy, php-format #| msgid "Allows executing stored routines." msgid "Execution results of routine %s" msgstr "允許運行 Procedure" -#: libraries/rte/rte_routines.lib.php:1288 -#: libraries/rte/rte_routines.lib.php:1294 +#: libraries/rte/rte_routines.lib.php:1292 +#: libraries/rte/rte_routines.lib.php:1298 msgid "Execute routine" msgstr "" -#: libraries/rte/rte_routines.lib.php:1345 -#: libraries/rte/rte_routines.lib.php:1348 +#: libraries/rte/rte_routines.lib.php:1351 +#: libraries/rte/rte_routines.lib.php:1354 #, fuzzy #| msgid "Routines" msgid "Routine parameters" msgstr "一般" -#: libraries/rte/rte_routines.lib.php:1355 tbl_change.php:287 +#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 #: tbl_change.php:325 msgid "Function" msgstr "函數" @@ -7408,7 +7408,7 @@ msgstr "沒有可上傳的檔案" #: libraries/schema/Dia_Relation_Schema.class.php:221 #: libraries/schema/Eps_Relation_Schema.class.php:394 -#: libraries/schema/Pdf_Relation_Schema.class.php:329 +#: libraries/schema/Pdf_Relation_Schema.class.php:333 #: libraries/schema/Svg_Relation_Schema.class.php:363 #: libraries/schema/Visio_Relation_Schema.class.php:209 #, php-format @@ -7417,7 +7417,7 @@ msgstr "資料表 %s 不存在!" #: libraries/schema/Dia_Relation_Schema.class.php:247 #: libraries/schema/Eps_Relation_Schema.class.php:435 -#: libraries/schema/Pdf_Relation_Schema.class.php:363 +#: libraries/schema/Pdf_Relation_Schema.class.php:367 #: libraries/schema/Svg_Relation_Schema.class.php:405 #: libraries/schema/Visio_Relation_Schema.class.php:251 #, php-format @@ -7425,9 +7425,9 @@ msgid "Please configure the coordinates for table %s" msgstr "請設定表 %s 的座標" #: libraries/schema/Eps_Relation_Schema.class.php:741 -#: libraries/schema/Pdf_Relation_Schema.class.php:687 +#: libraries/schema/Pdf_Relation_Schema.class.php:691 #: libraries/schema/Svg_Relation_Schema.class.php:727 -#: libraries/schema/Visio_Relation_Schema.class.php:496 +#: libraries/schema/Visio_Relation_Schema.class.php:495 #, php-format msgid "Schema of the %s database - Page %s" msgstr "資料庫 %s 的大綱 - 第 %s 頁" @@ -7440,121 +7440,121 @@ msgstr "此頁沒有包含任何資料表!" msgid "SCHEMA ERROR: " msgstr "大綱錯誤: " -#: libraries/schema/Pdf_Relation_Schema.class.php:705 -#: libraries/schema/Pdf_Relation_Schema.class.php:936 +#: libraries/schema/Pdf_Relation_Schema.class.php:709 +#: libraries/schema/Pdf_Relation_Schema.class.php:940 msgid "Relational schema" msgstr "關聯大綱" -#: libraries/schema/Pdf_Relation_Schema.class.php:911 +#: libraries/schema/Pdf_Relation_Schema.class.php:915 msgid "Table of contents" msgstr "目錄" -#: libraries/schema/Pdf_Relation_Schema.class.php:1060 -#: libraries/schema/Pdf_Relation_Schema.class.php:1081 +#: libraries/schema/Pdf_Relation_Schema.class.php:1064 +#: libraries/schema/Pdf_Relation_Schema.class.php:1085 #: libraries/tbl_properties.inc.php:111 tbl_printview.php:138 #: tbl_structure.php:205 msgid "Attributes" msgstr "屬性" -#: libraries/schema/Pdf_Relation_Schema.class.php:1063 -#: libraries/schema/Pdf_Relation_Schema.class.php:1084 tbl_printview.php:141 +#: libraries/schema/Pdf_Relation_Schema.class.php:1067 +#: libraries/schema/Pdf_Relation_Schema.class.php:1088 tbl_printview.php:141 #: tbl_structure.php:208 tbl_tracking.php:262 msgid "Extra" msgstr "額外" -#: libraries/schema/User_Schema.class.php:89 +#: libraries/schema/User_Schema.class.php:110 msgid "Create a page" msgstr "建立新頁" -#: libraries/schema/User_Schema.class.php:95 +#: libraries/schema/User_Schema.class.php:116 msgid "Page name" msgstr "頁面名稱" -#: libraries/schema/User_Schema.class.php:99 +#: libraries/schema/User_Schema.class.php:120 msgid "Automatic layout based on" msgstr "自動排版,基於" -#: libraries/schema/User_Schema.class.php:102 +#: libraries/schema/User_Schema.class.php:123 msgid "Internal relations" msgstr "行內" -#: libraries/schema/User_Schema.class.php:112 +#: libraries/schema/User_Schema.class.php:133 msgid "FOREIGN KEY" msgstr "外部鍵" -#: libraries/schema/User_Schema.class.php:144 +#: libraries/schema/User_Schema.class.php:165 msgid "Please choose a page to edit" msgstr "請選擇需要編輯的頁" -#: libraries/schema/User_Schema.class.php:149 +#: libraries/schema/User_Schema.class.php:170 msgid "Select page" msgstr "選擇頁" -#: libraries/schema/User_Schema.class.php:207 +#: libraries/schema/User_Schema.class.php:228 msgid "Select Tables" msgstr "選擇表" -#: libraries/schema/User_Schema.class.php:341 +#: libraries/schema/User_Schema.class.php:362 msgid "Display relational schema" msgstr "顯示關聯大綱" -#: libraries/schema/User_Schema.class.php:351 +#: libraries/schema/User_Schema.class.php:372 msgid "Select Export Relational Type" msgstr "選擇匯出關聯類型" -#: libraries/schema/User_Schema.class.php:372 +#: libraries/schema/User_Schema.class.php:393 msgid "Show grid" msgstr "顯示網格" -#: libraries/schema/User_Schema.class.php:374 +#: libraries/schema/User_Schema.class.php:395 msgid "Show color" msgstr "顯示顏色" -#: libraries/schema/User_Schema.class.php:376 +#: libraries/schema/User_Schema.class.php:397 msgid "Show dimension of tables" msgstr "顯示資料表格大小" -#: libraries/schema/User_Schema.class.php:379 +#: libraries/schema/User_Schema.class.php:400 msgid "Display all tables with the same width" msgstr "以相同寬度顯示所有的表" -#: libraries/schema/User_Schema.class.php:384 +#: libraries/schema/User_Schema.class.php:405 msgid "Only show keys" msgstr "僅顯示鍵" -#: libraries/schema/User_Schema.class.php:386 +#: libraries/schema/User_Schema.class.php:407 msgid "Landscape" msgstr "橫向" -#: libraries/schema/User_Schema.class.php:387 +#: libraries/schema/User_Schema.class.php:408 msgid "Portrait" msgstr "縱向" -#: libraries/schema/User_Schema.class.php:389 +#: libraries/schema/User_Schema.class.php:410 msgid "Orientation" msgstr "方向" -#: libraries/schema/User_Schema.class.php:402 +#: libraries/schema/User_Schema.class.php:423 msgid "Paper size" msgstr "紙張大小" -#: libraries/schema/User_Schema.class.php:439 +#: libraries/schema/User_Schema.class.php:461 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:464 +#: libraries/schema/User_Schema.class.php:486 msgid "Toggle scratchboard" msgstr "切換草稿板" #. l10n: Text direction, use either ltr or rtl -#: libraries/select_lang.lib.php:471 +#: libraries/select_lang.lib.php:476 msgid "ltr" msgstr "ltr" -#: libraries/select_lang.lib.php:488 libraries/select_lang.lib.php:494 -#: libraries/select_lang.lib.php:500 +#: libraries/select_lang.lib.php:493 libraries/select_lang.lib.php:499 +#: libraries/select_lang.lib.php:505 #, php-format msgid "Unknown language: %1$s." msgstr "未知的語言:%1$s." @@ -7627,11 +7627,11 @@ msgstr "清除" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:302 sql.php:916 sql.php:933 +#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 msgid "Bookmark this SQL query" msgstr "將此 SQL 查詢加爲書籤" -#: libraries/sql_query_form.lib.php:309 sql.php:927 +#: libraries/sql_query_form.lib.php:309 sql.php:955 msgid "Let every user access this bookmark" msgstr "讓所有使用者均可訪問此書籤" @@ -8028,7 +8028,7 @@ msgstr "協定版本" #: main.php:165 server_privileges.php:1539 server_privileges.php:1693 #: server_privileges.php:1817 server_privileges.php:2236 -#: server_status.php:1115 +#: server_status.php:1116 msgid "User" msgstr "使用者" @@ -8230,7 +8230,7 @@ msgstr "全部收縮/展開" msgid "Toggle small/big" msgstr "反向收縮/展開" -#: pmd_general.php:114 pmd_pdf.php:80 +#: pmd_general.php:114 pmd_pdf.php:76 msgid "Import/Export coordinates for PDF schema" msgstr "爲 PDF 大綱匯入/匯出座標" @@ -8301,39 +8301,39 @@ msgstr "" "顯示的欄位爲粉紅色。要設定/取消顯示的欄位,點選“選擇顯示欄位”圖示,然後選擇需" "要的欄位名稱" -#: pmd_pdf.php:34 +#: pmd_pdf.php:30 msgid "Page has been created" msgstr "已建立頁面" -#: pmd_pdf.php:37 +#: pmd_pdf.php:33 msgid "Page creation failed" msgstr "頁面建立失敗" -#: pmd_pdf.php:89 +#: pmd_pdf.php:85 msgid "Page" msgstr "頁面" -#: pmd_pdf.php:99 +#: pmd_pdf.php:95 msgid "Import from selected page" msgstr "從所選頁匯入" -#: pmd_pdf.php:100 +#: pmd_pdf.php:96 msgid "Export to selected page" msgstr "匯出至所選頁" -#: pmd_pdf.php:102 +#: pmd_pdf.php:98 msgid "Create a page and export to it" msgstr "匯出至新頁" -#: pmd_pdf.php:111 +#: pmd_pdf.php:107 msgid "New page name: " msgstr "新頁面名: " -#: pmd_pdf.php:114 +#: pmd_pdf.php:110 msgid "Export/Import to scale" msgstr "按比例匯出/匯入" -#: pmd_pdf.php:119 +#: pmd_pdf.php:115 msgid "recommended" msgstr "推薦" @@ -8440,12 +8440,12 @@ msgstr "匯入檔案" msgid "All" msgstr "全部" -#: schema_edit.php:45 schema_edit.php:51 schema_edit.php:57 schema_edit.php:62 +#: schema_edit.php:38 schema_edit.php:44 schema_edit.php:50 schema_edit.php:55 #, php-format msgid "%s table not found or not set in %s" msgstr "找不到 %s 表或還未在 %s 設定" -#: schema_export.php:47 +#: schema_export.php:39 msgid "File doesn't exist" msgstr "檔案不存在" @@ -8457,13 +8457,13 @@ msgstr "選擇要查看的二進制日誌" msgid "Files" msgstr "檔案" -#: server_binlog.php:150 server_binlog.php:152 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:150 server_binlog.php:152 server_status.php:1126 +#: server_status.php:1128 msgid "Truncate Shown Queries" msgstr "截斷顯示的查詢" -#: server_binlog.php:158 server_binlog.php:160 server_status.php:1125 -#: server_status.php:1127 +#: server_binlog.php:158 server_binlog.php:160 server_status.php:1126 +#: server_status.php:1128 msgid "Show Full Queries" msgstr "顯示完整查詢" @@ -9276,8 +9276,8 @@ msgstr "" msgid "Questions since startup: %s" msgstr "自訂起始頁" -#: server_status.php:842 server_status.php:877 server_status.php:995 -#: server_status.php:1040 +#: server_status.php:842 server_status.php:878 server_status.php:996 +#: server_status.php:1041 msgid "per hour" msgstr "每小時" @@ -9298,32 +9298,32 @@ msgstr "說明" msgid "#" msgstr "" -#: server_status.php:943 +#: server_status.php:944 #, php-format msgid "Network traffic since startup: %s" msgstr "" -#: server_status.php:951 +#: server_status.php:952 #, 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:961 +#: server_status.php:962 msgid "" "This MySQL server works as master and slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:963 +#: server_status.php:964 msgid "This MySQL server works as master in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:965 +#: server_status.php:966 msgid "This MySQL server works as slave in replication process." msgstr "此 MySQL 伺服器正以伺服器運行於複製程序中" -#: server_status.php:968 +#: server_status.php:969 msgid "" "For further information about replication status on the server, please visit " "the replication section." @@ -9331,11 +9331,11 @@ msgstr "" "要取得更多關於此伺服器的複製狀態,請查看複製狀態資訊" "" -#: server_status.php:978 +#: server_status.php:979 msgid "Replication status" msgstr "複製狀態" -#: server_status.php:994 +#: server_status.php:995 msgid "" "On a busy server, the byte counters may overrun, so those statistics as " "reported by the MySQL server may be incorrect." @@ -9343,47 +9343,47 @@ msgstr "" "在高負載的伺服器上,字元計數器可能會溢出,因此由 MySQL 返回的統計值可能會不正" "確" -#: server_status.php:1000 +#: server_status.php:1001 msgid "Received" msgstr "已接收" -#: server_status.php:1010 +#: server_status.php:1011 msgid "Sent" msgstr "已發送" -#: server_status.php:1046 +#: server_status.php:1047 msgid "max. concurrent connections" msgstr "最大同時連線數" -#: server_status.php:1053 +#: server_status.php:1054 msgid "Failed attempts" msgstr "已失敗" -#: server_status.php:1067 +#: server_status.php:1068 msgid "Aborted" msgstr "已取消" -#: server_status.php:1114 +#: server_status.php:1115 msgid "ID" msgstr "ID" -#: server_status.php:1118 +#: server_status.php:1119 msgid "Command" msgstr "命令" -#: server_status.php:1188 +#: server_status.php:1189 msgid "" "The number of connections that were aborted because the client died without " "closing the connection properly." msgstr "" -#: server_status.php:1189 +#: server_status.php:1190 #, 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:1190 +#: server_status.php:1191 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 " @@ -9392,16 +9392,16 @@ msgstr "" "因交易使用的臨時二進制日誌快取超出 binlog_cache_size 的設定而使用臨時檔案儲存" "的數量" -#: server_status.php:1191 +#: server_status.php:1192 msgid "The number of transactions that used the temporary binary log cache." msgstr "交易所用的臨時二進制日誌快取的數量" -#: server_status.php:1192 +#: server_status.php:1193 msgid "" "The number of connection attempts (successful or not) to the MySQL server." msgstr "" -#: server_status.php:1193 +#: server_status.php:1194 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 " @@ -9411,46 +9411,46 @@ msgstr "" "伺服器執行指令時自動在硬碟上建立的臨時表的數量。如果 Created_tmp_disk_tables " "很大,您可以增加 tmp_table_size 的值,讓伺服器使用記憶體來儲存臨時表而非硬碟" -#: server_status.php:1194 +#: server_status.php:1195 msgid "How many temporary files mysqld has created." msgstr "mysqld 已建立的臨時檔案的數量" -#: server_status.php:1195 +#: server_status.php:1196 msgid "" "The number of in-memory temporary tables created automatically by the server " "while executing statements." msgstr "伺服器執行指令時自動在記憶體中建立的臨時表的數量" -#: server_status.php:1196 +#: server_status.php:1197 msgid "" "The number of rows written with INSERT DELAYED for which some error occurred " "(probably duplicate key)." msgstr "" "發生錯誤的延遲插入 (INSERT DELAYED) 行數 (可能是因爲在唯一欄位中存在重複值) " -#: server_status.php:1197 +#: server_status.php:1198 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:1198 +#: server_status.php:1199 msgid "The number of INSERT DELAYED rows written." msgstr "延遲插入已寫入的行數" -#: server_status.php:1199 +#: server_status.php:1200 msgid "The number of executed FLUSH statements." msgstr "已執行的強制更新 (FLUSH) 指令數" -#: server_status.php:1200 +#: server_status.php:1201 msgid "The number of internal COMMIT statements." msgstr "已執行的內部送出 (COMMIT) 指令數" -#: server_status.php:1201 +#: server_status.php:1202 msgid "The number of times a row was deleted from a table." msgstr "從資料表中刪除行的次數" -#: server_status.php:1202 +#: server_status.php:1203 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 " @@ -9459,7 +9459,7 @@ msgstr "" "如果知道一個資料表的名字,MySQL 伺服器可以詢問 NDB 集羣儲存引擎,這被稱爲“發" "現”Handler_discovery 表明瞭一個資料表被發現的次數" -#: server_status.php:1203 +#: server_status.php:1204 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, " @@ -9468,14 +9468,14 @@ msgstr "" "讀取一個索引入口點的次數。如果該值很大,說明您的伺服器執行了很多完整索引掃" "描。例如,假設欄位 col1 已經建立了索引,然後執行 SELECT col1 FROM foo " -#: server_status.php:1204 +#: server_status.php:1205 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:1205 +#: server_status.php:1206 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 " @@ -9484,7 +9484,7 @@ msgstr "" "根據索引順序讀取下一行的請求數。如果您在查詢一個已索引的欄位且限制了範圍,或" "進行完整表掃描,該值將會不斷增長" -#: server_status.php:1206 +#: server_status.php:1207 msgid "" "The number of requests to read the previous row in key order. This read " "method is mainly used to optimize ORDER BY ... DESC." @@ -9492,7 +9492,7 @@ msgstr "" "根據索引順序讀取上一行的請求數。這種讀取方式通常用於最佳化帶有 ORDER BY ... " "DESC 的查詢" -#: server_status.php:1207 +#: server_status.php:1208 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 " @@ -9502,7 +9502,7 @@ msgstr "" "根據固定位置讀取行的請求數。如果您執行很多需要排序的查詢,該值會很高。您可能" "有很多需要完整表掃描的查詢,或者您使用了不正確的索引用來多表查詢" -#: server_status.php:1208 +#: server_status.php:1209 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 " @@ -9512,35 +9512,35 @@ msgstr "" "從資料檔案中讀取行的請求數。如果您在掃描很多表,該值會很大。通常情況下這意味" "着您的表沒有做好索引,或者您的查詢指令沒有使用好索引欄位" -#: server_status.php:1209 +#: server_status.php:1210 msgid "The number of internal ROLLBACK statements." msgstr "內部回滾 (ROLLBACK) 指令數" -#: server_status.php:1210 +#: server_status.php:1211 msgid "The number of requests to update a row in a table." msgstr "資料表中更新行的請求數" -#: server_status.php:1211 +#: server_status.php:1212 msgid "The number of requests to insert a row in a table." msgstr "資料表中插入行的請求數" -#: server_status.php:1212 +#: server_status.php:1213 msgid "The number of pages containing data (dirty or clean)." msgstr "非空頁數 (含髒頁) " -#: server_status.php:1213 +#: server_status.php:1214 msgid "The number of pages currently dirty." msgstr "目前髒頁數" -#: server_status.php:1214 +#: server_status.php:1215 msgid "The number of buffer pool pages that have been requested to be flushed." msgstr "請求更新的快取池頁數" -#: server_status.php:1215 +#: server_status.php:1216 msgid "The number of free pages." msgstr "空閒頁數" -#: server_status.php:1216 +#: server_status.php:1217 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 " @@ -9549,7 +9549,7 @@ msgstr "" "InnoDB 快取池中鎖定頁的數量。這些頁是正在被讀取或寫入的,或者是因其他原因不能" "被重新整理或刪除的" -#: server_status.php:1217 +#: server_status.php:1218 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 " @@ -9560,11 +9560,11 @@ msgstr "" "公式計算: Innodb_buffer_pool_pages_total - Innodb_buffer_pool_pages_free - " "Innodb_buffer_pool_pages_data " -#: server_status.php:1218 +#: server_status.php:1219 msgid "Total size of buffer pool, in pages." msgstr "快取池總大小 (單位:頁)" -#: server_status.php:1219 +#: server_status.php:1220 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." @@ -9572,23 +9572,23 @@ msgstr "" "InnoDB 原始化的“隨機”預讀數。這通常會在對一個資料表進行大範圍的隨機排序查詢時" "發生" -#: server_status.php:1220 +#: server_status.php:1221 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:1221 +#: server_status.php:1222 msgid "The number of logical read requests InnoDB has done." msgstr "InnoDB 完成的邏輯讀請求數" -#: server_status.php:1222 +#: server_status.php:1223 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:1223 +#: server_status.php:1224 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 " @@ -9600,85 +9600,85 @@ msgstr "" "必要先等待頁被重新整理。該計數器統計了這種等待的數量。如果快取池大小設定正" "確,這個值應該會很小" -#: server_status.php:1224 +#: server_status.php:1225 msgid "The number writes done to the InnoDB buffer pool." msgstr "寫入 InnoDB 快取池的次數" -#: server_status.php:1225 +#: server_status.php:1226 msgid "The number of fsync() operations so far." msgstr "fsync() 總操作的次數" -#: server_status.php:1226 +#: server_status.php:1227 msgid "The current number of pending fsync() operations." msgstr "目前掛起 fsync() 操作的數量" -#: server_status.php:1227 +#: server_status.php:1228 msgid "The current number of pending reads." msgstr "目前掛起的讀操作數" -#: server_status.php:1228 +#: server_status.php:1229 msgid "The current number of pending writes." msgstr "目前掛起的寫操作數" -#: server_status.php:1229 +#: server_status.php:1230 msgid "The amount of data read so far, in bytes." msgstr "讀取的總資料量 (單位:字元)" -#: server_status.php:1230 +#: server_status.php:1231 msgid "The total number of data reads." msgstr "資料讀取總數" -#: server_status.php:1231 +#: server_status.php:1232 msgid "The total number of data writes." msgstr "資料寫入總數" -#: server_status.php:1232 +#: server_status.php:1233 msgid "The amount of data written so far, in bytes." msgstr "寫入的總資料量 (單位:字元)" -#: server_status.php:1233 +#: server_status.php:1234 msgid "The number of pages that have been written for doublewrite operations." msgstr "以雙寫入操作寫入的頁數" -#: server_status.php:1234 +#: server_status.php:1235 msgid "The number of doublewrite operations that have been performed." msgstr "已經執行的雙寫入次數" -#: server_status.php:1235 +#: server_status.php:1236 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:1236 +#: server_status.php:1237 msgid "The number of log write requests." msgstr "日誌寫入請求數" -#: server_status.php:1237 +#: server_status.php:1238 msgid "The number of physical writes to the log file." msgstr "日誌物理寫入次數" -#: server_status.php:1238 +#: server_status.php:1239 msgid "The number of fsync() writes done to the log file." msgstr "使用 fsync() 寫入日志檔案的次數" -#: server_status.php:1239 +#: server_status.php:1240 msgid "The number of pending log file fsyncs." msgstr "目前掛起的 fsync 日志檔案數" -#: server_status.php:1240 +#: server_status.php:1241 msgid "Pending log file writes." msgstr "目前掛起的日誌寫入數" -#: server_status.php:1241 +#: server_status.php:1242 msgid "The number of bytes written to the log file." msgstr "寫入日志檔案的字元數" -#: server_status.php:1242 +#: server_status.php:1243 msgid "The number of pages created." msgstr "建立的頁數" -#: server_status.php:1243 +#: server_status.php:1244 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." @@ -9686,75 +9686,75 @@ msgstr "" "編譯的 InnoDB 頁大小 (預設 16KB)。許多值都以頁爲單位進行統計,頁大小可以很方" "便地將這些值轉化爲字元數" -#: server_status.php:1244 +#: server_status.php:1245 msgid "The number of pages read." msgstr "讀取的頁數" -#: server_status.php:1245 +#: server_status.php:1246 msgid "The number of pages written." msgstr "寫入的頁數" -#: server_status.php:1246 +#: server_status.php:1247 msgid "The number of row locks currently being waited for." msgstr "正在等待行鎖的數量" -#: server_status.php:1247 +#: server_status.php:1248 msgid "The average time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的平均時間 (單位:毫秒)" -#: server_status.php:1248 +#: server_status.php:1249 msgid "The total time spent in acquiring row locks, in milliseconds." msgstr "等待取得行鎖的總時間 (單位:毫秒)" -#: server_status.php:1249 +#: server_status.php:1250 msgid "The maximum time to acquire a row lock, in milliseconds." msgstr "等待取得行鎖的最大時間 (單位:毫秒)" -#: server_status.php:1250 +#: server_status.php:1251 msgid "The number of times a row lock had to be waited for." msgstr "等待行鎖的次數" -#: server_status.php:1251 +#: server_status.php:1252 msgid "The number of rows deleted from InnoDB tables." msgstr "從 InnoDB 資料表中刪除的行數" -#: server_status.php:1252 +#: server_status.php:1253 msgid "The number of rows inserted in InnoDB tables." msgstr "插入到 InnoDB 資料表中的行數" -#: server_status.php:1253 +#: server_status.php:1254 msgid "The number of rows read from InnoDB tables." msgstr "從 InnoDB 資料表中讀取的行數" -#: server_status.php:1254 +#: server_status.php:1255 msgid "The number of rows updated in InnoDB tables." msgstr "InnoDB 中更新的行數" -#: server_status.php:1255 +#: server_status.php:1256 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:1256 +#: server_status.php:1257 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:1257 +#: server_status.php:1258 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:1258 +#: server_status.php:1259 msgid "The number of requests to read a key block from the cache." msgstr "從快取中讀取鍵塊的請求次數" -#: server_status.php:1259 +#: server_status.php:1260 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 " @@ -9763,15 +9763,15 @@ msgstr "" "從硬碟中物理讀取鍵塊的次數。如果 Key_reads 很大,則說明您的 key_buffer_size " "可能設定得太小了。快取缺失率可以由 Key_reads/Key_read_requests 計算得出" -#: server_status.php:1260 +#: server_status.php:1261 msgid "The number of requests to write a key block to the cache." msgstr "將一個鍵塊寫入快取的請求數" -#: server_status.php:1261 +#: server_status.php:1262 msgid "The number of physical writes of a key block to disk." msgstr "將鍵塊物理寫入到硬碟的次數" -#: server_status.php:1262 +#: server_status.php:1263 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 " @@ -9780,54 +9780,54 @@ msgstr "" "最後編譯的查詢的總開銷由查詢最佳化器計算得出,可用於比較使用不同的查詢指令進" "行相同的查詢時的效率差異。預設值0表示還沒有查詢被編譯" -#: server_status.php:1263 +#: server_status.php:1264 msgid "" "The maximum number of connections that have been in use simultaneously since " "the server started." msgstr "" -#: server_status.php:1264 +#: server_status.php:1265 msgid "The number of rows waiting to be written in INSERT DELAYED queues." msgstr "等待寫入延遲插入隊列的行數" -#: server_status.php:1265 +#: server_status.php:1266 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:1266 +#: server_status.php:1267 msgid "The number of files that are open." msgstr "開啟的檔案個數" -#: server_status.php:1267 +#: server_status.php:1268 msgid "The number of streams that are open (used mainly for logging)." msgstr "開啟的流個數 (主要用於日誌記錄)" -#: server_status.php:1268 +#: server_status.php:1269 msgid "The number of tables that are open." msgstr "開啟的資料表個數" -#: server_status.php:1269 +#: server_status.php:1270 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:1270 +#: server_status.php:1271 msgid "The amount of free memory for query cache." msgstr "查詢快取中空閒的記憶體總數" -#: server_status.php:1271 +#: server_status.php:1272 msgid "The number of cache hits." msgstr "快取命中數" -#: server_status.php:1272 +#: server_status.php:1273 msgid "The number of queries added to the cache." msgstr "加入到快取的查詢數" -#: server_status.php:1273 +#: server_status.php:1274 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 " @@ -9837,7 +9837,7 @@ msgstr "" "爲快取新的查詢而被刪除的已快取查詢的個數,由最近最少使用算法 (LRU) 確定應刪除" "哪個已快取的查詢。該資訊可幫助您調整查詢快取大小" -#: server_status.php:1274 +#: server_status.php:1275 msgid "" "The number of non-cached queries (not cachable, or not cached due to the " "query_cache_type setting)." @@ -9845,19 +9845,19 @@ msgstr "" "未快取的查詢數 (包括不能被快取,或因爲 query_cache_type 的設定而沒有被快取的" "查詢)" -#: server_status.php:1275 +#: server_status.php:1276 msgid "The number of queries registered in the cache." msgstr "在快取中註冊的查詢數" -#: server_status.php:1276 +#: server_status.php:1277 msgid "The total number of blocks in the query cache." msgstr "查詢快取中的總塊數" -#: server_status.php:1277 +#: server_status.php:1278 msgid "The status of failsafe replication (not yet implemented)." msgstr "失敗保護器的狀態 (尚未套用)" -#: server_status.php:1278 +#: server_status.php:1279 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." @@ -9865,11 +9865,11 @@ msgstr "" "沒有使用索引的多表查詢數。如果該值不爲0,您應該仔細檢查是否已經爲表建立了適當" "的索引" -#: server_status.php:1279 +#: server_status.php:1280 msgid "The number of joins that used a range search on a reference table." msgstr "使用在關聯表上使用範圍搜尋的多表查詢的數量" -#: server_status.php:1280 +#: server_status.php:1281 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.)" @@ -9877,7 +9877,7 @@ msgstr "" "沒有使用索引但在每行之後檢查索引使用的多表查詢數。(如果該值不爲 0,您應該仔細" "檢查是否已經爲表建立了適當的索引。)" -#: server_status.php:1281 +#: server_status.php:1282 msgid "" "The number of joins that used ranges on the first table. (It's normally not " "critical even if this is big.)" @@ -9885,36 +9885,36 @@ msgstr "" "在第一個資料表上使用範圍查詢的多表查詢數。(即使該值很大,通常也不會有致命的影" "響。)" -#: server_status.php:1282 +#: server_status.php:1283 msgid "The number of joins that did a full scan of the first table." msgstr "在第一個資料表上進行了完整表掃描的多表查詢數" -#: server_status.php:1283 +#: server_status.php:1284 msgid "The number of temporary tables currently open by the slave SQL thread." msgstr "目前由從 SQL 程序開啟的臨時表的數量" -#: server_status.php:1284 +#: server_status.php:1285 msgid "" "Total (since startup) number of times the replication slave SQL thread has " "retried transactions." msgstr "從 SQL 程序總共重試交易複製數" -#: server_status.php:1285 +#: server_status.php:1286 msgid "This is ON if this server is a slave that is connected to a master." msgstr "如果該值爲 ON,則這臺伺服器是一臺已經連線到主伺服器的從伺服器" -#: server_status.php:1286 +#: server_status.php:1287 msgid "" "The number of threads that have taken more than slow_launch_time seconds to " "create." msgstr "使用了比 slow_launch_time 更多的時間來啓動的程序數量" -#: server_status.php:1287 +#: server_status.php:1288 msgid "" "The number of queries that have taken more than long_query_time seconds." msgstr "使用了比 long_query_time 更多時間的查詢數" -#: server_status.php:1288 +#: server_status.php:1289 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 " @@ -9923,23 +9923,23 @@ msgstr "" "排序算法使用歸併的次數。如果該值很大,您應該考慮增加系統變數 " "sort_buffer_size 的值" -#: server_status.php:1289 +#: server_status.php:1290 msgid "The number of sorts that were done with ranges." msgstr "局部範圍完成的排序次數" -#: server_status.php:1290 +#: server_status.php:1291 msgid "The number of sorted rows." msgstr "排序的行數" -#: server_status.php:1291 +#: server_status.php:1292 msgid "The number of sorts that were done by scanning the table." msgstr "掃描表完成的排序次數" -#: server_status.php:1292 +#: server_status.php:1293 msgid "The number of times that a table lock was acquired immediately." msgstr "立即需要鎖定表的次數" -#: server_status.php:1293 +#: server_status.php:1294 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 " @@ -9949,7 +9949,7 @@ msgstr "" "無法立即取得鎖定表而必須等待的次數。如果該值很高,且您遇到了性能方面的問題," "則應該首先檢查您的查詢指令,然後使用複製操作來分開表" -#: server_status.php:1294 +#: server_status.php:1295 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 " @@ -9958,11 +9958,11 @@ msgstr "" "程序快取中程序的數量。快取命中率可以由 Threads_created/Connections 計算得出如" "果該值是紅色的,則應該增加 thread_cache_size 的值" -#: server_status.php:1295 +#: server_status.php:1296 msgid "The number of currently open connections." msgstr "目前開啟的連線數" -#: server_status.php:1296 +#: server_status.php:1297 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 " @@ -9972,69 +9972,69 @@ msgstr "" "目前用於控制連線的程序數。如果 Threads_created 很大,您可能需要增加 " "thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" -#: server_status.php:1297 +#: server_status.php:1298 msgid "The number of threads that are not sleeping." msgstr "非睡眠狀態的程序數量" -#: server_status.php:1437 +#: server_status.php:1438 #, fuzzy #| msgid "Textarea rows" msgid "Start Monitor" msgstr "文字框行" -#: server_status.php:1445 +#: server_status.php:1446 msgid "Instructions/Setup" msgstr "" -#: server_status.php:1449 +#: server_status.php:1450 msgid "Done rearranging/editing charts" msgstr "" -#: server_status.php:1456 +#: server_status.php:1457 #, fuzzy #| msgid "Add index" msgid "Add chart" msgstr "新增索引" -#: server_status.php:1458 +#: server_status.php:1459 msgid "Rearrange/edit charts" msgstr "" -#: server_status.php:1462 +#: server_status.php:1463 #, fuzzy msgid "Refresh rate" msgstr "重新整理" -#: server_status.php:1467 +#: server_status.php:1468 #, fuzzy #| msgid "Textarea columns" msgid "Chart columns" msgstr "文本框列" -#: server_status.php:1483 +#: server_status.php:1484 #, fuzzy #| msgid "Error management:" msgid "Chart arrangement" msgstr "錯誤管理:" -#: server_status.php:1483 +#: server_status.php:1484 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:1484 +#: server_status.php:1485 #, fuzzy #| msgid "Restore default value" msgid "Reset to default" msgstr "還原預設值" -#: server_status.php:1488 +#: server_status.php:1489 #, fuzzy msgid "Monitor Instructions" msgstr "資料" -#: server_status.php:1489 +#: server_status.php:1490 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 " @@ -10043,7 +10043,7 @@ msgid "" "increases server load by up to 15%" msgstr "" -#: server_status.php:1494 +#: server_status.php:1495 msgid "" "Unfortunately your Database server does not support logging to table, which " "is a requirement for analyzing the database logs with phpMyAdmin. Logging to " @@ -10051,11 +10051,11 @@ msgid "" "charting features however." msgstr "" -#: server_status.php:1507 +#: server_status.php:1508 msgid "Using the monitor:" msgstr "" -#: server_status.php:1509 +#: server_status.php:1510 msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10063,7 +10063,7 @@ msgid "" "icon on each respective chart." msgstr "" -#: server_status.php:1511 +#: server_status.php:1512 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 " @@ -10071,11 +10071,11 @@ msgid "" "any occuring SELECT statements to further analyze them." msgstr "" -#: server_status.php:1518 +#: server_status.php:1519 msgid "Please note:" msgstr "" -#: server_status.php:1520 +#: server_status.php:1521 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 " @@ -10627,12 +10627,12 @@ msgstr "顯示 SQL 查詢" msgid "Validated SQL" msgstr "已校驗的 SQL" -#: sql.php:890 +#: sql.php:918 #, php-format msgid "Problems with indexes of table `%s`" msgstr "資料表 `%s` 的索引存在問題" -#: sql.php:921 +#: sql.php:949 msgid "Label" msgstr "標籤" From 5cd731b232b3e7d4aa9d3d2cc6c276e52e6459f0 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 19:33:09 +0200 Subject: [PATCH 114/442] Make this usage of $sql_backquotes less cryptic --- libraries/Tracker.class.php | 2 -- libraries/export/sql.php | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/libraries/Tracker.class.php b/libraries/Tracker.class.php index 5d24b78b3d..776b9b4c40 100644 --- a/libraries/Tracker.class.php +++ b/libraries/Tracker.class.php @@ -387,8 +387,6 @@ class PMA_Tracker */ static public function createDatabaseVersion($dbname, $version, $query, $tracking_set = 'CREATE DATABASE,ALTER DATABASE,DROP DATABASE') { - global $sql_backquotes; - $date = date('Y-m-d H:i:s'); if ($tracking_set == '') { diff --git a/libraries/export/sql.php b/libraries/export/sql.php index a561bb66e5..40efc2b7b6 100644 --- a/libraries/export/sql.php +++ b/libraries/export/sql.php @@ -297,8 +297,8 @@ if (isset($plugin_list)) { /** * Avoids undefined variables, use NULL so isset() returns false */ - if (! isset($sql_backquotes)) { - $sql_backquotes = null; + if (! isset($GLOBALS['sql_backquotes'])) { + $GLOBALS['sql_backquotes'] = null; } /** From 11465727162f945c331f8fa4d7a13dc2c466024e Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 19:53:11 +0200 Subject: [PATCH 115/442] Use PMA_DBI_get_columns in Tracker code --- libraries/Tracker.class.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libraries/Tracker.class.php b/libraries/Tracker.class.php index 776b9b4c40..bb106a9556 100644 --- a/libraries/Tracker.class.php +++ b/libraries/Tracker.class.php @@ -273,13 +273,13 @@ class PMA_Tracker $date = date('Y-m-d H:i:s'); // Get data definition snapshot of table - $sql_query = ' - SHOW FULL COLUMNS FROM ' . PMA_backquote($dbname) . '.' . PMA_backquote($tablename); - $sql_result = PMA_DBI_query($sql_query); - - while ($row = PMA_DBI_fetch_array($sql_result)) { - $columns[] = $row; + $columns = PMA_DBI_get_columns($dbname, $tablename, true); + // int indices to reduce size + $columns = array_values($columns); + // remove Privileges to reduce size + for ($i = 0; $i < count($columns); $i++) { + unset($columns[$i]['Privileges']); } $sql_query = ' From 71184688b507f04bc3b5e521cb8d710de682b633 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 19:57:23 +0200 Subject: [PATCH 116/442] We need only associative array here --- libraries/Tracker.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Tracker.class.php b/libraries/Tracker.class.php index bb106a9556..8a622aae69 100644 --- a/libraries/Tracker.class.php +++ b/libraries/Tracker.class.php @@ -289,7 +289,7 @@ class PMA_Tracker $indexes = array(); - while($row = PMA_DBI_fetch_array($sql_result)) { + while($row = PMA_DBI_fetch_assoc($sql_result)) { $indexes[] = $row; } From 701c957f40696a17c1ee5d3804ffb21d6674090e Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 20:23:15 +0200 Subject: [PATCH 117/442] Inline three one-line methods --- libraries/Tracker.class.php | 39 +++---------------------------------- 1 file changed, 3 insertions(+), 36 deletions(-) diff --git a/libraries/Tracker.class.php b/libraries/Tracker.class.php index 8a622aae69..e89c3fce92 100644 --- a/libraries/Tracker.class.php +++ b/libraries/Tracker.class.php @@ -130,39 +130,6 @@ class PMA_Tracker } } - /** - * Returns a simple DROP TABLE statement. - * - * @param string $tablename - * @return string - */ - static public function getStatementDropTable($tablename) - { - return 'DROP TABLE IF EXISTS ' . $tablename; - } - - /** - * Returns a simple DROP VIEW statement. - * - * @param string $viewname - * @return string - */ - static public function getStatementDropView($viewname) - { - return 'DROP VIEW IF EXISTS ' . $viewname; - } - - /** - * Returns a simple DROP DATABASE statement. - * - * @param string $dbname - * @return string - */ - static public function getStatementDropDatabase($dbname) - { - return 'DROP DATABASE IF EXISTS ' . $dbname; - } - /** * Parses the name of a table from a SQL statement substring. * @@ -303,13 +270,13 @@ class PMA_Tracker if (self::$add_drop_table == true && $is_view == false) { $create_sql .= self::getLogComment() . - self::getStatementDropTable(PMA_backquote($tablename)) . ";\n"; + 'DROP TABLE IF EXISTS ' . PMA_backquote($tablename) . ";\n"; } if (self::$add_drop_view == true && $is_view == true) { $create_sql .= self::getLogComment() . - self::getStatementDropView(PMA_backquote($tablename)) . ";\n"; + 'DROP VIEW IF EXISTS ' . PMA_backquote($tablename) . ";\n"; } $create_sql .= self::getLogComment() . @@ -399,7 +366,7 @@ class PMA_Tracker if (self::$add_drop_database == true) { $create_sql .= self::getLogComment() . - self::getStatementDropDatabase(PMA_backquote($dbname)) . ";\n"; + 'DROP DATABASE IF EXISTS ' . PMA_backquote($dbname) . ";\n"; } $create_sql .= self::getLogComment() . $query; From 215abb745533077bb139784a183562fa103118e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:12:29 +0200 Subject: [PATCH 118/442] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index ba4b090bec..e150afe831 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 00:04+0200\n" +"PO-Revision-Date: 2011-08-16 21:12+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -10509,10 +10509,9 @@ msgstr "" "una vez que ya no se necesite monitorizar. " #: server_status.php:1533 -#, fuzzy #| msgid "Remove chart" msgid "Preset chart" -msgstr "Eliminar gráfico" +msgstr "Gráfico predefinido" #: server_status.php:1537 msgid "Status variable(s)" From 3f5e17f17e71a01b62d9b9537c67092257a94d79 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:13:09 +0200 Subject: [PATCH 119/442] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e150afe831..36450b0b08 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:12+0200\n" +"PO-Revision-Date: 2011-08-16 21:13+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11925,6 +11925,8 @@ msgid "" "It is suggested to set {long_query_time} to a lower value, depending on your " "environment. Usually a value of 1-5 seconds is suggested." msgstr "" +"Se sugiere configurar «long_query_time» a un valor menor dependiendo de su " +"entorno. Usualmente, un valor entre 1 y 5 segundos es el sugerido." #: po/advisory_rules.php:28 #, fuzzy, php-format From 1ab07c7f31b3a1088b2f3e13a9287adde8ef9d53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:13:21 +0200 Subject: [PATCH 120/442] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 36450b0b08..fbc951e0ab 100644 --- a/po/es.po +++ b/po/es.po @@ -11929,10 +11929,10 @@ msgstr "" "entorno. Usualmente, un valor entre 1 y 5 segundos es el sugerido." #: po/advisory_rules.php:28 -#, fuzzy, php-format +#, 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á configurado a %d segundo(s)." +msgstr "«long_query_time» está configurado a %ds." #: po/advisory_rules.php:30 #, fuzzy From 77be9ff388f57200bf4fd3f777cbfc46e8bcae41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:13:29 +0200 Subject: [PATCH 121/442] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index fbc951e0ab..abdc8063b7 100644 --- a/po/es.po +++ b/po/es.po @@ -11935,10 +11935,9 @@ msgid "long_query_time is currently set to %ds." msgstr "«long_query_time» está configurado a %ds." #: po/advisory_rules.php:30 -#, fuzzy #| msgid "Show query box" msgid "Slow query logging" -msgstr "Mostrar ventana de consultas SQL" +msgstr "Registros de consultas lentas" #: po/advisory_rules.php:31 #, fuzzy From 9ea5e92291ff08824ea02a10c6ebbbf7b48e705e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:13:41 +0200 Subject: [PATCH 122/442] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index abdc8063b7..6928dd7953 100644 --- a/po/es.po +++ b/po/es.po @@ -11940,10 +11940,9 @@ msgid "Slow query logging" msgstr "Registros de consultas lentas" #: po/advisory_rules.php:31 -#, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." -msgstr "«slow_query_log» activo." +msgstr "«slow_query_log» está desactivado." #: po/advisory_rules.php:32 msgid "" From 1cdd8f3c2f5c82e880a943c56e79701078278d63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:14:30 +0200 Subject: [PATCH 123/442] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 6928dd7953..b7e80fbb3a 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:13+0200\n" +"PO-Revision-Date: 2011-08-16 21:14+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11949,6 +11949,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." #: po/advisory_rules.php:33 msgid "log_slow_queries is set to 'OFF'" From 3119ec828930cc172882a19d5e5f835dfb36c936 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:15:02 +0200 Subject: [PATCH 124/442] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index b7e80fbb3a..a5432f9d90 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:14+0200\n" +"PO-Revision-Date: 2011-08-16 21:15+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11954,7 +11954,7 @@ msgstr "" #: po/advisory_rules.php:33 msgid "log_slow_queries is set to 'OFF'" -msgstr "" +msgstr "«slow_query_log» está definido como 'OFF'" #: po/advisory_rules.php:35 #, fuzzy From 32cb70b8d99d39b3c7d5c5ff3b666081aec22979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:15:14 +0200 Subject: [PATCH 125/442] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index a5432f9d90..12a8beb277 100644 --- a/po/es.po +++ b/po/es.po @@ -11942,7 +11942,7 @@ msgstr "Registros de consultas lentas" #: po/advisory_rules.php:31 #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." -msgstr "«slow_query_log» está desactivado." +msgstr "El registro de consultas lentas está desactivado." #: po/advisory_rules.php:32 msgid "" From 8518010c97c5545383e060f121f0fe44a019b77a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:15:51 +0200 Subject: [PATCH 126/442] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 12a8beb277..45506c62f8 100644 --- a/po/es.po +++ b/po/es.po @@ -11957,10 +11957,9 @@ msgid "log_slow_queries is set to 'OFF'" msgstr "«slow_query_log» está definido como 'OFF'" #: po/advisory_rules.php:35 -#, fuzzy #| msgid "Clear series" msgid "Release Series" -msgstr "Vaciar serie" +msgstr "Serie de versiones" #: po/advisory_rules.php:36 msgid "The MySQL server version less then 5.1." From 2e75b652e2ffe76ebd75fb2245da7d4ecfe47d54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:16:00 +0200 Subject: [PATCH 127/442] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 45506c62f8..3ae1072bc7 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:15+0200\n" +"PO-Revision-Date: 2011-08-16 21:16+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11963,7 +11963,7 @@ msgstr "Serie de versiones" #: po/advisory_rules.php:36 msgid "The MySQL server version less then 5.1." -msgstr "" +msgstr "La versión del servidor MySQL es menor a 5.1." #: po/advisory_rules.php:37 msgid "" From c6cb5a5996d7413ecdf6e87cdfb91559bc7490c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:16:33 +0200 Subject: [PATCH 128/442] Translation update done using Pootle. --- po/es.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/es.po b/po/es.po index 3ae1072bc7..478b650635 100644 --- a/po/es.po +++ b/po/es.po @@ -11970,6 +11970,8 @@ msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." msgstr "" +"Debería de actualizar ya que MySQL 5.1 tiene mejor performance, y ésta es " +"aún mejor en MySQL 5.5." #: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48 #, fuzzy, php-format From 311704607137a247b64e351a49c91c31609f2249 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:16:41 +0200 Subject: [PATCH 129/442] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 478b650635..1def9358dd 100644 --- a/po/es.po +++ b/po/es.po @@ -11974,10 +11974,10 @@ msgstr "" "aún mejor en MySQL 5.5." #: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48 -#, fuzzy, php-format +#, php-format #| msgid "Create version" msgid "Current version: %s" -msgstr "Crear versión" +msgstr "Versión actual: %s" #: po/advisory_rules.php:40 po/advisory_rules.php:45 #, fuzzy From 01a6e148a2b73bc5bbf9f09258a542375911dca3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:16:48 +0200 Subject: [PATCH 130/442] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 1def9358dd..f5150a5abb 100644 --- a/po/es.po +++ b/po/es.po @@ -11980,10 +11980,9 @@ msgid "Current version: %s" msgstr "Versión actual: %s" #: po/advisory_rules.php:40 po/advisory_rules.php:45 -#, fuzzy #| msgid "Version" msgid "Minor Version" -msgstr "Versión" +msgstr "Versión menor:" #: po/advisory_rules.php:41 msgid "Version less than 5.1.30 (the first GA release of 5.1)." From bc7cfb4b3a3746f2415d49c355ca7920a30d69e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:18:44 +0200 Subject: [PATCH 131/442] Translation update done using Pootle. --- po/es.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index f5150a5abb..305d8492b5 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:16+0200\n" +"PO-Revision-Date: 2011-08-16 21:18+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11987,6 +11987,7 @@ msgstr "Versión menor:" #: po/advisory_rules.php:41 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" +"Versión menor a 5.1.30 (la primer versión de 5.1 disponible públicamente)" #: po/advisory_rules.php:42 msgid "" From 2b3dd06429944a6f5be895935a5a229bcb5f324e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:19:24 +0200 Subject: [PATCH 132/442] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 305d8492b5..7135aad324 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:18+0200\n" +"PO-Revision-Date: 2011-08-16 21:19+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11994,6 +11994,8 @@ msgid "" "You should upgrade, as recent versions of MySQL 5.1 have improved " "performance and MySQL 5.5 even more so." msgstr "" +"Debería actualizar ya que versiones más recientes de MySQL 5.1 tienen mejor " +"performance, y ésta es aún mejor en MySQL 5.5." #: po/advisory_rules.php:46 msgid "Version less than 5.5.8 (the first GA release of 5.5)." From ed838667925d080646931200e3d7b2233da7fca3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:19:28 +0200 Subject: [PATCH 133/442] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 7135aad324..f6096f1f20 100644 --- a/po/es.po +++ b/po/es.po @@ -11970,8 +11970,8 @@ msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." msgstr "" -"Debería de actualizar ya que MySQL 5.1 tiene mejor performance, y ésta es " -"aún mejor en MySQL 5.5." +"Debería actualizar ya que MySQL 5.1 tiene mejor performance, y ésta es aún " +"mejor en MySQL 5.5." #: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48 #, php-format From fa2a2597c2040c45cb69fecaada795e083bac725 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:19:52 +0200 Subject: [PATCH 134/442] Translation update done using Pootle. --- po/es.po | 1 + 1 file changed, 1 insertion(+) diff --git a/po/es.po b/po/es.po index f6096f1f20..8e9b587153 100644 --- a/po/es.po +++ b/po/es.po @@ -12000,6 +12000,7 @@ msgstr "" #: po/advisory_rules.php:46 msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" +"Versión menor a 5.5.8 (la primer versión de 5.5 disponible públicamente)." #: po/advisory_rules.php:47 #, fuzzy From 0738310cbd343aaa851a7d5c908282455bb6d7a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:20:00 +0200 Subject: [PATCH 135/442] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 8e9b587153..c510dc890c 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:19+0200\n" +"PO-Revision-Date: 2011-08-16 21:20+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -11987,7 +11987,7 @@ msgstr "Versión menor:" #: po/advisory_rules.php:41 msgid "Version less than 5.1.30 (the first GA release of 5.1)." msgstr "" -"Versión menor a 5.1.30 (la primer versión de 5.1 disponible públicamente)" +"Versión menor a 5.1.30 (la primer versión de 5.1 disponible públicamente)." #: po/advisory_rules.php:42 msgid "" From 305983be1fbca0972ed0a4a57060ef6f11100f16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:20:19 +0200 Subject: [PATCH 136/442] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index c510dc890c..33de08e2cc 100644 --- a/po/es.po +++ b/po/es.po @@ -12003,10 +12003,9 @@ msgstr "" "Versión menor a 5.5.8 (la primer versión de 5.5 disponible públicamente)." #: po/advisory_rules.php:47 -#, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" -msgstr "Usted debería actualizar su %s a la versión %s o más reciente." +msgstr "Debería actualizar a una versión estable de MySQL 5.5" #: po/advisory_rules.php:50 po/advisory_rules.php:55 #, fuzzy From 908ebf5eb6af572ef248293022a195a8c2a46d7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:20:38 +0200 Subject: [PATCH 137/442] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 33de08e2cc..15521c34b6 100644 --- a/po/es.po +++ b/po/es.po @@ -12008,10 +12008,9 @@ msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Debería actualizar a una versión estable de MySQL 5.5" #: po/advisory_rules.php:50 po/advisory_rules.php:55 -#, fuzzy #| msgid "Description" msgid "Distribution" -msgstr "Descripción" +msgstr "Distribución" #: po/advisory_rules.php:51 msgid "Version is compiled from source, not a MySQL official binary." From 2f21a6594964dcb4525c7f6a9938c753d127e5cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:21:22 +0200 Subject: [PATCH 138/442] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 15521c34b6..a81f678680 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:20+0200\n" +"PO-Revision-Date: 2011-08-16 21:21+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12014,7 +12014,7 @@ msgstr "Distribución" #: po/advisory_rules.php:51 msgid "Version is compiled from source, not a MySQL official binary." -msgstr "" +msgstr "Versión compilada de código fuente, no un binario MySQL oficial." #: po/advisory_rules.php:52 msgid "" From 1e7473e30c68f4932e960561bbfb1122e7a5f07a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:22:37 +0200 Subject: [PATCH 139/442] Translation update done using Pootle. --- po/es.po | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index a81f678680..0e1e924f26 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:21+0200\n" +"PO-Revision-Date: 2011-08-16 21:22+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12022,6 +12022,10 @@ msgid "" "distribution. The MySQL manual only is accurate for official MySQL binaries, " "not any package distributions (such as RedHat, Debian/Ubuntu etc)." msgstr "" +"Si no compiló de código fuente puede estar utilizando un paquete modificado " +"por una distribución. El manual MySQL sólo es preciso para los ejecutables " +"MySQL oficiales, no para los paquetes de las distribuciones (como RedHat, " +"Debian/Ubuntu, etc.)." #: po/advisory_rules.php:53 msgid "'source' found in version_comment" From accd77a02676d681e9d88c642e32b2f2fc2ab8e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:22:46 +0200 Subject: [PATCH 140/442] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 0e1e924f26..e6c6c021d4 100644 --- a/po/es.po +++ b/po/es.po @@ -12014,7 +12014,7 @@ msgstr "Distribución" #: po/advisory_rules.php:51 msgid "Version is compiled from source, not a MySQL official binary." -msgstr "Versión compilada de código fuente, no un binario MySQL oficial." +msgstr "Versión compilada de código fuente, no un ejecutable MySQL oficial." #: po/advisory_rules.php:52 msgid "" From c9e6b92e5cd0fee2de76d0d66f965d72154a3e17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:23:23 +0200 Subject: [PATCH 141/442] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e6c6c021d4..cf5b354635 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:22+0200\n" +"PO-Revision-Date: 2011-08-16 21:23+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12030,6 +12030,8 @@ msgstr "" #: po/advisory_rules.php:53 msgid "'source' found in version_comment" msgstr "" +"se encontró 'fuente' («source») en el comentario de la versión " +"(«version_comment»)" #: po/advisory_rules.php:56 msgid "The MySQL manual only is accurate for official MySQL binaries." From 7c9e0ca3747d90538275ce8478806f0b8f274144 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:23:57 +0200 Subject: [PATCH 142/442] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index cf5b354635..14006f2170 100644 --- a/po/es.po +++ b/po/es.po @@ -12035,7 +12035,7 @@ msgstr "" #: po/advisory_rules.php:56 msgid "The MySQL manual only is accurate for official MySQL binaries." -msgstr "" +msgstr "El manual MySQL sólo es preciso para los ejecutables MySQL oficiales." #: po/advisory_rules.php:57 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" From 4376c4adb13e8764b43d5a2a4d0cc02c94964893 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:25:22 +0200 Subject: [PATCH 143/442] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 14006f2170..a8c0054158 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:23+0200\n" +"PO-Revision-Date: 2011-08-16 21:25+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12040,6 +12040,8 @@ msgstr "El manual MySQL sólo es preciso para los ejecutables MySQL oficiales." #: po/advisory_rules.php:57 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" +"La documentación de Percona se encuentra en " +"http://www.percona.com/docs/wiki/" #: po/advisory_rules.php:58 msgid "'percona' found in version_comment" From fe66ad931af14f21706bdd1aa8006c3ce67c5dd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:27:11 +0200 Subject: [PATCH 144/442] Translation update done using Pootle. --- po/es.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index a8c0054158..8e53037cc5 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:25+0200\n" +"PO-Revision-Date: 2011-08-16 21:27+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12046,6 +12046,7 @@ msgstr "" #: po/advisory_rules.php:58 msgid "'percona' found in version_comment" msgstr "" +"se encontró 'percona' en el comentario de la versión («version_comment»)" #: po/advisory_rules.php:60 #, fuzzy From 6ff8af84e847bfd89b52741d1c9a98c7cca04a7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:27:21 +0200 Subject: [PATCH 145/442] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 8e53037cc5..d48dd40e20 100644 --- a/po/es.po +++ b/po/es.po @@ -12049,10 +12049,9 @@ msgstr "" "se encontró 'percona' en el comentario de la versión («version_comment»)" #: po/advisory_rules.php:60 -#, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" -msgstr "Juegos de caracteres de MySQL" +msgstr "Arquitectura MySQL" #: po/advisory_rules.php:61 msgid "MySQL is not compiled as a 64-bit package." From 86ffda67dce367312e85184567646d04cfdf6a36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:27:39 +0200 Subject: [PATCH 146/442] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index d48dd40e20..f752139207 100644 --- a/po/es.po +++ b/po/es.po @@ -12055,7 +12055,7 @@ msgstr "Arquitectura MySQL" #: po/advisory_rules.php:61 msgid "MySQL is not compiled as a 64-bit package." -msgstr "" +msgstr "MySQL no fue compilado como un paquete de 64-bits." #: po/advisory_rules.php:62 msgid "" From 18db9541e7bddd1af6f9b20b1fa74629182aba11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:29:04 +0200 Subject: [PATCH 147/442] Translation update done using Pootle. --- po/es.po | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index f752139207..8ee4db88eb 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:27+0200\n" +"PO-Revision-Date: 2011-08-16 21:29+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12063,6 +12063,10 @@ msgid "" "so MySQL might not be able to access all of your memory. You might want to " "consider installing the 64-bit version of MySQL." msgstr "" +"Tiene uan capacidad de memoria por sobre 3 GiB (asumiendo que el servidor " +"MySQL está en el mismo equipo que el servidor phpMyAdmin), es posible que " +"MySQL no pueda acceder a toda la memoria. Podría llegar a desear instalar la " +"versión de 64-bits de MySQL." #: po/advisory_rules.php:63 #, php-format From 95c3e830c0501627da2e6608939bc8cfa6213d18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:29:16 +0200 Subject: [PATCH 148/442] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 8ee4db88eb..9f0ded05e1 100644 --- a/po/es.po +++ b/po/es.po @@ -12071,7 +12071,7 @@ msgstr "" #: po/advisory_rules.php:63 #, php-format msgid "Available memory on this host: %s" -msgstr "" +msgstr "Memoria disponible en este equipo: %s" #: po/advisory_rules.php:65 #, fuzzy From 56a33f05ae31146eba4db1b94b79c2fc6eecf5a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:29:25 +0200 Subject: [PATCH 149/442] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 9f0ded05e1..194b609387 100644 --- a/po/es.po +++ b/po/es.po @@ -12074,10 +12074,9 @@ msgid "Available memory on this host: %s" msgstr "Memoria disponible en este equipo: %s" #: po/advisory_rules.php:65 -#, fuzzy #| msgid "Query cache" msgid "Query cache disabled" -msgstr "Cache de consultas" +msgstr "Caché de consultas desactivado" #: po/advisory_rules.php:66 #, fuzzy From b83a9ca751211f8e01cb9c858a42c03814485ede Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:29:47 +0200 Subject: [PATCH 150/442] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 194b609387..7b4f1515ea 100644 --- a/po/es.po +++ b/po/es.po @@ -12079,10 +12079,9 @@ msgid "Query cache disabled" msgstr "Caché de consultas desactivado" #: po/advisory_rules.php:66 -#, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." -msgstr "El servidor no está respondiendo" +msgstr "El caché de consultas no está habilitado." #: po/advisory_rules.php:67 msgid "" From 6d0fa8a2445f4939365f41944d3d8bd14dbee0b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:31:16 +0200 Subject: [PATCH 151/442] Translation update done using Pootle. --- po/es.po | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 7b4f1515ea..b029c83737 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:29+0200\n" +"PO-Revision-Date: 2011-08-16 21:31+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12090,6 +12090,10 @@ msgid "" "and setting {query_cache_type} to 'ON'. Note: If you are using " "memcached, ignore this recommendation." 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." #: po/advisory_rules.php:68 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" From 331c86231682ed12597dbe6445a9d75d6b749ba9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:31:43 +0200 Subject: [PATCH 152/442] Translation update done using Pootle. --- po/es.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/es.po b/po/es.po index b029c83737..cff576d008 100644 --- a/po/es.po +++ b/po/es.po @@ -12098,6 +12098,8 @@ msgstr "" #: po/advisory_rules.php:68 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" +"«query_cache_size» está definido como 0 o «query_cache_type» está definido " +"como 'OFF'" #: po/advisory_rules.php:71 msgid "Suboptimal caching method." From 9b6750328df775d9955738038bb04dd305bf4c90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:32:26 +0200 Subject: [PATCH 153/442] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index cff576d008..e6e49af31c 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:31+0200\n" +"PO-Revision-Date: 2011-08-16 21:32+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12103,7 +12103,7 @@ msgstr "" #: po/advisory_rules.php:71 msgid "Suboptimal caching method." -msgstr "" +msgstr "Método de cacheo sub-óptimo." #: po/advisory_rules.php:72 msgid "" From b81427dbbf0035e17112b17dae21a82b93493559 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:33:25 +0200 Subject: [PATCH 154/442] Translation update done using Pootle. --- po/es.po | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e6e49af31c..fbb77bf5fe 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:32+0200\n" +"PO-Revision-Date: 2011-08-16 21:33+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12112,6 +12112,11 @@ msgid "" "refman/5.1/en/ha-memcached.html\\\">memcached instead of the MySQL Query " "cache, especially if you have multiple slaves." msgstr "" +"Está utilizando el caché de consultas MySQL en una base de datos de bastante " +"tráfico. Probablemente quiera considerar utilizar memcached en lugar del caché de consultas de MySQL, " +"especialmente si tiene muchos esclavos." #: po/advisory_rules.php:73 #, php-format From 6f244f622d026a7877f6a61b63b2d4f4feb66290 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:33:57 +0200 Subject: [PATCH 155/442] Translation update done using Pootle. --- po/es.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/es.po b/po/es.po index fbb77bf5fe..ee640318e8 100644 --- a/po/es.po +++ b/po/es.po @@ -12124,6 +12124,8 @@ msgid "" "The query cache is enabled and the server receives %d queries per second. " "This rule fires if there is more than 100 queries per second." msgstr "" +"El caché de consultas está activado y el servidor recibe %d consultas por " +"segundo. Esta regla se dispara si hay más de 100 consultas por segundo." #: po/advisory_rules.php:75 msgid "Query cache efficiency (%)" From 828e354f7b83e2a206234acff808f11c0b3660c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:35:20 +0200 Subject: [PATCH 156/442] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index ee640318e8..d8aee51ee8 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:33+0200\n" +"PO-Revision-Date: 2011-08-16 21:35+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12129,7 +12129,7 @@ msgstr "" #: po/advisory_rules.php:75 msgid "Query cache efficiency (%)" -msgstr "" +msgstr "Eficiencia del caché de consultas (%)" #: po/advisory_rules.php:76 msgid "Query cache not running efficiently, it has a low hit rate." From 16a5ad1f2b683eccc3e8cc63fa347da9467ca926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:36:18 +0200 Subject: [PATCH 157/442] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index d8aee51ee8..b8f5963892 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:35+0200\n" +"PO-Revision-Date: 2011-08-16 21:36+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12134,6 +12134,8 @@ msgstr "Eficiencia del caché de consultas (%)" #: po/advisory_rules.php:76 msgid "Query cache not running efficiently, it has a low hit rate." msgstr "" +"El caché de consultas no está ejecutando eficientemente, tiene una baja tasa " +"de aciertos." #: po/advisory_rules.php:77 msgid "Consider increasing {query_cache_limit}." From 1d4ab3a301a5290d9326807db59480b0bc8464da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:36:35 +0200 Subject: [PATCH 158/442] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index b8f5963892..0953657ad5 100644 --- a/po/es.po +++ b/po/es.po @@ -12139,7 +12139,7 @@ msgstr "" #: po/advisory_rules.php:77 msgid "Consider increasing {query_cache_limit}." -msgstr "" +msgstr "Considere aumentando «query_cache_limit»." #: po/advisory_rules.php:78 #, php-format From aba273dd59d31481ca730f365e28c2f1da5647f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:37:07 +0200 Subject: [PATCH 159/442] Translation update done using Pootle. --- po/es.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 0953657ad5..20f0381eb1 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:36+0200\n" +"PO-Revision-Date: 2011-08-16 21:37+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12144,7 +12144,7 @@ msgstr "Considere aumentando «query_cache_limit»." #: po/advisory_rules.php:78 #, php-format msgid "The current query cache hit rate of %s%% is below 20%%" -msgstr "" +msgstr "La tasa de aciertos actual del caché de consultas %s%% es menor a 20%%" #: po/advisory_rules.php:80 #, fuzzy From 6ba7c1485dc7e7f81134420b4ecfc60b5a214922 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:37:15 +0200 Subject: [PATCH 160/442] Translation update done using Pootle. --- po/es.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/es.po b/po/es.po index 20f0381eb1..359298a7e8 100644 --- a/po/es.po +++ b/po/es.po @@ -12147,10 +12147,9 @@ msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "La tasa de aciertos actual del caché de consultas %s%% es menor a 20%%" #: po/advisory_rules.php:80 -#, fuzzy #| msgid "Query cache" msgid "Query Cache usage" -msgstr "Cache de consultas" +msgstr "Uso del caché de consultas" #: po/advisory_rules.php:81 #, php-format From d88dd3b6cb0105855f79daff5607f41d2e959da5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:37:42 +0200 Subject: [PATCH 161/442] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 359298a7e8..6e9bc55450 100644 --- a/po/es.po +++ b/po/es.po @@ -12154,7 +12154,7 @@ msgstr "Uso del caché de consultas" #: po/advisory_rules.php:81 #, php-format msgid "Less than 80%% of the query cache is being utilized." -msgstr "" +msgstr "Menos del 80%% del caché de consultas está siendo utilizado." #: po/advisory_rules.php:82 msgid "" From 8cf49e54e3cff9df2f91d6adb7afca2ac60be283 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:39:10 +0200 Subject: [PATCH 162/442] Translation update done using Pootle. --- po/es.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 6e9bc55450..c0faae87fe 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:37+0200\n" +"PO-Revision-Date: 2011-08-16 21:39+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12161,6 +12161,8 @@ msgid "" "This might be caused by {query_cache_limit} being too low. Flushing the " "query cache might help as well." msgstr "" +"Esto puede ser porque el valor de «query_cache_limit» es muy pequeño. Vaciar " +"el caché de consultas podría ayudar también." #: po/advisory_rules.php:83 #, php-format From b9b4404df4c920ac8dc8012483b3b91a0c00a2c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:40:00 +0200 Subject: [PATCH 163/442] Translation update done using Pootle. --- po/es.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/es.po b/po/es.po index c0faae87fe..1161670635 100644 --- a/po/es.po +++ b/po/es.po @@ -12170,6 +12170,8 @@ msgid "" "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 de ser mayor al 80%%" #: po/advisory_rules.php:85 #, fuzzy From d228def368651be762ba596724c5633ec5da58fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:40:13 +0200 Subject: [PATCH 164/442] Translation update done using Pootle. --- po/es.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/es.po b/po/es.po index 1161670635..2d2e72be2d 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:39+0200\n" +"PO-Revision-Date: 2011-08-16 21:40+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12174,10 +12174,9 @@ msgstr "" "total es %s%%. Debería de ser mayor al 80%%" #: po/advisory_rules.php:85 -#, fuzzy #| msgid "Query cache" msgid "Query cache fragmentation" -msgstr "Cache de consultas" +msgstr "Fragmentación del caché de consultas" #: po/advisory_rules.php:86 msgid "The query cache is considerably fragmented." From 3b42d9d373eef229d25c5aaa2b8d77414f20d476 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:40:17 +0200 Subject: [PATCH 165/442] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 2d2e72be2d..e21fa155e7 100644 --- a/po/es.po +++ b/po/es.po @@ -12171,7 +12171,7 @@ msgid "" "%%. 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 de ser mayor al 80%%" +"total es %s%%. Debería ser mayor al 80%%" #: po/advisory_rules.php:85 #| msgid "Query cache" From 4210bcf48507dac743da74733e2d4c7fad3dff0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:40:37 +0200 Subject: [PATCH 166/442] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index e21fa155e7..53bb2fa7cc 100644 --- a/po/es.po +++ b/po/es.po @@ -12180,7 +12180,7 @@ msgstr "Fragmentación del caché de consultas" #: po/advisory_rules.php:86 msgid "The query cache is considerably fragmented." -msgstr "" +msgstr "El caché de consultas está fragmentado considerablemente." #: po/advisory_rules.php:87 msgid "" From 8912dd777a18fba302e7144776438006c262a326 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:44:58 +0200 Subject: [PATCH 167/442] Translation update done using Pootle. --- po/es.po | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 53bb2fa7cc..764716fead 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:40+0200\n" +"PO-Revision-Date: 2011-08-16 21:44+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12193,6 +12193,16 @@ msgid "" "using this formula: (query_cache_size - qcache_free_memory) / " "qcache_queries_in_cache" msgstr "" +"Alta fragmentación probablemente aumente (más) «Qcache_lowmem_prunes». Esto " +"puede ser causado por la cantidad de reducciones realizadas al caché de " +"consultas por falta de memoria debido a que «query_cache_size» es muy " +"pequeño. Una solución inmediata pero a corto plazo debería de vaciar el " +"caché de consultas (puede bloquear el caché de consultas por un largo " +"tiempo). Ajustar cuidadosamente «query_cache_min_res_unit» a un valor menor " +"podría ayudar también; por ejemplo, podría definirlo como el tamaño promedio " +"de las consultas en el caché utilizando la siguiente fórmula: " +"(«query_cache_size» - «qcache_free_memory») / «qcache_queries_in_cache» " +"((tamaño_caché - memoria_libre_caché) / cantidad_consultas_en_caché)." #: po/advisory_rules.php:88 #, php-format From 5dc54d025303a84d00c4463cb9a320d334374550 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:46:10 +0200 Subject: [PATCH 168/442] Translation update done using Pootle. --- po/es.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 764716fead..35b8812e96 100644 --- a/po/es.po +++ b/po/es.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:44+0200\n" +"PO-Revision-Date: 2011-08-16 21:46+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" "Language: es\n" @@ -12211,6 +12211,9 @@ msgid "" "that the query cache is an alternating pattern of free and used blocks. This " "value should be below 20%%." msgstr "" +"El caché está %s%% fragmentado actualmente. Una fragmentación del 100% " +"significa que el caché de consulta es un patrón alternante de bloques " +"utilizados y libres. Este valor debería ser menor al 20%%." #: po/advisory_rules.php:90 msgid "Query cache low memory prunes" From 8e7d41610e488a6199b5a495c5f8c95fab81bd71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C3=ADas=20Bellone?= Date: Tue, 16 Aug 2011 21:46:37 +0200 Subject: [PATCH 169/442] Translation update done using Pootle. --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 35b8812e96..f5c20ce11d 100644 --- a/po/es.po +++ b/po/es.po @@ -12217,7 +12217,7 @@ msgstr "" #: po/advisory_rules.php:90 msgid "Query cache low memory prunes" -msgstr "" +msgstr "Reducciones al caché de consultas por falta de memoria" #: po/advisory_rules.php:91 #, fuzzy From e058fad5e1d4a5552d1a95af2df091b7c7e6c56a Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:51:03 +0200 Subject: [PATCH 170/442] Translation update done using Pootle. --- po/sl.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/sl.po b/po/sl.po index d30300cc77..dacbf33b64 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-11 18:40+0200\n" +"PO-Revision-Date: 2011-08-16 21:51+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" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 @@ -1143,10 +1143,9 @@ msgid "" msgstr "" #: js/messages.php:96 -#, fuzzy #| msgid "Query cache" msgid "Query cache efficiency" -msgstr "Predpomnilnik poizvedb" +msgstr "Učinkovitost predpomnilnika poizvedb" #: js/messages.php:97 po/advisory_rules.php:70 #, fuzzy From c27e4c79799a1b19f3f932f32d99ef11b1132138 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:51:10 +0200 Subject: [PATCH 171/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index dacbf33b64..b49f1d9167 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1148,10 +1148,9 @@ msgid "Query cache efficiency" msgstr "Učinkovitost predpomnilnika poizvedb" #: js/messages.php:97 po/advisory_rules.php:70 -#, fuzzy #| msgid "Query cache" msgid "Query cache usage" -msgstr "Predpomnilnik poizvedb" +msgstr "Uporaba predpomnilnika poizvedb" #: js/messages.php:98 #, fuzzy From 4d5b725c4fbbdedfa4ecbd0ee8c1739fb0820505 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:51:26 +0200 Subject: [PATCH 172/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index b49f1d9167..c2f84b3510 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1153,10 +1153,9 @@ msgid "Query cache usage" msgstr "Uporaba predpomnilnika poizvedb" #: js/messages.php:98 -#, fuzzy #| msgid "Query cache" msgid "Query cache used" -msgstr "Predpomnilnik poizvedb" +msgstr "Uporabljenega predpomnilnika poizvedb" #: js/messages.php:100 msgid "System CPU Usage" From 3702f97189df7d6dc44a2e75552566ce28eb0f6a Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:53:01 +0200 Subject: [PATCH 173/442] Translation update done using Pootle. --- po/sl.po | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/po/sl.po b/po/sl.po index c2f84b3510..991c8b8aa4 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:51+0200\n" +"PO-Revision-Date: 2011-08-16 21:53+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1392,7 +1392,6 @@ msgid "Analysing & loading logs. This may take a while." msgstr "Analiziranje in nalaganje dnevnikov. To lahko traja nekaj časa." #: js/messages.php:165 -#, fuzzy #| msgid "" #| "This columns shows the amount of identical queries that are grouped " #| "together. However only the SQL Text is being compared, thus the queries " @@ -1402,9 +1401,9 @@ msgid "" "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." msgstr "" -"Stolpec prikazuje število identičnih poizvedb, ki so zbrane skupaj. " -"Primerjano je samo besedilo SQL, zato se lahko drugi atributi poizvedb, npr. " -"začetni čas, razlikujejo." +"Stolpec prikazuje število identičnih poizvedb, ki so zbrane skupaj. Kot " +"zbirni pogoj je bila uporabljena le sama poizvedba SQL, zato se lahko drugi " +"atributi poizvedb, npr. začetni čas, razlikujejo." #: js/messages.php:166 msgid "" From e0b16a162a38293eaa4378fb3cd5f8477ee6ebfb Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:53:43 +0200 Subject: [PATCH 174/442] Translation update done using Pootle. --- po/sl.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/sl.po b/po/sl.po index 991c8b8aa4..49e1dc1c6f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1480,6 +1480,8 @@ msgstr "Spremenjene vrstice:" #: js/messages.php:188 msgid "Failed parsing config file. It doesn't seem to be valid JSON code" msgstr "" +"Razčlenjevalne konfiguracijske datoteke je spodletelo. Kot kaže, ni veljavna " +"koda JSON." #: js/messages.php:189 msgid "" From 60c6132831d3154275e705a93adfad542333ec96 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:54:17 +0200 Subject: [PATCH 175/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 49e1dc1c6f..312633b676 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:53+0200\n" +"PO-Revision-Date: 2011-08-16 21:54+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1488,6 +1488,8 @@ msgid "" "Failed building chart grid with imported config. Resetting to default " "config..." msgstr "" +"Gradnja grafikona z uvoženo konfiguracijo je spodletela. Ponastavljanje na " +"privzeto konfiguracijo ..." #: js/messages.php:190 libraries/config/messages.inc.php:170 #: libraries/db_links.inc.php:83 libraries/server_links.inc.php:69 From a4b7cb52b12ddf21d933e1155be42481b497c96d Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:54:39 +0200 Subject: [PATCH 176/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 312633b676..1b4ed23ef7 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1679,7 +1679,7 @@ msgstr "Iskanje" #: js/messages.php:264 msgid "Each point represents a data row." -msgstr "" +msgstr "Vsaka točka predstavlja podatkovno vrstico." #: js/messages.php:266 msgid "Hovering over a point will show its label." From 10db0bda7662408cdcb1444d0cb9fa78a41e0bb3 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:55:23 +0200 Subject: [PATCH 177/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 1b4ed23ef7..d9909c4f25 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:54+0200\n" +"PO-Revision-Date: 2011-08-16 21:55+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1691,7 +1691,7 @@ msgstr "" #: js/messages.php:270 msgid "Click reset zoom link to come back to original state." -msgstr "" +msgstr "Kliknite ponastavi povečavo za vrnitev na prvotno stanje." #: js/messages.php:272 msgid "Click a data point to view and possibly edit the data row." From df9548f6e3bf62a198e18036d8facea52deec30e Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:55:36 +0200 Subject: [PATCH 178/442] Translation update done using Pootle. --- po/sl.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index d9909c4f25..8a692273c8 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1691,7 +1691,8 @@ msgstr "" #: js/messages.php:270 msgid "Click reset zoom link to come back to original state." -msgstr "Kliknite ponastavi povečavo za vrnitev na prvotno stanje." +msgstr "" +"Kliknite povezavo za ponastavitev povečave za vrnitev na prvotno stanje." #: js/messages.php:272 msgid "Click a data point to view and possibly edit the data row." From 3e7eeb51c6219f62b780eb00f888c743189f6149 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:56:01 +0200 Subject: [PATCH 179/442] Translation update done using Pootle. --- po/sl.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 8a692273c8..a90d38a6c5 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:55+0200\n" +"PO-Revision-Date: 2011-08-16 21:56+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1697,6 +1697,7 @@ msgstr "" #: js/messages.php:272 msgid "Click a data point to view and possibly edit the data row." msgstr "" +"Kliknite podatkovno točko za ogled in morebitno urejanje podatkovne vrstice." #: js/messages.php:274 msgid "The plot can be resized by dragging it along the bottom right corner." From 039b27dc7a6f8e40508c17786700fc698ab5308d Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:56:21 +0200 Subject: [PATCH 180/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index a90d38a6c5..2a8b2567a4 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1708,10 +1708,9 @@ msgid "Strings are converted into integer for plotting" msgstr "" #: js/messages.php:278 -#, fuzzy #| msgid "Add/Delete columns" msgid "Select two columns" -msgstr "Dodaj/Odstrani stolpce" +msgstr "Izberite dva stolpca" #: js/messages.php:279 msgid "Select two different columns" From 27232d540123d2849315143fd95f288758edcdd0 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:56:33 +0200 Subject: [PATCH 181/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 2a8b2567a4..8dffeb8940 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1714,7 +1714,7 @@ msgstr "Izberite dva stolpca" #: js/messages.php:279 msgid "Select two different columns" -msgstr "" +msgstr "Izberite dva različna stolpca" #: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 #: tbl_indexes.php:238 From e55e5701fed3faf659cb290d8a74aea291290e88 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:57:23 +0200 Subject: [PATCH 182/442] Translation update done using Pootle. --- po/sl.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 8dffeb8940..4189944d3b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:56+0200\n" +"PO-Revision-Date: 2011-08-16 21:57+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1791,6 +1791,7 @@ msgstr "" msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" +"Večino stolpcev lahko urejate
neposredno s klikom na njihovo vsebino." #: js/messages.php:307 #, fuzzy From 01d709b34449467dd23c9edd544146564eb78ff0 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:57:27 +0200 Subject: [PATCH 183/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 4189944d3b..1aa280d6a8 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1794,10 +1794,9 @@ msgstr "" "Večino stolpcev lahko urejate
neposredno s klikom na njihovo vsebino." #: js/messages.php:307 -#, fuzzy #| msgid "Go to view" msgid "Go to link" -msgstr "Pojdi na pogled" +msgstr "Pojdi na povezavo" #: js/messages.php:310 msgid "Generate password" From 405fda9494443046a1c8cefc139c071501394cc2 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:58:09 +0200 Subject: [PATCH 184/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 1aa280d6a8..d7a5d5d425 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:57+0200\n" +"PO-Revision-Date: 2011-08-16 21:58+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -2292,6 +2292,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" +"Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej " +"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Theme.class.php:144 #, php-format From b002a0666b720ec97e895f43e756d0a84ef123e8 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:59:17 +0200 Subject: [PATCH 185/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index d7a5d5d425..d8133e7ddf 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:58+0200\n" +"PO-Revision-Date: 2011-08-16 21:59+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -4473,6 +4473,8 @@ msgid "" "This configuration make sure that we only keep N (N = MaxTableUiprefs) " "newest record in \"table_uiprefs\" and automatically delete older records" msgstr "" +"Ta konfiguracija zagotavlja, da v \"table_uiprefs\" hranimo samo N (N = " +"MaxTableUiprefs) najnovejših zapisov in da samodejno brišemo starejše zapise" #: libraries/config/messages.inc.php:399 #, fuzzy From 1971b24a27263c21643fba996678c766cc7e8a4d Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:59:37 +0200 Subject: [PATCH 186/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index d8133e7ddf..306758782f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4477,10 +4477,9 @@ msgstr "" "MaxTableUiprefs) najnovejših zapisov in da samodejno brišemo starejše zapise" #: libraries/config/messages.inc.php:399 -#, fuzzy #| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" -msgstr "Največje število tabel prikazanih na seznamu tabel" +msgstr "Največje število zapisov, shranjenih v tabeli \"table_uiprefs\"" #: libraries/config/messages.inc.php:400 msgid "Try to connect without password" From 5ce8586e085ddf2bd5a934f17fa760f1c4321a00 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 21:59:45 +0200 Subject: [PATCH 187/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 306758782f..ec1a523573 100644 --- a/po/sl.po +++ b/po/sl.po @@ -7929,10 +7929,9 @@ msgid "Operator" msgstr "Operator" #: libraries/tbl_select.lib.php:131 -#, fuzzy #| msgid "Search" msgid "Table Search" -msgstr "Iskanje" +msgstr "Iskanje po tabeli" #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" From f1cead43abe343afaadb8cdff6293aa5282b69eb Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:01:00 +0200 Subject: [PATCH 188/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index ec1a523573..9d8049ca76 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 21:59+0200\n" +"PO-Revision-Date: 2011-08-16 22:01+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -10239,10 +10239,9 @@ msgid "" msgstr "" #: server_status.php:1507 -#, fuzzy #| msgid "Pause monitor" msgid "Using the monitor:" -msgstr "Postoj nadziranje" +msgstr "Uporaba monitorja:" #: server_status.php:1509 #, fuzzy From 98c8dc3143e512e7d8fdf906a1dc5d5424647453 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:01:16 +0200 Subject: [PATCH 189/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 9d8049ca76..4210b38617 100644 --- a/po/sl.po +++ b/po/sl.po @@ -10311,7 +10311,7 @@ msgstr "" #: server_status.php:1518 msgid "Please note:" -msgstr "" +msgstr "Prosimo, pomnite:" #: server_status.php:1520 #, fuzzy From faa7446e9a3d0938a248c4bc0be223c361421e33 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:02:04 +0200 Subject: [PATCH 190/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 4210b38617..a597e4a702 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:01+0200\n" +"PO-Revision-Date: 2011-08-16 22:02+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -10185,10 +10185,9 @@ msgid "Chart columns" msgstr "Stolpci grafikona" #: server_status.php:1483 -#, fuzzy #| msgid "Error management:" msgid "Chart arrangement" -msgstr "Upravljanje napak:" +msgstr "Razvrstitev grafikonov" #: server_status.php:1483 msgid "" From 0db0361306996f96b21fee67d8448d294ce80062 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:02:46 +0200 Subject: [PATCH 191/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index a597e4a702..d04969f236 100644 --- a/po/sl.po +++ b/po/sl.po @@ -10337,10 +10337,9 @@ msgstr "" " " #: server_status.php:1533 -#, fuzzy #| msgid "Remove chart" msgid "Preset chart" -msgstr "Odstrani grafikon" +msgstr "Prednastavljeni grafikon" #: server_status.php:1537 msgid "Status variable(s)" From 067b5549405338717f6da0226238bd65506d6141 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:03:16 +0200 Subject: [PATCH 192/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index d04969f236..80d291983c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:02+0200\n" +"PO-Revision-Date: 2011-08-16 22:03+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -10391,7 +10391,7 @@ msgstr "Izbrano časovno območje:" #: server_status.php:1598 msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" +msgstr "Pridobi samo stavke SELECT, INSERT, UPDATE in DELETE" #: server_status.php:1603 msgid "Remove variable data in INSERT statements for better grouping" From 9ded827505c2436c662cba4c5f028b7c1f1e8320 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:03:34 +0200 Subject: [PATCH 193/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 80d291983c..fb5b4c0df1 100644 --- a/po/sl.po +++ b/po/sl.po @@ -10395,7 +10395,7 @@ msgstr "Pridobi samo stavke SELECT, INSERT, UPDATE in DELETE" #: server_status.php:1603 msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" +msgstr "Odstrani spremenljive podatke v stavkih INSERT za boljše združevanje" #: server_status.php:1608 #, fuzzy From 7eddbb5a176bc4f457cc32849f864a2fed033c23 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:03:54 +0200 Subject: [PATCH 194/442] Translation update done using Pootle. --- po/sl.po | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/po/sl.po b/po/sl.po index fb5b4c0df1..60ab21cf96 100644 --- a/po/sl.po +++ b/po/sl.po @@ -10398,14 +10398,11 @@ 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:1608 -#, fuzzy #| msgid "" #| "

Choose from which log you want the statistics to be generated from. Results are grouped by query text." msgid "Choose from which log you want the statistics to be generated from." -msgstr "" -"

Izberite dnevnike, iz katerih želite ustvariti statistiko.

Rezultati " -"so zbrani po besedilu poizvedbe." +msgstr "Izberite dnevnike, iz katerih želite ustvariti statistiko." #: server_status.php:1610 msgid "Results are grouped by query text." From 75d0809e028318012229c42b4276e34e8c5e51a4 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:04:05 +0200 Subject: [PATCH 195/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 60ab21cf96..e2ec64947f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:03+0200\n" +"PO-Revision-Date: 2011-08-16 22:04+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -10406,7 +10406,7 @@ msgstr "Izberite dnevnike, iz katerih želite ustvariti statistiko." #: server_status.php:1610 msgid "Results are grouped by query text." -msgstr "" +msgstr "Rezultati so združeni po besedilu poizvedbe." #: server_status.php:1615 #, fuzzy From 32173500e22c4098f9ce94dcc036c1752948a137 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:04:29 +0200 Subject: [PATCH 196/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index e2ec64947f..c0bbcfd5e7 100644 --- a/po/sl.po +++ b/po/sl.po @@ -10409,10 +10409,9 @@ msgid "Results are grouped by query text." msgstr "Rezultati so združeni po besedilu poizvedbe." #: server_status.php:1615 -#, fuzzy #| msgid "Query type" msgid "Query analyzer" -msgstr "Vrsta poizvedbe" +msgstr "Analitik poizvedb" #: server_status.php:1652 #, php-format From 0a67041c81727ba2ac565284ae87bd023f9ad574 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:05:11 +0200 Subject: [PATCH 197/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index c0bbcfd5e7..dcdbfa1c88 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:04+0200\n" +"PO-Revision-Date: 2011-08-16 22:05+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11654,7 +11654,7 @@ msgstr "" #: po/advisory_rules.php:8 #, php-format msgid "The uptime is only %s" -msgstr "" +msgstr "Neprekinjeno delovanje je samo %s" #: po/advisory_rules.php:10 #, fuzzy From 6c2e62aa2d8da10d6c4fba3791bddaaf7e3e93b9 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:05:16 +0200 Subject: [PATCH 198/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index dcdbfa1c88..fb31d7931e 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11657,10 +11657,9 @@ msgid "The uptime is only %s" msgstr "Neprekinjeno delovanje je samo %s" #: po/advisory_rules.php:10 -#, fuzzy #| msgid "Questions" msgid "Questions below 1,000" -msgstr "Vprašanja" +msgstr "Vprašanja pod 1.000" #: po/advisory_rules.php:11 msgid "" From 27de1154c2ef5c656a24ee921eef678f523fac39 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:05:41 +0200 Subject: [PATCH 199/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index fb31d7931e..428c7aa2d2 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11680,10 +11680,9 @@ msgid "Current amount of Questions: %s" msgstr "Trenutna povezava" #: po/advisory_rules.php:15 -#, fuzzy #| msgid "Show SQL queries" msgid "Percentage of slow queries" -msgstr "Pokaži poizvedbe SQL" +msgstr "Odstotek počasnih poizvedb" #: po/advisory_rules.php:16 msgid "" From 88b72263d72f07aabc1cad8f864839cc0f1fdcfa Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:06:17 +0200 Subject: [PATCH 200/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 428c7aa2d2..4e91229934 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:05+0200\n" +"PO-Revision-Date: 2011-08-16 22:06+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11701,10 +11701,9 @@ msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" #: po/advisory_rules.php:20 -#, fuzzy #| msgid "Flush query cache" msgid "Slow query rate" -msgstr "Izplakni predpomnilnik poizvedb" +msgstr "Delež počasnih poizvedb" #: po/advisory_rules.php:21 msgid "" From 2f7d7a1756243732f9f574a0d19dbbafcfc22cde Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:06:29 +0200 Subject: [PATCH 201/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 4e91229934..ca0bf0651d 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11718,10 +11718,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:25 -#, fuzzy #| msgid "SQL queries" msgid "Long query time" -msgstr "Poizvedbe SQL" +msgstr "Čas dolgih poizvedb" #: po/advisory_rules.php:26 msgid "" From 7cb7d69836ecaa3a29f096fce7787edf27f98652 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:08:24 +0200 Subject: [PATCH 202/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index ca0bf0651d..fb5d99d307 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:06+0200\n" +"PO-Revision-Date: 2011-08-16 22:08+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -10194,6 +10194,8 @@ 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 "" +"Razvrstitev grafikonov je shranjena v lokalni shrambi brskalnika. Če imate " +"zapleteno nastavitev, jo boste morda želeli izvoziti." #: server_status.php:1484 #, fuzzy From 1b65b9118fad2a8b18db14df37e6b223323a3086 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:08:35 +0200 Subject: [PATCH 203/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index fb5d99d307..f2ef1ec690 100644 --- a/po/sl.po +++ b/po/sl.po @@ -10198,10 +10198,9 @@ msgstr "" "zapleteno nastavitev, jo boste morda želeli izvoziti." #: server_status.php:1484 -#, fuzzy #| msgid "Restore default value" msgid "Reset to default" -msgstr "Povrni privzeto vrednost" +msgstr "Povrni na privzeto" #: server_status.php:1488 msgid "Monitor Instructions" From 91894814f1ca20f3d74eca030ccd59345d30610a Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:09:12 +0200 Subject: [PATCH 204/442] Translation update done using Pootle. --- po/sl.po | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/po/sl.po b/po/sl.po index f2ef1ec690..5a55650744 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:08+0200\n" +"PO-Revision-Date: 2011-08-16 22:09+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -10207,7 +10207,6 @@ msgid "Monitor Instructions" msgstr "Navodila nadziranja" #: server_status.php:1489 -#, fuzzy #| msgid "" #| "The phpMyAdmin Monitor can assist you in optimizing the server " #| "configuration and track down time intensive\n" @@ -10224,11 +10223,10 @@ msgid "" "increases server load by up to 15%" msgstr "" "Nadziranje phpMyAdmin vam lahko pomaga pri optimiziranju konfiguracije " -"strežnika in izsleditvi časovno zahtevnih\n" -" poizvedb. Za slednje morate nastaviti log_output na 'TABLE' in imeti " -"ali slow_query_log ali general_log omogočeno. Vendar pomnite, da\n" -" general_log ustvari ogromno podatkov in poveča obremenitev strežnika " -"do 15 %." +"strežnika in izsleditvi časovno zahtevnih poizvedb. Za slednje morate " +"nastaviti log_output na 'TABLE' in imeti omogočeno ali slow_query_log ali " +"general_log. Vendar pomnite, da general_log ustvari ogromno podatkov in " +"poveča obremenitev strežnika do 15 %." #: server_status.php:1494 msgid "" From deb6f8f7243decf3aac875bd1b26327b4f2f0742 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:09:58 +0200 Subject: [PATCH 205/442] Translation update done using Pootle. --- po/sl.po | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/po/sl.po b/po/sl.po index 5a55650744..9662ed03b2 100644 --- a/po/sl.po +++ b/po/sl.po @@ -10242,7 +10242,6 @@ msgid "Using the monitor:" msgstr "Uporaba monitorja:" #: server_status.php:1509 -#, fuzzy #| msgid "" #| "Using the monitor:
\n" #| " Ok, you are good to go! Once you click 'Start monitor' your " @@ -10261,18 +10260,11 @@ msgid "" "change the refresh rate under 'Settings', or remove any chart using the cog " "icon on each respective chart." msgstr "" -"Uporaba nadziranja:
\n" -" V redu, pripravljeni ste! Ko kliknete 'Začni nadziranje', se bo vaš " -"brskalnik osvežil in prikazal grafikone\n" -" v rednih razmikih. Dodajate lahko grafikone in spremenite pogostost " -"osveževanja pod 'Nastavitve' ali pa\n" -" odstranite kateri koli grafikon s klikom na ikono zobnika ob " -"ustreznem grafikonu.\n" -"

Ko opazite nenavadno povečanje dejavnosti, izberite ustrezno " -"časovno obdobje na katerem koli grafikonu tako, da pridržite\n" -" levi miškin gumb in kazalec povlečete čez grafikon. To bo naložilo " -"statistike iz dnevnikov, kar vam bo pomagalo odkriti vzrok\n" -" povečane dejavnosti.

" +"V redu, pripravljeni ste! Ko kliknete 'Začni nadziranje', se bo vaš " +"brskalnik osvežil in prikazal grafikone v rednih razmikih. Dodajate lahko " +"grafikone in spremenite pogostost osveževanja pod 'Nastavitve' ali pa " +"odstranite kateri koli grafikon s klikom na ikono zobnika ob ustreznem " +"grafikonu." #: server_status.php:1511 #, fuzzy From d0b10e1fc7fd15f6cdc1a2200c1a415b503a4045 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:10:38 +0200 Subject: [PATCH 206/442] Translation update done using Pootle. --- po/sl.po | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/po/sl.po b/po/sl.po index 9662ed03b2..13c51d5153 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:09+0200\n" +"PO-Revision-Date: 2011-08-16 22:10+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -10304,7 +10304,6 @@ msgid "Please note:" msgstr "Prosimo, pomnite:" #: server_status.php:1520 -#, fuzzy #| msgid "" #| "Please note:\n" #| " Enabling the general_log may increase the server load by 5-15%. " @@ -10319,13 +10318,11 @@ msgid "" "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 "" -"Pomnite:\n" -" Omogočitev general_log lahko poveča obremenitev strežnika za 5–15 %. " -"Zavedajte se tudi, da je ustvarjanje statistik iz dnevnikov\n" -" zelo obremenjujoče opravilo, zato je priporočljivo, da izberete samo " -"majhen časovni razpon ter onemogočite general_log in počistite njene tabele, " -"ko nadziranja ne potrebujete več.\n" -" " +"Omogočitev general_log lahko poveča obremenitev strežnika za 5–15 %. " +"Zavedajte se tudi, da je ustvarjanje statistik iz dnevnikov zelo " +"obremenjujoče opravilo, zato je priporočljivo, da izberete samo majhen " +"časovni razpon ter onemogočite general_log in počistite njene tabele, ko " +"nadziranja ne potrebujete več. " #: server_status.php:1533 #| msgid "Remove chart" From 61589c02b281b5f108932e63910b59b747850f0e Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:10:46 +0200 Subject: [PATCH 207/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 13c51d5153..a28b498e98 100644 --- a/po/sl.po +++ b/po/sl.po @@ -10503,10 +10503,9 @@ msgstr "" "Ciljna zbirka podatkov je bila sinhronizirana z izvorno zbirko podatkov" #: server_synchronize.php:951 -#, fuzzy #| msgid "Issued queries" msgid "Executed queries" -msgstr "Izdane poizvedbe" +msgstr "Izvedene poizvedbe" #: server_synchronize.php:1076 msgid "Enter manually" From 3d9183251d9083d339d2baac94e80b170a365552 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:10:56 +0200 Subject: [PATCH 208/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index a28b498e98..62f4382077 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11260,7 +11260,7 @@ msgstr "Dolžina vrstice" #: tbl_printview.php:378 tbl_structure.php:892 msgid "Row size" -msgstr "Velikost vrstice " +msgstr "Velikost vrstice" #: tbl_printview.php:388 tbl_structure.php:900 msgid "Next autoindex" From 0c5075da4f448c3753e92669165e9a3d0e4fbde5 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:11:09 +0200 Subject: [PATCH 209/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 62f4382077..e43de75b6c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:10+0200\n" +"PO-Revision-Date: 2011-08-16 22:11+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11264,7 +11264,7 @@ msgstr "Velikost vrstice" #: tbl_printview.php:388 tbl_structure.php:900 msgid "Next autoindex" -msgstr "" +msgstr "Naslednji samodejni indeks" #: tbl_relation.php:276 #, php-format From 13981f7d6b521192a1814fb6409e617177b393af Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:11:19 +0200 Subject: [PATCH 210/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index e43de75b6c..bde9eb1a99 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11361,10 +11361,9 @@ msgid "Show more actions" msgstr "Prikaži več dejanj" #: tbl_structure.php:603 -#, fuzzy #| msgid "Print view" msgid "Edit view" -msgstr "Pogled za tiskanje" +msgstr "Urejevalni pogled" #: tbl_structure.php:620 msgid "Relation view" From 0df06f6e3610d0f5bac5c7ef163d9788b84d2c6e Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:11:48 +0200 Subject: [PATCH 211/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index bde9eb1a99..0391f39e11 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11552,10 +11552,10 @@ msgid "Create version" msgstr "Ustvari različico" #: tbl_zoom_select.php:140 -#, fuzzy #| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" -msgstr "Izvedi \"query by example\" (nadomestni znak: \"%\")" +msgstr "" +"Izvedi \"query by example\" (nadomestni znak: \"%\") za dva različna stolpca" #: tbl_zoom_select.php:151 #, fuzzy From 90af2dd443c943303b8ae2c9600a1b823ab723c8 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:11:54 +0200 Subject: [PATCH 212/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 0391f39e11..c26723f62b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11558,10 +11558,9 @@ msgstr "" "Izvedi \"query by example\" (nadomestni znak: \"%\") za dva različna stolpca" #: tbl_zoom_select.php:151 -#, fuzzy #| msgid "Hide search criteria" msgid "Additional search criteria" -msgstr "Skrij iskalne pogoje" +msgstr "Dodatni iskalni pogoji" #: tbl_zoom_select.php:281 #, fuzzy From 993a74a1d9731d2e96e0157691a6e0ff288bb33a Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:12:47 +0200 Subject: [PATCH 213/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index c26723f62b..c172eed32c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:11+0200\n" +"PO-Revision-Date: 2011-08-16 22:12+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11563,10 +11563,9 @@ msgid "Additional search criteria" msgstr "Dodatni iskalni pogoji" #: tbl_zoom_select.php:281 -#, fuzzy #| msgid "Label" msgid "Data Label" -msgstr "Oznaka" +msgstr "Podatkovna oznaka" #: tbl_zoom_select.php:297 #, fuzzy From de6e79f277c15196d4e33d2c36d26b90c8cf3276 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:13:01 +0200 Subject: [PATCH 214/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index c172eed32c..d7dd121a35 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:12+0200\n" +"PO-Revision-Date: 2011-08-16 22:13+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11575,7 +11575,7 @@ msgstr "Največje število vrstic za prikaz" #: tbl_zoom_select.php:388 msgid "Browse/Edit the points" -msgstr "" +msgstr "Prebrskaj/Uredi točke" #: tbl_zoom_select.php:394 #, fuzzy From 30a88ea515e8615bdb5446e5269cbc01736082f3 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:13:06 +0200 Subject: [PATCH 215/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index d7dd121a35..1df4de7643 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11578,10 +11578,9 @@ msgid "Browse/Edit the points" msgstr "Prebrskaj/Uredi točke" #: tbl_zoom_select.php:394 -#, fuzzy #| msgid "Control user" msgid "How to use" -msgstr "Krmilni uporabnik" +msgstr "Kako uporabljati" #: themes.php:28 msgid "Get more themes!" From 4bc3589e8f86214d219cc93194f1b786e67f77cb Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:13:19 +0200 Subject: [PATCH 216/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 1df4de7643..6b22d63439 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11622,7 +11622,7 @@ msgstr "Preimenuj pogled v" #: po/advisory_rules.php:5 msgid "Uptime below one day" -msgstr "" +msgstr "Neprekinjeno delovanje krajše od enega dneva" #: po/advisory_rules.php:6 msgid "Uptime is less than 1 day, performance tuning may not be accurate." From 412788085a820ae66d7ae12e9cd65298343e29ff Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:13:45 +0200 Subject: [PATCH 217/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 6b22d63439..8ec4c115b3 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11657,10 +11657,10 @@ msgid "" msgstr "" #: po/advisory_rules.php:13 -#, fuzzy, php-format +#, php-format #| msgid "Current connection" msgid "Current amount of Questions: %s" -msgstr "Trenutna povezava" +msgstr "Trenutno število vprašanj: %s" #: po/advisory_rules.php:15 #| msgid "Show SQL queries" From a015cb73124021b59e768ca987b37c648692b85f Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:14:13 +0200 Subject: [PATCH 218/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 8ec4c115b3..d3444170e2 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:13+0200\n" +"PO-Revision-Date: 2011-08-16 22:14+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11670,7 +11670,7 @@ msgstr "Odstotek počasnih poizvedb" #: po/advisory_rules.php:16 msgid "" "There is a lot of slow queries compared to the overall amount of Queries." -msgstr "" +msgstr "V primerjavi s skupnim številom poizvedb je počasnih poizvedb veliko." #: po/advisory_rules.php:17 po/advisory_rules.php:22 msgid "" From db119c6ad7299544886309dffdab1a54451c6460 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:14:45 +0200 Subject: [PATCH 219/442] Translation update done using Pootle. --- po/sl.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/sl.po b/po/sl.po index d3444170e2..732f4759bb 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11677,6 +11677,8 @@ msgid "" "You might want to increase {long_query_time} or optimize the queries listed " "in the slow query log" msgstr "" +"Morda boste želeli povečati {long_query_time} ali optimizirati poizvedbe, " +"navedene v dnevniku počasnih poizvedb" #: po/advisory_rules.php:18 #, php-format From d4e95defeaac9f81ab670e0d73438d83a3a2f1ae Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:15:18 +0200 Subject: [PATCH 220/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 732f4759bb..eb8a6ccfe3 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:14+0200\n" +"PO-Revision-Date: 2011-08-16 22:15+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11683,7 +11683,7 @@ msgstr "" #: po/advisory_rules.php:18 #, php-format msgid "The slow query rate should be below 5%%, your value is %s%%." -msgstr "" +msgstr "Delež počasnih poizvedb bi moral biti pod 5 %%; vaša vrednost je %s %%." #: po/advisory_rules.php:20 #| msgid "Flush query cache" From acc4c251cd7480aee502af56aeb56aec9b824857 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:15:46 +0200 Subject: [PATCH 221/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index eb8a6ccfe3..f35e64836c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11720,10 +11720,10 @@ msgid "" msgstr "" #: po/advisory_rules.php:28 -#, fuzzy, php-format +#, 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 je nastavljen na %d sekund(o)." +msgstr "long_query_time je trenutno nastavljen na %d s." #: po/advisory_rules.php:30 #, fuzzy From f3da67b16f8861876944dff1036d78742f7eb384 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:16:05 +0200 Subject: [PATCH 222/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index f35e64836c..42ac60a091 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:15+0200\n" +"PO-Revision-Date: 2011-08-16 22:16+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11726,10 +11726,9 @@ msgid "long_query_time is currently set to %ds." msgstr "long_query_time je trenutno nastavljen na %d s." #: po/advisory_rules.php:30 -#, fuzzy #| msgid "Show query box" msgid "Slow query logging" -msgstr "Prikaži polje poizvedbe" +msgstr "Beleženje počasnih poizvedb" #: po/advisory_rules.php:31 #, fuzzy From 45921f47d4c68bc310d2c212507270c610a1319d Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:16:18 +0200 Subject: [PATCH 223/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 42ac60a091..f954bfcaf6 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11731,10 +11731,9 @@ msgid "Slow query logging" msgstr "Beleženje počasnih poizvedb" #: po/advisory_rules.php:31 -#, fuzzy #| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." -msgstr "slow_query_log je omogočen." +msgstr "Dnevnik počasnih poizvedb je onemogočen." #: po/advisory_rules.php:32 msgid "" From 27f313d08c212cfff3ba6ebca3a655a4867f9467 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:16:29 +0200 Subject: [PATCH 224/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index f954bfcaf6..0456232f68 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11743,7 +11743,7 @@ msgstr "" #: po/advisory_rules.php:33 msgid "log_slow_queries is set to 'OFF'" -msgstr "" +msgstr "log_slow_queries je nastavljen na 'OFF'" #: po/advisory_rules.php:35 #, fuzzy From 2a0ec259adbecdd5e65b04ee3543f079abc44b05 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:16:52 +0200 Subject: [PATCH 225/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 0456232f68..456a2bbede 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11753,7 +11753,7 @@ msgstr "Počisti serije" #: po/advisory_rules.php:36 msgid "The MySQL server version less then 5.1." -msgstr "" +msgstr "Strežnik MySQL različice nižje od 5.1." #: po/advisory_rules.php:37 msgid "" From 726594645ccd3906e39c6d8be973b2ac2d4bffd2 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 22:17:23 +0200 Subject: [PATCH 226/442] Optimize tracking query, only the first row is needed --- libraries/Tracker.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Tracker.class.php b/libraries/Tracker.class.php index e89c3fce92..aad5319480 100644 --- a/libraries/Tracker.class.php +++ b/libraries/Tracker.class.php @@ -563,7 +563,7 @@ class PMA_Tracker $sql_query .= " AND `table_name` = '" . PMA_sqlAddSlashes($tablename) ."' "; } $sql_query .= " AND `version` = '" . PMA_sqlAddSlashes($version) ."' ". - " ORDER BY `version` DESC "; + " ORDER BY `version` DESC LIMIT 1"; $mixed = PMA_DBI_fetch_array(PMA_query_as_controluser($sql_query)); From 3b85c80a40d71965cbd3e40dbcf640418bfedb74 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:17:31 +0200 Subject: [PATCH 227/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 456a2bbede..2073b996c4 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:16+0200\n" +"PO-Revision-Date: 2011-08-16 22:17+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11760,6 +11760,8 @@ msgid "" "You should upgrade, as MySQL 5.1 has improved performance, and MySQL 5.5 " "even more so." msgstr "" +"Morali bi posodobiti, saj ima MySQL 5.1 izboljšano učinkovitost, MySQL 5.5 " +"pa še bolj." #: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48 #, fuzzy, php-format From 77f7230505266458759b30a55ebcc3816d7358f7 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:17:37 +0200 Subject: [PATCH 228/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 2073b996c4..b392875756 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11764,10 +11764,10 @@ msgstr "" "pa še bolj." #: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48 -#, fuzzy, php-format +#, php-format #| msgid "Create version" msgid "Current version: %s" -msgstr "Ustvari različico" +msgstr "Trenutna različica: %s" #: po/advisory_rules.php:40 po/advisory_rules.php:45 #, fuzzy From fced0c7f7e8e94c2a804b0388d07c95e45db8c7c Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:17:50 +0200 Subject: [PATCH 229/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index b392875756..baaecd5e3b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11770,10 +11770,9 @@ msgid "Current version: %s" msgstr "Trenutna različica: %s" #: po/advisory_rules.php:40 po/advisory_rules.php:45 -#, fuzzy #| msgid "Version" msgid "Minor Version" -msgstr "Različica" +msgstr "Manjša različica" #: po/advisory_rules.php:41 msgid "Version less than 5.1.30 (the first GA release of 5.1)." From 7be8a6e0c573514252c47577c0d723fffbad7123 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:18:06 +0200 Subject: [PATCH 230/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index baaecd5e3b..f6d80f5d55 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:17+0200\n" +"PO-Revision-Date: 2011-08-16 22:18+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11776,7 +11776,7 @@ msgstr "Manjša različica" #: po/advisory_rules.php:41 msgid "Version less than 5.1.30 (the first GA release of 5.1)." -msgstr "" +msgstr "Različica nižja od 5.1.30 (prvi izid GA 5.1)." #: po/advisory_rules.php:42 msgid "" From 6694352f0c5ae67f8b80df29ee319ea538874b39 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 22:18:08 +0200 Subject: [PATCH 231/442] Only PMA_DBI_fetch_assoc is needed here --- libraries/Tracker.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Tracker.class.php b/libraries/Tracker.class.php index aad5319480..bff1f29e26 100644 --- a/libraries/Tracker.class.php +++ b/libraries/Tracker.class.php @@ -565,7 +565,7 @@ class PMA_Tracker $sql_query .= " AND `version` = '" . PMA_sqlAddSlashes($version) ."' ". " ORDER BY `version` DESC LIMIT 1"; - $mixed = PMA_DBI_fetch_array(PMA_query_as_controluser($sql_query)); + $mixed = PMA_DBI_fetch_assoc(PMA_query_as_controluser($sql_query)); // Parse log $log_schema_entries = explode('# log ', $mixed['schema_sql']); From 7bca0216e3f50b9f1bc1ec66844969691a66ad70 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:18:36 +0200 Subject: [PATCH 232/442] Translation update done using Pootle. --- po/sl.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/sl.po b/po/sl.po index f6d80f5d55..3a4c24f79d 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11783,6 +11783,8 @@ msgid "" "You should upgrade, as recent versions of MySQL 5.1 have improved " "performance and MySQL 5.5 even more so." msgstr "" +"Morali bi posodobiti, saj imajo najnovejše različice MySQL 5.1 izboljšano " +"učinkovitost, MySQL 5.5 pa še bolj." #: po/advisory_rules.php:46 msgid "Version less than 5.5.8 (the first GA release of 5.5)." From 9c6072a19d0778d6643e5ec32a203e83febec398 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:18:49 +0200 Subject: [PATCH 233/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 3a4c24f79d..4f3f407110 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11788,7 +11788,7 @@ msgstr "" #: po/advisory_rules.php:46 msgid "Version less than 5.5.8 (the first GA release of 5.5)." -msgstr "" +msgstr "Različica nižja od 5.5.8 (prvi izid GA 5.5)." #: po/advisory_rules.php:47 #, fuzzy From 20ea0a91305917620576803264d6fc0fadc0bbc7 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:19:10 +0200 Subject: [PATCH 234/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 4f3f407110..8b55699490 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:18+0200\n" +"PO-Revision-Date: 2011-08-16 22:19+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11791,10 +11791,9 @@ msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Različica nižja od 5.5.8 (prvi izid GA 5.5)." #: po/advisory_rules.php:47 -#, fuzzy #| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" -msgstr "%s bi morali nadgraditi na različico %s ali novejšo." +msgstr "Morali bi nadgraditi, na ustaljeno različico MySQL 5.5" #: po/advisory_rules.php:50 po/advisory_rules.php:55 #, fuzzy From 558da46504f00a9b38e80d26bb8a8aeac5424ee3 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:19:22 +0200 Subject: [PATCH 235/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 8b55699490..4c5d74546a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11796,10 +11796,9 @@ msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Morali bi nadgraditi, na ustaljeno različico MySQL 5.5" #: po/advisory_rules.php:50 po/advisory_rules.php:55 -#, fuzzy #| msgid "Description" msgid "Distribution" -msgstr "Opis" +msgstr "Distribucija" #: po/advisory_rules.php:51 msgid "Version is compiled from source, not a MySQL official binary." From 8c4530e338ba81851cc5f0e2c9b3708293efa4ec Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Tue, 16 Aug 2011 22:19:41 +0200 Subject: [PATCH 236/442] Simplify code --- libraries/Tracker.class.php | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/libraries/Tracker.class.php b/libraries/Tracker.class.php index bff1f29e26..de216ab9c5 100644 --- a/libraries/Tracker.class.php +++ b/libraries/Tracker.class.php @@ -531,13 +531,9 @@ class PMA_Tracker $sql_query .= " AND FIND_IN_SET('" . $statement . "',tracking) > 0" ; } $row = PMA_DBI_fetch_array(PMA_query_as_controluser($sql_query)); - if (isset($row[0])) { - $version = $row[0]; - } - if (! isset($version)) { - $version = -1; - } - return $version; + return isset($row[0]) + ? $row[0] + : -1; } From 351c2ba207a26870f60a32cff6c1fe3f934903d3 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:20:23 +0200 Subject: [PATCH 237/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 4c5d74546a..84e7971d0c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:19+0200\n" +"PO-Revision-Date: 2011-08-16 22:20+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11803,6 +11803,8 @@ msgstr "Distribucija" #: po/advisory_rules.php:51 msgid "Version is compiled from source, not a MySQL official binary." msgstr "" +"Različica je prevedena iz izvorne kode, in ni uradna dvojiška datoteka " +"MySQL." #: po/advisory_rules.php:52 msgid "" From 4c547a47d83a37b01b66b981e21814baed314ed3 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:21:08 +0200 Subject: [PATCH 238/442] Translation update done using Pootle. --- po/sl.po | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/po/sl.po b/po/sl.po index 84e7971d0c..ed8a6dd0ef 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:20+0200\n" +"PO-Revision-Date: 2011-08-16 22:21+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11802,9 +11802,7 @@ msgstr "Distribucija" #: po/advisory_rules.php:51 msgid "Version is compiled from source, not a MySQL official binary." -msgstr "" -"Različica je prevedena iz izvorne kode, in ni uradna dvojiška datoteka " -"MySQL." +msgstr "Različica je prevedena iz izvorne kode, in ni uradna izdaja MySQL." #: po/advisory_rules.php:52 msgid "" From d5e3a000549464d9b107814e22e0c00a249115a2 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:21:22 +0200 Subject: [PATCH 239/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index ed8a6dd0ef..ac98d023c5 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11817,7 +11817,7 @@ msgstr "" #: po/advisory_rules.php:56 msgid "The MySQL manual only is accurate for official MySQL binaries." -msgstr "" +msgstr "Priročnik MySQL je točen samo za uradne izdaje MySQL." #: po/advisory_rules.php:57 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" From 60068cbeacdd9638f60cffda856e199f51d3ddd3 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:21:41 +0200 Subject: [PATCH 240/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index ac98d023c5..8c8eda4d1f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11821,7 +11821,7 @@ msgstr "Priročnik MySQL je točen samo za uradne izdaje MySQL." #: po/advisory_rules.php:57 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" -msgstr "" +msgstr "Dokumentacija Percona se nahaja na http://www.percona.com/docs/wiki/" #: po/advisory_rules.php:58 msgid "'percona' found in version_comment" From 477efbde024f755c1d089fb112a0db9235a03ac3 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:22:00 +0200 Subject: [PATCH 241/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 8c8eda4d1f..1c644174cf 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11813,7 +11813,7 @@ msgstr "" #: po/advisory_rules.php:53 msgid "'source' found in version_comment" -msgstr "" +msgstr "našel sem 'source' v version_comment" #: po/advisory_rules.php:56 msgid "The MySQL manual only is accurate for official MySQL binaries." From 5cb36b1c71799533956ea25b6b7bb554a7dcd17f Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:22:09 +0200 Subject: [PATCH 242/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 1c644174cf..4be1d76f51 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:21+0200\n" +"PO-Revision-Date: 2011-08-16 22:22+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11825,7 +11825,7 @@ msgstr "Dokumentacija Percona se nahaja na http://www.percona.com/docs/wiki/" #: po/advisory_rules.php:58 msgid "'percona' found in version_comment" -msgstr "" +msgstr "našel sem 'percona' v version_comment" #: po/advisory_rules.php:60 #, fuzzy From 375cde1db364e8184a72e881138974d79b40a8d4 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:22:17 +0200 Subject: [PATCH 243/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 4be1d76f51..b6d9ecb8ed 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11828,10 +11828,9 @@ msgid "'percona' found in version_comment" msgstr "našel sem 'percona' v version_comment" #: po/advisory_rules.php:60 -#, fuzzy #| msgid "MySQL charset" msgid "MySQL Architecture" -msgstr "Kodna tabela MySQL" +msgstr "Arhitektura MySQL" #: po/advisory_rules.php:61 msgid "MySQL is not compiled as a 64-bit package." From 8b5c1b0c4cba6d4b5277c2a70d468529f8a64f1b Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:22:41 +0200 Subject: [PATCH 244/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index b6d9ecb8ed..2d9b78f4d2 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11834,7 +11834,7 @@ msgstr "Arhitektura MySQL" #: po/advisory_rules.php:61 msgid "MySQL is not compiled as a 64-bit package." -msgstr "" +msgstr "MySQL ni preveden kot 64-bitni paket." #: po/advisory_rules.php:62 msgid "" From 05e970b07054252b102879b749fed2690100b381 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:23:18 +0200 Subject: [PATCH 245/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 2d9b78f4d2..90cfe5a807 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:22+0200\n" +"PO-Revision-Date: 2011-08-16 22:23+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11846,7 +11846,7 @@ msgstr "" #: po/advisory_rules.php:63 #, php-format msgid "Available memory on this host: %s" -msgstr "" +msgstr "Razpoložljiv pomnilnik na tem gostitelju: %s" #: po/advisory_rules.php:65 #, fuzzy From d25b22500021a55d11599e6b8864633cecf7aae0 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:23:37 +0200 Subject: [PATCH 246/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 90cfe5a807..899c77d5f5 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11849,10 +11849,9 @@ msgid "Available memory on this host: %s" msgstr "Razpoložljiv pomnilnik na tem gostitelju: %s" #: po/advisory_rules.php:65 -#, fuzzy #| msgid "Query cache" msgid "Query cache disabled" -msgstr "Predpomnilnik poizvedb" +msgstr "Predpomnjenje poizvedb je onemogočeno" #: po/advisory_rules.php:66 #, fuzzy From a12b48badbf4290a3f58166659a1884055e73d15 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:23:52 +0200 Subject: [PATCH 247/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 899c77d5f5..61fe685974 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11854,10 +11854,9 @@ msgid "Query cache disabled" msgstr "Predpomnjenje poizvedb je onemogočeno" #: po/advisory_rules.php:66 -#, fuzzy #| msgid "The server is not responding" msgid "The query cache is not enabled." -msgstr "Strežnik se ne odziva" +msgstr "Predpomnjenje poizvedb ni omogočeno." #: po/advisory_rules.php:67 msgid "" From c70138eebf938e0155bcf5d257a5018369bb5534 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:24:39 +0200 Subject: [PATCH 248/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 61fe685974..c556b3cadd 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:23+0200\n" +"PO-Revision-Date: 2011-08-16 22:24+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11899,7 +11899,7 @@ msgstr "" #: po/advisory_rules.php:77 msgid "Consider increasing {query_cache_limit}." -msgstr "" +msgstr "Razmislie o povečanju {query_cache_limit}." #: po/advisory_rules.php:78 #, php-format From 138218d58eaa56ab04409803388da0b84c541a11 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:24:57 +0200 Subject: [PATCH 249/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index c556b3cadd..27847bb79c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11907,10 +11907,9 @@ msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "" #: po/advisory_rules.php:80 -#, fuzzy #| msgid "Query cache" msgid "Query Cache usage" -msgstr "Predpomnilnik poizvedb" +msgstr "Uporaba predpomnilnika poizvedb" #: po/advisory_rules.php:81 #, php-format From a009f45c84021cfbcb8022277976c3c2acad9439 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:25:06 +0200 Subject: [PATCH 250/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 27847bb79c..bc570ac5c3 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:24+0200\n" +"PO-Revision-Date: 2011-08-16 22:25+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11899,7 +11899,7 @@ msgstr "" #: po/advisory_rules.php:77 msgid "Consider increasing {query_cache_limit}." -msgstr "Razmislie o povečanju {query_cache_limit}." +msgstr "Razmislite o povečanju {query_cache_limit}." #: po/advisory_rules.php:78 #, php-format From 3baed4d9931b7ea0be83abb2b493ef62367fb6d8 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:25:42 +0200 Subject: [PATCH 251/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index bc570ac5c3..e1b61934df 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11930,10 +11930,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:85 -#, fuzzy #| msgid "Query cache" msgid "Query cache fragmentation" -msgstr "Predpomnilnik poizvedb" +msgstr "Razdrobljenost predpomnilnika poizvedb" #: po/advisory_rules.php:86 msgid "The query cache is considerably fragmented." From 444019322060501f77b7dca689cd73329d186a6c Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:26:06 +0200 Subject: [PATCH 252/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index e1b61934df..784027a570 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:25+0200\n" +"PO-Revision-Date: 2011-08-16 22:26+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1129,10 +1129,9 @@ msgid "Query statistics" msgstr "Statistika poizvedb" #: js/messages.php:93 -#, fuzzy #| msgid "Failed to read configuration file" msgid "Local monitor configuration icompatible" -msgstr "Ne morem prebrati konfiguracijske datoteke" +msgstr "Konfiguracija lokalnega nadziranja ni združljiva" #: js/messages.php:94 msgid "" From 233e9df0bafb630aac420c9e2e88c95213603005 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:26:43 +0200 Subject: [PATCH 253/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 784027a570..80e3353c6f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11567,10 +11567,9 @@ msgid "Data Label" msgstr "Podatkovna oznaka" #: tbl_zoom_select.php:297 -#, fuzzy #| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" -msgstr "Največje število vrstic za prikaz" +msgstr "Največje število vrstic za izris" #: tbl_zoom_select.php:388 msgid "Browse/Edit the points" From aa99dce914d4e0d8a480db0f219ed7329a2e385f Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:27:11 +0200 Subject: [PATCH 254/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 80e3353c6f..3ed30f2b15 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:26+0200\n" +"PO-Revision-Date: 2011-08-16 22:27+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11982,10 +11982,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:95 -#, fuzzy #| msgid "Query cache" msgid "Query cache max size" -msgstr "Predpomnilnik poizvedb" +msgstr "Največja velikost predpomnilnika poizvedb" #: po/advisory_rules.php:96 msgid "" From 258b4ed6a52a6d6ed7bfdc62a077d554a4495fe3 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:27:31 +0200 Subject: [PATCH 255/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 3ed30f2b15..c8e98e9fb8 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12001,7 +12001,7 @@ msgstr "" #: po/advisory_rules.php:98 #, php-format msgid "Current query cache size: %s" -msgstr "" +msgstr "Trenutna velikost predpomnilnika poizvedb: %s" #: po/advisory_rules.php:100 #, fuzzy From f4da63e8ab1fd6aff8ea0fcd88cada4e2f46b6bb Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:27:52 +0200 Subject: [PATCH 256/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index c8e98e9fb8..00ce2964b6 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12004,10 +12004,9 @@ msgid "Current query cache size: %s" msgstr "Trenutna velikost predpomnilnika poizvedb: %s" #: po/advisory_rules.php:100 -#, fuzzy #| msgid "Query results" msgid "Query cache min result size" -msgstr "Rezultati poizvedbe" +msgstr "Velikost najmanjšega rezultata predpomnilnika poizvedb" #: po/advisory_rules.php:101 msgid "" From 3111ff84ba0a7bd3b1745fd2bdfb88ac4cd84bf3 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:28:09 +0200 Subject: [PATCH 257/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 00ce2964b6..0295c637d0 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:27+0200\n" +"PO-Revision-Date: 2011-08-16 22:28+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12027,7 +12027,7 @@ msgstr "" #: po/advisory_rules.php:103 msgid "query_cache_limit is set to 1 MiB" -msgstr "" +msgstr "query_cache_limit je nastavljen na 1 MiB" #: po/advisory_rules.php:105 #, fuzzy From fd173026ac8187df4451dc75515cc7c9b3c42811 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:28:35 +0200 Subject: [PATCH 258/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 0295c637d0..aa3f43d353 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12030,10 +12030,9 @@ msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit je nastavljen na 1 MiB" #: po/advisory_rules.php:105 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Percentage of sorts that cause temporary tables" -msgstr "Omogoča ustvarjanje začasnih tabel." +msgstr "Odstotek razvrščanj, ki so povzročila začasne tabele" #: po/advisory_rules.php:106 po/advisory_rules.php:111 #, fuzzy From 4bc5b57786a1b66aa5a2a3409b5b8945ef05118b Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:28:51 +0200 Subject: [PATCH 259/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index aa3f43d353..c6a447d250 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12035,10 +12035,9 @@ msgid "Percentage of sorts that cause temporary tables" msgstr "Odstotek razvrščanj, ki so povzročila začasne tabele" #: po/advisory_rules.php:106 po/advisory_rules.php:111 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Too many sorts are causing temporary tables." -msgstr "Omogoča ustvarjanje začasnih tabel." +msgstr "Preveč razvrščanj povzroča začasne tabele." #: po/advisory_rules.php:107 po/advisory_rules.php:112 msgid "" From da0357ae2d812216eec7baf6a589a15deccfbb96 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:29:33 +0200 Subject: [PATCH 260/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index c6a447d250..e978a0d156 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:28+0200\n" +"PO-Revision-Date: 2011-08-16 22:29+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12044,6 +12044,8 @@ msgid "" "Consider increasing sort_buffer_size and/or read_rnd_buffer_size, depending " "on your system memory limits" msgstr "" +"Razmislite o povečanju sort_buffer_size in/ali read_rnd_buffer_size, odvisno " +"od omejitev vašega sistemskega pomnilnika" #: po/advisory_rules.php:108 #, php-format From 8dc7d2ce23cdd1e87cc0a9f7c5385c847ca9dd0a Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:29:59 +0200 Subject: [PATCH 261/442] Translation update done using Pootle. --- po/sl.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/sl.po b/po/sl.po index e978a0d156..39010dbcab 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12053,6 +12053,8 @@ msgid "" "%s%% of all sorts cause temporary tables, this value should be lower than " "10%%." msgstr "" +"%s %% vseh razvrščanj povzroča začasne tabele; ta vrednost bi morala biti " +"nižja od 10 %%." #: po/advisory_rules.php:110 #, fuzzy From 640b339478ca2201b5ddf477d12eb38945be1897 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:30:15 +0200 Subject: [PATCH 262/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 39010dbcab..d501532c02 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:29+0200\n" +"PO-Revision-Date: 2011-08-16 22:30+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12057,10 +12057,9 @@ msgstr "" "nižja od 10 %%." #: po/advisory_rules.php:110 -#, fuzzy #| msgid "Allows creating temporary tables." msgid "Rate of sorts that cause temporary tables" -msgstr "Omogoča ustvarjanje začasnih tabel." +msgstr "Delež razvrščanj, ki povzroča začasne tabele" #: po/advisory_rules.php:113 #, php-format From fb43dd48f398979cc40fddb7714c5534015ceb38 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:30:37 +0200 Subject: [PATCH 263/442] Translation update done using Pootle. --- po/sl.po | 1 + 1 file changed, 1 insertion(+) diff --git a/po/sl.po b/po/sl.po index d501532c02..4a9cbde2c8 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12066,6 +12066,7 @@ msgstr "Delež razvrščanj, ki povzroča začasne tabele" msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." msgstr "" +"Povprečje začasnih tabel: %s; ta vrednost bi morala biti manj kot 1 na uro." #: po/advisory_rules.php:115 #, fuzzy From c70565e97b79ae9bfd3b041f49e200e3f4d7d9ac Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:30:58 +0200 Subject: [PATCH 264/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 4a9cbde2c8..e76dc48a6b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12069,10 +12069,9 @@ msgstr "" "Povprečje začasnih tabel: %s; ta vrednost bi morala biti manj kot 1 na uro." #: po/advisory_rules.php:115 -#, fuzzy #| msgid "Start row" msgid "Sort rows" -msgstr "Začetna vrstica" +msgstr "Razvrščanje vrstic" #: po/advisory_rules.php:116 msgid "There are lots of rows being sorted." From 10399e1e56b51de190b6887809c57e3dba565e7b Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:31:15 +0200 Subject: [PATCH 265/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index e76dc48a6b..35ca7b2669 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:30+0200\n" +"PO-Revision-Date: 2011-08-16 22:31+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12075,7 +12075,7 @@ msgstr "Razvrščanje vrstic" #: po/advisory_rules.php:116 msgid "There are lots of rows being sorted." -msgstr "" +msgstr "Veliko vrstic je razvrščanih." #: po/advisory_rules.php:117 msgid "" From 9a4e7b5f37df4238a0d0e06a0fbfdac31097b486 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:31:38 +0200 Subject: [PATCH 266/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 35ca7b2669..10b39b6cf6 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12088,7 +12088,7 @@ msgstr "" #: po/advisory_rules.php:118 #, php-format msgid "Sorted rows average: %s" -msgstr "" +msgstr "Povprečje razvrščenih vrstic: %s" #: po/advisory_rules.php:120 #, fuzzy From 699acc288338f6300b582900f37685ee06bd9687 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:31:59 +0200 Subject: [PATCH 267/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 10b39b6cf6..f62a631821 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12091,10 +12091,9 @@ msgid "Sorted rows average: %s" msgstr "Povprečje razvrščenih vrstic: %s" #: po/advisory_rules.php:120 -#, fuzzy #| msgid "There are no routines to display." msgid "Rate of joins without indexes" -msgstr "Ni rutin za prikaz." +msgstr "Delež stikov brez indeksov" #: po/advisory_rules.php:121 #, fuzzy From 2fbfbdeb7bf2d16ade3a749eafe898007e00b56a Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:32:16 +0200 Subject: [PATCH 268/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index f62a631821..aeb88f9d8c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:31+0200\n" +"PO-Revision-Date: 2011-08-16 22:32+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12096,10 +12096,9 @@ msgid "Rate of joins without indexes" msgstr "Delež stikov brez indeksov" #: po/advisory_rules.php:121 -#, fuzzy #| msgid "There are no routines to display." msgid "There are too many joins without indexes." -msgstr "Ni rutin za prikaz." +msgstr "Obstaja preveč stikov brez indeksov." #: po/advisory_rules.php:122 msgid "" From d8f469a1d24b1388af013ff1de1bddcee851abf3 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:32:45 +0200 Subject: [PATCH 269/442] Translation update done using Pootle. --- po/sl.po | 1 + 1 file changed, 1 insertion(+) diff --git a/po/sl.po b/po/sl.po index aeb88f9d8c..2ca14cc96b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12110,6 +12110,7 @@ msgstr "" #, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" msgstr "" +"Povprečje stikov tabel: %s; ta vrednost bi morala biti manj kot 1 na uro" #: po/advisory_rules.php:125 msgid "Rate of reading first index entry" From c77ad3db179b41124f3d002956fc939101e4c324 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:33:12 +0200 Subject: [PATCH 270/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 2ca14cc96b..010561a4a6 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:32+0200\n" +"PO-Revision-Date: 2011-08-16 22:33+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12158,10 +12158,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:135 -#, fuzzy #| msgid "Where to show the table row links" msgid "Rate of reading next table row" -msgstr "Kje naj prikažem povezave vrstic tabel" +msgstr "Delež branja naslednje vrstice v tabeli" #: po/advisory_rules.php:136 #, fuzzy From 8d10579dae62ee4a4ff4d02b91079c28e19b9a1d Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:33:17 +0200 Subject: [PATCH 271/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 010561a4a6..18b2129838 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12163,10 +12163,9 @@ msgid "Rate of reading next table row" msgstr "Delež branja naslednje vrstice v tabeli" #: po/advisory_rules.php:136 -#, fuzzy #| msgid "Where to show the table row links" msgid "The rate of reading the next table row is high." -msgstr "Kje naj prikažem povezave vrstic tabel" +msgstr "Delež branja naslednje vrstice v tabeli je visok." #: po/advisory_rules.php:137 msgid "" From a112d3f1560a1fc319ca861ed254a00605d9b532 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:33:27 +0200 Subject: [PATCH 272/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 18b2129838..7ae0655738 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12181,7 +12181,7 @@ msgstr "" #: po/advisory_rules.php:140 msgid "tmp_table_size vs. max_heap_table_size" -msgstr "" +msgstr "tmp_table_size proti max_heap_table_size" #: po/advisory_rules.php:141 msgid "tmp_table_size and max_heap_table_size are not the same." From b1764e27b97bcff7c4661a2fc5dc257ee03ebad5 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:33:35 +0200 Subject: [PATCH 273/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 7ae0655738..458287bf56 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12185,7 +12185,7 @@ msgstr "tmp_table_size proti max_heap_table_size" #: po/advisory_rules.php:141 msgid "tmp_table_size and max_heap_table_size are not the same." -msgstr "" +msgstr "tmp_table_size in max_heap_table_size nista enaki." #: po/advisory_rules.php:142 msgid "" From 364487023ec7ebf1ab9bb9a97454d9a784639956 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:33:48 +0200 Subject: [PATCH 274/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 458287bf56..8972a82ff0 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12198,7 +12198,7 @@ msgstr "" #: po/advisory_rules.php:143 #, php-format msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" -msgstr "" +msgstr "Trenutni vrednosti sta tmp_table_size: %s, max_heap_table_size: %s" #: po/advisory_rules.php:145 #, fuzzy From 10569a165b4cbd2e28d9987977adac53f1c0b955 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:33:59 +0200 Subject: [PATCH 275/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 8972a82ff0..cf2ef21a37 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12201,10 +12201,9 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Trenutni vrednosti sta tmp_table_size: %s, max_heap_table_size: %s" #: po/advisory_rules.php:145 -#, fuzzy #| msgid "Where to show the table row links" msgid "Percentage of temp tables on disk" -msgstr "Kje naj prikažem povezave vrstic tabel" +msgstr "Odstotek začasnih tabel na disku" #: po/advisory_rules.php:146 po/advisory_rules.php:151 msgid "" From 592e6021b07502579d2c25e6eba3491b1f1aa29f Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:34:27 +0200 Subject: [PATCH 276/442] Translation update done using Pootle. --- po/sl.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index cf2ef21a37..a78da3eb04 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:33+0200\n" +"PO-Revision-Date: 2011-08-16 22:34+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12210,6 +12210,7 @@ msgid "" "Many temporary tables are being written to disk instead of being kept in " "memory." msgstr "" +"Veliko začasnih tabel je zapisanih na disk, namesto shranjenih v pomnilniku." #: po/advisory_rules.php:147 msgid "" From b65916775cce961cb50bec869a543dd38df9fc1e Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:35:34 +0200 Subject: [PATCH 277/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index a78da3eb04..173672ca81 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:34+0200\n" +"PO-Revision-Date: 2011-08-16 22:35+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12229,6 +12229,8 @@ msgid "" "%s%% of all temporary tables are being written to disk, this value should be " "below 25%%" msgstr "" +"%s %% vseh začasnih tabel je zapisanih na disk; ta vrednost bi morala biti " +"pod 25 %%" #: po/advisory_rules.php:150 #, fuzzy From c6d27e6e342917542893df1c1bbaa339c32aa012 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:35:58 +0200 Subject: [PATCH 278/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 173672ca81..4d125d7ab2 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12258,10 +12258,9 @@ msgid "" msgstr "" #: po/advisory_rules.php:155 -#, fuzzy #| msgid "Sort buffer size" msgid "MyISAM key buffer size" -msgstr "Velikost medpomnilnika razvrščanja" +msgstr "Velikost medpomnilnika ključev MyISAM" #: po/advisory_rules.php:156 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." From 981a292839821af7244133a6818a019d175ed873 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:36:07 +0200 Subject: [PATCH 279/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 4d125d7ab2..d629021501 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:35+0200\n" +"PO-Revision-Date: 2011-08-16 22:36+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12274,7 +12274,7 @@ msgstr "" #: po/advisory_rules.php:158 msgid "key_buffer_size is 0" -msgstr "" +msgstr "key_buffer_size je 0" #: po/advisory_rules.php:160 #, fuzzy, php-format From f4755f3e7dc7f0168a0ea867674dc729bf4d276f Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:36:30 +0200 Subject: [PATCH 280/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index d629021501..7b6b1361ac 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12277,10 +12277,10 @@ msgid "key_buffer_size is 0" msgstr "key_buffer_size je 0" #: po/advisory_rules.php:160 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" -msgstr "Velikost medpomnilnika razvrščanja" +msgstr "Največji %% medpomnilnika ključev MyISAM kadar koli uporabljen" #: po/advisory_rules.php:161 po/advisory_rules.php:166 #, fuzzy, php-format From 4f15a261a6f865264128c3a9ff1abdda31f6b194 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:37:20 +0200 Subject: [PATCH 281/442] Translation update done using Pootle. --- po/sl.po | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 7b6b1361ac..b9d14150da 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:36+0200\n" +"PO-Revision-Date: 2011-08-16 22:37+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12283,10 +12283,12 @@ msgid "Max %% MyISAM key buffer ever used" msgstr "Največji %% medpomnilnika ključev MyISAM kadar koli uporabljen" #: po/advisory_rules.php:161 po/advisory_rules.php:166 -#, fuzzy, php-format +#, php-format #| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." -msgstr "Velikost medpomnilnika razvrščanja" +msgstr "" +"%% uporabljenega medpomnilnika ključev MyISAM (predpomnilnika indeksov) je " +"nizek." #: po/advisory_rules.php:162 po/advisory_rules.php:167 msgid "" From 81d2207215ddf5f5bde7199d180e6f59b8bb1579 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:37:38 +0200 Subject: [PATCH 282/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index b9d14150da..fe2da300b2 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12303,10 +12303,9 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%" msgstr "" #: po/advisory_rules.php:165 -#, fuzzy #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" -msgstr "Velikost medpomnilnika razvrščanja" +msgstr "Odstotek uporabljenega medpomnilnika ključev" #: po/advisory_rules.php:168 #, php-format From d1f63483a546d6d6b23d71fd800ab112f893b618 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:37:55 +0200 Subject: [PATCH 283/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index fe2da300b2..fda93f5da8 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12305,7 +12305,7 @@ msgstr "" #: po/advisory_rules.php:165 #| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" -msgstr "Odstotek uporabljenega medpomnilnika ključev" +msgstr "Odstotek uporabljenega medpomnilnika ključev MyISAM" #: po/advisory_rules.php:168 #, php-format From fff29c89b623a8566345e31e18f27f6571ef2865 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:38:20 +0200 Subject: [PATCH 284/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index fda93f5da8..a8f764122b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:37+0200\n" +"PO-Revision-Date: 2011-08-16 22:38+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12311,6 +12311,8 @@ msgstr "Odstotek uporabljenega medpomnilnika ključev MyISAM" #, php-format msgid "%% MyISAM key buffer used: %s, this value should be above 95%%" msgstr "" +"%% uporabljenega medpomnilnika ključev MyISAM: %s; ta vrednost bi morala " +"biti nad 95 %%" #: po/advisory_rules.php:170 msgid "Percentage of index reads from memory" From e8254a2932113a3628a9f172697d04bdb88bf938 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:38:38 +0200 Subject: [PATCH 285/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index a8f764122b..f7086b7b04 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12316,7 +12316,7 @@ msgstr "" #: po/advisory_rules.php:170 msgid "Percentage of index reads from memory" -msgstr "" +msgstr "Odstotek branj indeksov iz pomnilnika" #: po/advisory_rules.php:171 #, php-format From b0922b58ae313272d2f7d36b941792bbdbce017e Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:38:53 +0200 Subject: [PATCH 286/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index f7086b7b04..352a7e071c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -12333,10 +12333,9 @@ msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" #: po/advisory_rules.php:175 -#, fuzzy #| msgid "Create table" msgid "Rate of table open" -msgstr "Ustvari tabelo" +msgstr "Delež odpiranj tabel" #: po/advisory_rules.php:176 #, fuzzy From 7b02db860e0399ed27cdb7606ab3e41360539b00 Mon Sep 17 00:00:00 2001 From: Domen Date: Tue, 16 Aug 2011 22:39:02 +0200 Subject: [PATCH 287/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 352a7e071c..4e42fc9385 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-15 10:09+0200\n" -"PO-Revision-Date: 2011-08-16 22:38+0200\n" +"PO-Revision-Date: 2011-08-16 22:39+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12338,10 +12338,9 @@ msgid "Rate of table open" msgstr "Delež odpiranj tabel" #: po/advisory_rules.php:176 -#, fuzzy #| msgid "The current number of pending writes." msgid "The rate of opening tables is high." -msgstr "Trenutno število čakajočih pisanj." +msgstr "Delež odpiranj tabel je visok." #: po/advisory_rules.php:177 msgid "" From 35b3595ec0e6833b9199da0cb238243b4c7457fe Mon Sep 17 00:00:00 2001 From: Dieter Adriaenssens Date: Tue, 16 Aug 2011 22:39:46 +0200 Subject: [PATCH 288/442] coding style and wrapping long lines --- libraries/common.lib.php | 72 ++++++++++++++++++++++++++-------------- tbl_change.php | 55 +++++++++++++++++------------- 2 files changed, 79 insertions(+), 48 deletions(-) diff --git a/libraries/common.lib.php b/libraries/common.lib.php index eee6035a88..0b89345629 100644 --- a/libraries/common.lib.php +++ b/libraries/common.lib.php @@ -94,7 +94,7 @@ function PMA_getIcon($icon, $alternate = '', $force_text = false, $noSprite = fa $button .= ''; if ($include_icon) { - if($noSprite) { + if ($noSprite) { $button .= ''; } else { @@ -713,8 +713,8 @@ function PMA_getTableList($db, $tables = null, $limit_offset = 0, $limit_count = // in $group we save the reference to the place in $table_groups // where to store the table info if ($GLOBALS['cfg']['LeftFrameDBTree'] - && $sep && strstr($table_name, $sep)) - { + && $sep && strstr($table_name, $sep) + ) { $parts = explode($sep, $table_name); $group =& $table_groups; @@ -754,7 +754,8 @@ function PMA_getTableList($db, $tables = null, $limit_offset = 0, $limit_count = if ($GLOBALS['cfg']['ShowTooltipAliasTB'] - && $GLOBALS['cfg']['ShowTooltipAliasTB'] !== 'nested') { + && $GLOBALS['cfg']['ShowTooltipAliasTB'] !== 'nested' + ) { // switch tooltip and name $table['Comment'] = $table['Name']; $table['disp_name'] = $table['Comment']; @@ -935,7 +936,8 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view // @todo what about $GLOBALS['display_query']??? // @todo this is REALLY the wrong place to do this - very unexpected here if (strlen($GLOBALS['table']) - && $GLOBALS['sql_query'] == 'TRUNCATE TABLE ' . PMA_backquote($GLOBALS['table'])) { + && $GLOBALS['sql_query'] == 'TRUNCATE TABLE ' . PMA_backquote($GLOBALS['table']) + ) { if (PMA_Table::sGetStatusInfo($GLOBALS['db'], $GLOBALS['table'], 'Index_length') > 1024) { PMA_DBI_try_query('REPAIR TABLE ' . PMA_backquote($GLOBALS['table'])); } @@ -1029,7 +1031,8 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view */ if (isset($analyzed_display_query[0]['queryflags']['select_from']) - && isset($GLOBALS['sql_limit_to_append'])) { + && isset($GLOBALS['sql_limit_to_append']) + ) { $query_base = $analyzed_display_query[0]['section_before_limit'] . "\n" . $GLOBALS['sql_limit_to_append'] . $analyzed_display_query[0]['section_after_limit']; @@ -1142,7 +1145,8 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view // Refresh query if (! empty($cfg['SQLQuery']['Refresh']) - && preg_match('@^(SELECT|SHOW)[[:space:]]+@i', $sql_query)) { + && preg_match('@^(SELECT|SHOW)[[:space:]]+@i', $sql_query) + ) { $refresh_link = 'import.php' . PMA_generate_common_url($url_params); $refresh_link = ' [' . PMA_linkOrButton($refresh_link, __('Refresh')) . ']'; } else { @@ -1150,7 +1154,8 @@ function PMA_showMessage($message, $sql_query = null, $type = 'notice', $is_view } //show as php if (! empty($cfg['SQLValidator']['use']) - && ! empty($cfg['SQLQuery']['Validate'])) { + && ! empty($cfg['SQLQuery']['Validate']) + ) { $validate_params = $url_params; if (!empty($GLOBALS['validatequery'])) { $validate_message = __('Skip Validate SQL') ; @@ -1251,8 +1256,9 @@ function PMA_profilingSupported() // (avoid a trip to the server for MySQL before 5.0.37) // and do not set a constant as we might be switching servers if (defined('PMA_MYSQL_INT_VERSION') - && PMA_MYSQL_INT_VERSION >= 50037 - && PMA_DBI_fetch_value("SHOW VARIABLES LIKE 'profiling'")) { + && PMA_MYSQL_INT_VERSION >= 50037 + && PMA_DBI_fetch_value("SHOW VARIABLES LIKE 'profiling'") + ) { PMA_cacheSet('profiling_supported', true, true); } else { PMA_cacheSet('profiling_supported', false, true); @@ -1734,7 +1740,10 @@ function PMA_linkOrButton($url, $message, $tag_params = array(), $displayed_message = ''; // Add text if not already added - if (stristr($message, ''; } @@ -1996,7 +2005,8 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, $force $meta->orgname = $meta->name; if (isset($GLOBALS['analyzed_sql'][0]['select_expr']) - && is_array($GLOBALS['analyzed_sql'][0]['select_expr'])) { + && is_array($GLOBALS['analyzed_sql'][0]['select_expr']) + ) { foreach ($GLOBALS['analyzed_sql'][0]['select_expr'] as $select_expr) { // need (string) === (string) // '' !== 0 but '' == 0 @@ -2019,7 +2029,10 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, $force // a view because this view might be updatable. // (The isView() verification should not be costly in most cases // because there is some caching in the function). - if (isset($meta->orgtable) && $meta->table != $meta->orgtable && ! PMA_Table::isView($GLOBALS['db'], $meta->table)) { + if (isset($meta->orgtable) + && $meta->table != $meta->orgtable + && ! PMA_Table::isView($GLOBALS['db'], $meta->table) + ) { $meta->table = $meta->orgtable; } @@ -2042,7 +2055,10 @@ function PMA_getUniqueCondition($handle, $fields_cnt, $fields_meta, $row, $force } else { // timestamp is numeric on some MySQL 4.1 // for real we use CONCAT above and it should compare to string - if ($meta->numeric && $meta->type != 'timestamp' && $meta->type != 'real') { + if ($meta->numeric + && $meta->type != 'timestamp' + && $meta->type != 'real' + ) { $con_val = '= ' . $row[$i]; } elseif (($meta->type == 'blob' || $meta->type == 'string') // hexify only if this is a true not empty BLOB or a BINARY @@ -2131,10 +2147,13 @@ function PMA_buttonOrImage($button_name, $button_class, $image_name, $text, . PMA_getIcon($image, $text) .'' . "\n"; } else { - echo '' - . ($GLOBALS['cfg']['PropertiesIconic'] === 'both' ? ' ' . htmlspecialchars($text) : '') . "\n"; + echo '' + . ($GLOBALS['cfg']['PropertiesIconic'] === 'both' + ? ' ' . htmlspecialchars($text) + : '') . "\n"; } } // end function @@ -2228,7 +2247,8 @@ function PMA_pageselector($rows, $pageNow = 1, $nbTotalPage = 1, } else { $selected = ''; } - $gotopage .= ' ' . "\n"; + $gotopage .= ' ' . "\n"; } $gotopage .= ' '; @@ -2363,8 +2383,8 @@ function PMA_getDbLink($database = null) } return '' - .htmlspecialchars($database) . ''; + . ' title="' . sprintf(__('Jump to database "%s".'), htmlspecialchars($database)) . '">' + . htmlspecialchars($database) . ''; } /** @@ -3185,7 +3205,8 @@ function PMA_getFunctionsForField($field, $insert_mode) // or something similar. Then directly look up the entry in the RestrictFunctions array, // which will then reveal the available dropdown options if (isset($cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])]) - && isset($cfg['RestrictFunctions'][$cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])]])) { + && isset($cfg['RestrictFunctions'][$cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])]]) + ) { $current_func_type = $cfg['RestrictColumnTypes'][strtoupper($field['True_Type'])]; $dropdown = $cfg['RestrictFunctions'][$current_func_type]; $default_function = $cfg['DefaultFunctions'][$current_func_type]; @@ -3202,9 +3223,10 @@ function PMA_getFunctionsForField($field, $insert_mode) // and the column does not have the // ON UPDATE DEFAULT TIMESTAMP attribute. if ($field['True_Type'] == 'timestamp' - && empty($field['Default']) - && empty($data) - && ! isset($analyzed_sql[0]['create_table_fields'][$field['Field']]['on_update_current_timestamp'])) { + && empty($field['Default']) + && empty($data) + && ! isset($analyzed_sql[0]['create_table_fields'][$field['Field']]['on_update_current_timestamp']) + ) { $default_function = $cfg['DefaultFunctions']['first_timestamp']; } // For primary keys of type char(36) or varchar(36) UUID if the default function diff --git a/tbl_change.php b/tbl_change.php index 8befabb7f2..9148ef32f3 100644 --- a/tbl_change.php +++ b/tbl_change.php @@ -791,26 +791,26 @@ foreach ($rows as $row_id => $vrow) { // We don't want binary data destroyed elseif ($field['is_binary'] || $field['is_blob']) { if (($cfg['ProtectBinary'] && $field['is_blob']) - || ($cfg['ProtectBinary'] == 'all' && $field['is_binary'])) { + || ($cfg['ProtectBinary'] == 'all' && $field['is_binary']) + ) { echo "\n"; // for blobstreaming - if (PMA_BS_IsTablePBMSEnabled($db, $table, $tbl_type) && PMA_BS_IsPBMSReference($data, $db)) - { - echo ''; - echo ' ' . __('Remove BLOB Repository Reference') . "
"; - echo PMA_BS_CreateReferenceLink($data, $db); - echo "
"; + if (PMA_BS_IsTablePBMSEnabled($db, $table, $tbl_type) + && PMA_BS_IsPBMSReference($data, $db) + ) { + echo ''; + echo ' ' . __('Remove BLOB Repository Reference') . "
"; + echo PMA_BS_CreateReferenceLink($data, $db); + echo "
"; + } else { + echo __('Binary - do not edit'); + if (isset($data)) { + $data_size = PMA_formatByteDown(strlen(stripslashes($data)), 3, 1); + echo ' ('. $data_size [0] . ' ' . $data_size[1] . ')'; + unset($data_size); } - else - { - echo __('Binary - do not edit'); - if (isset($data)) { - $data_size = PMA_formatByteDown(strlen(stripslashes($data)), 3, 1); - echo ' ('. $data_size [0] . ' ' . $data_size[1] . ')'; - unset($data_size); - } - echo "\n"; - } // end if (PMA_BS_IsTablePBMSEnabled($db, $table, $tbl_type) && PMA_BS_IsPBMSReference($data, $db)) + echo "\n"; + } // end if (PMA_BS_IsTablePBMSEnabled($db, $table, $tbl_type) && PMA_BS_IsPBMSReference($data, $db)) ?> @@ -849,7 +849,9 @@ foreach ($rows as $row_id => $vrow) { if ($is_upload && $field['is_blob']) { // check if field type is of longblob and if the table is PBMS enabled. - if (($field['pma_type'] == "longblob") && PMA_BS_IsTablePBMSEnabled($db, $table, $tbl_type)) { + if (($field['pma_type'] == "longblob") + && PMA_BS_IsTablePBMSEnabled($db, $table, $tbl_type) + ) { echo '
'; echo ' ' . __('Upload to BLOB repository'); } @@ -898,12 +900,14 @@ foreach ($rows as $row_id => $vrow) { elseif (in_array($field['pma_type'], $no_support_types)) { // ignore this column to avoid changing it - } - else { + } else { // field size should be at least 4 and max 40 $fieldsize = min(max($field['len'], 4), 40); echo $backup_field . "\n"; - if ($field['is_char'] && ($cfg['CharEditing'] == 'textarea' || strpos($data, "\n") !== false)) { + if ($field['is_char'] + && ($cfg['CharEditing'] == 'textarea' + || strpos($data, "\n") !== false) + ) { echo "\n"; ?> '); $editArea.find('textarea').live('keyup', function(e) { @@ -925,7 +942,6 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi $editArea.append('
' + g.cellEditHint + '
'); g.isEditCellTextEditable = true; } - $editArea.show(); } }, @@ -1225,16 +1241,14 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi need_to_post = true; } } else { - if($this_field.is(":not(.relation, .enum, .set, .bit)")) { - this_field_params[field_name] = $(g.cEdit).find('textarea').val(); - } else if ($this_field.is('.bit')) { + if ($this_field.is('.bit')) { this_field_params[field_name] = '0b' + $(g.cEdit).find('textarea').val(); } else if ($this_field.is('.set')) { $test_element = $(g.cEdit).find('select'); this_field_params[field_name] = $test_element.map(function(){ return $(this).val(); }).get().join(","); - } else { + } else if ($this_field.is('.relation, .enum')) { // results from a drop-down $test_element = $(g.cEdit).find('select'); if ($test_element.length != 0) { @@ -1246,6 +1260,10 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi if ($test_element.length != 0) { this_field_params[field_name] = $test_element.text(); } + } else if ($this_field.is('.datefield, .datetimefield, .timestampfield')) { + this_field_params[field_name] = $(g.cEdit).find('input[type=text]').val(); + } else { + this_field_params[field_name] = $(g.cEdit).find('textarea').val(); } if (g.wasEditedCellNull || this_field_params[field_name] != PMA_getCellValue(g.currentEditCell)) { need_to_post = true; @@ -1545,6 +1563,9 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi e.preventDefault(); } }); + $(g.cEdit).find('.edit_area').click(function(e) { + e.stopPropagation(); + }); $('html').click(function(e) { // hide edit cell if the click is not from g.cEdit if ($(e.target).parents().index(g.cEdit) == -1) { diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php index 3ec67e5672..4baa65fbd0 100644 --- a/libraries/display_tbl.lib.php +++ b/libraries/display_tbl.lib.php @@ -1411,11 +1411,19 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) $hide_class = ($col_visib && !$col_visib[$j] && // hide per only if the display direction is not vertical $_SESSION['tmp_user_values']['disp_direction'] != 'vertical') ? 'hide' : ''; + // handle datetime-related class, for grid editing + if (substr($meta->type, 0, 9) == 'timestamp' || $meta->type == 'datetime') { + $field_type_class = 'datetimefield'; + } else if ($meta->type == 'date') { + $field_type_class = 'datefield'; + } else { + $field_type_class = ''; + } $pointer = $i; $is_field_truncated = false; //If the previous column had blob data, we need to reset the class // to $inline_edit_class - $class = 'data ' . $grid_edit_class . ' ' . $not_null_class . ' ' . $relation_class . ' ' . $hide_class; //' ' . $alternating_color_class . + $class = 'data ' . $grid_edit_class . ' ' . $not_null_class . ' ' . $relation_class . ' ' . $hide_class . ' ' . $field_type_class; //' ' . $alternating_color_class . // See if this column should get highlight because it's used in the // where-query. diff --git a/sql.php b/sql.php index 7e9c0f6486..e825c7b73f 100644 --- a/sql.php +++ b/sql.php @@ -15,6 +15,7 @@ require_once './libraries/check_user_privileges.lib.php'; require_once './libraries/bookmark.lib.php'; $GLOBALS['js_include'][] = 'jquery/jquery-ui-1.8.custom.js'; +$GLOBALS['js_include'][] = 'jquery/timepicker.js'; $GLOBALS['js_include'][] = 'tbl_change.js'; if (isset($_SESSION['profiling'])) { From 3193c113c8cf9e57986ea294e3699b36779f4d59 Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Wed, 17 Aug 2011 13:38:39 +0800 Subject: [PATCH 323/442] Grid edit: fix NULL-related things when editing datetime field --- js/makegrid.js | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/js/makegrid.js b/js/makegrid.js index aca1bfc833..ae737f663a 100644 --- a/js/makegrid.js +++ b/js/makegrid.js @@ -729,7 +729,7 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi $checkbox.attr('checked', false); }) } else { - $(g.cEdit).find('input[type=text]').live('change', function(e) { + $(g.cEdit).find('input[type=text]').live('keypress change', function(e) { $checkbox.attr('checked', false); }) $editArea.find('textarea').live('keydown', function(e) { @@ -919,18 +919,30 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi } else if ($td.is('.datefield, .datetimefield, .timestampfield')) { var $input_field = $(g.cEdit).find('input[type=text]'); - // remember current datetime value in $input_field - var current_datetime_value = $input_field.val(); + // remember current datetime value in $input_field, if it is not null + var is_null = $td.is('.null'); + var current_datetime_value = !is_null ? $input_field.val() : ''; var showTimeOption = true; if ($td.is('.datefield')) { showTimeOption = false; } - PMA_addDatepicker($editArea, { altField: $input_field, showTimepicker: showTimeOption }); + PMA_addDatepicker($editArea, { + altField: $input_field, + showTimepicker: showTimeOption, + onSelect: function(dateText, inst) { + // remove null checkbox if it exists + $(g.cEdit).find('.null_div input[type=checkbox]').attr('checked', false); + } + }); // force to restore modified $input_field value after adding datepicker // (after adding a datepicker, the input field doesn't display the time anymore, only the date) - $editArea.datetimepicker('setDate', current_datetime_value); + if (!is_null) { + $editArea.datetimepicker('setDate', current_datetime_value); + } else { + $input_field.val(''); + } } else { $editArea.append(''); $editArea.find('textarea').live('keyup', function(e) { From 629ba9da860cdf7250ac8f1801865086367713b2 Mon Sep 17 00:00:00 2001 From: Aris Feryanto Date: Wed, 17 Aug 2011 13:48:48 +0800 Subject: [PATCH 324/442] CSS for timepicker --- themes/original/css/theme_right.css.php | 6 ++++++ themes/pmahomme/css/theme_right.css.php | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 83590f927d..64e64e49a7 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -2533,3 +2533,9 @@ span.cm-number { padding-left: 20px; } +/* css for timepicker */ +.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } +.ui-timepicker-div dl { text-align: left; } +.ui-timepicker-div dl dt { height: 25px; } +.ui-timepicker-div dl dd { margin: -25px 0 10px 65px; } +.ui-timepicker-div td { font-size: 90%; } diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 805041939e..982e744a7d 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -2974,3 +2974,9 @@ span.cm-number { padding-left: 20px; } +/* css for timepicker */ +.ui-timepicker-div .ui-widget-header{ margin-bottom: 8px; } +.ui-timepicker-div dl{ text-align: left; } +.ui-timepicker-div dl dt{ height: 25px; } +.ui-timepicker-div dl dd{ margin: -25px 0 10px 65px; } +.ui-timepicker-div td { font-size: 90%; } From 98226ff7237f22baea3b5b59a2fa3db46bd5b259 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Aug 2011 09:44:52 +0200 Subject: [PATCH 325/442] Fixup --- po/es.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/es.po b/po/es.po index 4c9b205288..ffeddfc144 100644 --- a/po/es.po +++ b/po/es.po @@ -12157,7 +12157,7 @@ msgid "" "that the query cache is an alternating pattern of free and used blocks. This " "value should be below 20%%." msgstr "" -"El caché está %s%% fragmentado actualmente. Una fragmentación del 100% " +"El caché está %s%% fragmentado actualmente. Una fragmentación del 100%% " "significa que el caché de consulta es un patrón alternante de bloques " "utilizados y libres. Este valor debería ser menor al 20%%." From 97439c45f02508fc2fa54558c3d8cfc84146ffe8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Aug 2011 09:50:42 +0200 Subject: [PATCH 326/442] This is already done --- tbl_replace.php | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tbl_replace.php b/tbl_replace.php index 40d0ad48d6..02e8c49402 100644 --- a/tbl_replace.php +++ b/tbl_replace.php @@ -409,10 +409,6 @@ if ($is_insert && count($value_sets) > 0) { $message->addMessages($last_messages, '
'); if (! empty($warning_messages)) { - /** - * @todo use a
in PMA_showMessage() for this part of - * the message - */ $message->addMessages($warning_messages, '
'); $message->isError(true); } From 514697082675f054671f6af4aa27c0c4601fcce8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Aug 2011 09:57:29 +0200 Subject: [PATCH 327/442] Escape displayed user input --- tbl_replace.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tbl_replace.php b/tbl_replace.php index 02e8c49402..f7cc17c1b7 100644 --- a/tbl_replace.php +++ b/tbl_replace.php @@ -368,7 +368,7 @@ foreach ($query as $single_query) { } if (! $result) { - $error_messages[] = PMA_DBI_getError(); + $error_messages[] = PMA_Message::sanitize(PMA_DBI_getError()); } else { // The next line contains a real assignment, it's not a typo if ($tmp = @PMA_DBI_affected_rows()) { @@ -392,8 +392,8 @@ foreach ($query as $single_query) { } // end if foreach (PMA_DBI_get_warnings() as $warning) { - $warning_messages[] = $warning['Level'] . ': #' . $warning['Code'] - . ' ' . $warning['Message']; + $warning_messages[] = PMA_Message::sanitize($warning['Level'] . ': #' . $warning['Code'] + . ' ' . $warning['Message']); } unset($result); From e89da7e7e49519483d8023d1489fc7c1dca7d439 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Aug 2011 12:30:15 +0200 Subject: [PATCH 328/442] Fix typo --- libraries/Advisor.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Advisor.class.php b/libraries/Advisor.class.php index 26696bd340..1b1619ef54 100644 --- a/libraries/Advisor.class.php +++ b/libraries/Advisor.class.php @@ -141,7 +141,7 @@ class Advisor /* Translate */ $str = $this->translate($jst[0], $jst[1]); } catch (Exception $e) { - $this->runResult['errors'][] = 'Failed formattingstring for rule \''.$rule['name'].'\'. PHP threw following error: '.$e->getMessage(); + $this->runResult['errors'][] = 'Failed formatting string for rule \''.$rule['name'].'\'. PHP threw following error: '.$e->getMessage(); return; } From 08967fec6a44c61ef1ea3ad04dae46f3644c9900 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Aug 2011 12:31:04 +0200 Subject: [PATCH 329/442] Make the string translatable --- libraries/Advisor.class.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/libraries/Advisor.class.php b/libraries/Advisor.class.php index 1b1619ef54..b3c8b73dc3 100644 --- a/libraries/Advisor.class.php +++ b/libraries/Advisor.class.php @@ -141,7 +141,11 @@ class Advisor /* Translate */ $str = $this->translate($jst[0], $jst[1]); } catch (Exception $e) { - $this->runResult['errors'][] = 'Failed formatting string for rule \''.$rule['name'].'\'. PHP threw following error: '.$e->getMessage(); + $this->runResult['errors'][] = sprintf( + __('Failed formatting string for rule \'%s\'. PHP threw following error: %s'), + $rule['name'], + $e->getMessage() + ); return; } From 576e76d419550bb355f0591dbaf9628871e4dd65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Aug 2011 12:31:33 +0200 Subject: [PATCH 330/442] Fix indentation --- libraries/Advisor.class.php | 62 ++++++++++++++++++------------------- 1 file changed, 31 insertions(+), 31 deletions(-) diff --git a/libraries/Advisor.class.php b/libraries/Advisor.class.php index b3c8b73dc3..61592863c0 100644 --- a/libraries/Advisor.class.php +++ b/libraries/Advisor.class.php @@ -135,40 +135,40 @@ class Advisor switch($type) { case 'notfired': case 'fired': - $jst = Advisor::splitJustification($rule); - if (count($jst) > 1) { - try { - /* Translate */ - $str = $this->translate($jst[0], $jst[1]); - } catch (Exception $e) { - $this->runResult['errors'][] = sprintf( - __('Failed formatting string for rule \'%s\'. PHP threw following error: %s'), - $rule['name'], - $e->getMessage() - ); - return; - } - - $rule['justification'] = $str; - } else { - $rule['justification'] = $this->translate($rule['justification']); + $jst = Advisor::splitJustification($rule); + if (count($jst) > 1) { + try { + /* Translate */ + $str = $this->translate($jst[0], $jst[1]); + } catch (Exception $e) { + $this->runResult['errors'][] = sprintf( + __('Failed formatting string for rule \'%s\'. PHP threw following error: %s'), + $rule['name'], + $e->getMessage() + ); + return; } - $rule['name'] = $this->translate($rule['name']); - $rule['issue'] = $this->translate($rule['issue']); - // Replaces {server_variable} with 'server_variable' linking to server_variables.php - $rule['recommendation'] = preg_replace( - '/\{([a-z_0-9]+)\}/Ui', - '\1', - $this->translate($rule['recommendation'])); + $rule['justification'] = $str; + } else { + $rule['justification'] = $this->translate($rule['justification']); + } + $rule['name'] = $this->translate($rule['name']); + $rule['issue'] = $this->translate($rule['issue']); - // Replaces external Links with PMA_linkURL() generated links - $rule['recommendation'] = preg_replace( - '#href=("|\')(https?://[^\1]+)\1#ie', - '\'href="\' . PMA_linkURL("\2") . \'"\'', - $rule['recommendation'] - ); - break; + // Replaces {server_variable} with 'server_variable' linking to server_variables.php + $rule['recommendation'] = preg_replace( + '/\{([a-z_0-9]+)\}/Ui', + '\1', + $this->translate($rule['recommendation'])); + + // Replaces external Links with PMA_linkURL() generated links + $rule['recommendation'] = preg_replace( + '#href=("|\')(https?://[^\1]+)\1#ie', + '\'href="\' . PMA_linkURL("\2") . \'"\'', + $rule['recommendation'] + ); + break; } $this->runResult[$type][] = $rule; From 13cf3f615e7a23a6f4c4ee6c23e6eba329015dca Mon Sep 17 00:00:00 2001 From: "franz.georg" Date: Wed, 17 Aug 2011 13:13:08 +0200 Subject: [PATCH 331/442] Translation update done using Pootle. --- po/de.po | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/po/de.po b/po/de.po index 2c037fcb29..7d0ae91753 100644 --- a/po/de.po +++ b/po/de.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-16 19:11+0200\n" -"PO-Revision-Date: 2011-08-13 02:00+0200\n" -"Last-Translator: Sven Strickroth \n" +"PO-Revision-Date: 2011-08-17 13:13+0200\n" +"Last-Translator: \n" "Language-Team: german \n" "Language: de\n" "MIME-Version: 1.0\n" @@ -415,10 +415,10 @@ msgid "You have to choose at least one column to display" msgstr "Bitte wählen Sie mindestens eine anzuzeigende Spalte" #: db_qbe.php:186 -#, fuzzy, php-format +#, php-format #| msgid "visual builder" msgid "Switch to %svisual builder%s" -msgstr "Wechseln zu %svisual builder%s" +msgstr "Zu %svisual builder%s wechseln" #: db_qbe.php:222 libraries/db_structure.lib.php:90 #: libraries/display_tbl.lib.php:955 From aca93f450864947014d618c41c508d5522209d06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Aug 2011 13:14:26 +0200 Subject: [PATCH 332/442] Fix typo in testcase as well --- test/classes/Advisor_test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/classes/Advisor_test.php b/test/classes/Advisor_test.php index d2be7741a5..9a92fe5614 100644 --- a/test/classes/Advisor_test.php +++ b/test/classes/Advisor_test.php @@ -96,7 +96,7 @@ class Advisor_test extends PHPUnit_Framework_TestCase array( array('justification' => 'foo | fsafdsa', 'name' => 'Failure', 'issue' => 'issue', 'recommendation' => 'Recommend'), array(), - 'Failed formattingstring for rule \'Failure\'. PHP threw following error: Use of undefined constant fsafdsa - assumed \'fsafdsa\'', + 'Failed formatting string for rule \'Failure\'. PHP threw following error: Use of undefined constant fsafdsa - assumed \'fsafdsa\'', ), ); } From 3f4d65ba1e6dcb955f80b82395c9e4f8243335e5 Mon Sep 17 00:00:00 2001 From: "franz.georg" Date: Wed, 17 Aug 2011 13:14:37 +0200 Subject: [PATCH 333/442] Translation update done using Pootle. --- po/de.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/de.po b/po/de.po index 7d0ae91753..8e787b7a91 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-16 19:11+0200\n" -"PO-Revision-Date: 2011-08-17 13:13+0200\n" +"PO-Revision-Date: 2011-08-17 13:14+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -1132,10 +1132,9 @@ msgid "Query statistics" msgstr "Abfrage-Statistiken" #: js/messages.php:93 -#, fuzzy #| msgid "Local monitor configuration icompatible" msgid "Local monitor configuration incompatible" -msgstr "Lokale Monitor-Konfiguration ist inkompatibel" +msgstr "Die lokale Bildschirmkonfiguration ist nicht kompatibel." #: js/messages.php:94 msgid "" From 33642bb9050e8bfb47c0b7250f386b0a50264ef0 Mon Sep 17 00:00:00 2001 From: "franz.georg" Date: Wed, 17 Aug 2011 13:16:58 +0200 Subject: [PATCH 334/442] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 8e787b7a91..17fd02242d 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-16 19:11+0200\n" -"PO-Revision-Date: 2011-08-17 13:14+0200\n" +"PO-Revision-Date: 2011-08-17 13:16+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -1693,7 +1693,7 @@ msgstr "Suche" #: js/messages.php:264 msgid "Each point represents a data row." -msgstr "" +msgstr "Jeder Punkt stellt eine Datenreihe dar" #: js/messages.php:266 msgid "Hovering over a point will show its label." From 6463f542cb49626744bce00d1cb70e3dc256798e Mon Sep 17 00:00:00 2001 From: "franz.georg" Date: Wed, 17 Aug 2011 13:21:00 +0200 Subject: [PATCH 335/442] Translation update done using Pootle. --- po/de.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index 17fd02242d..bf0992ab0f 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-16 19:11+0200\n" -"PO-Revision-Date: 2011-08-17 13:16+0200\n" +"PO-Revision-Date: 2011-08-17 13:21+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -1710,6 +1710,8 @@ msgstr "" #: js/messages.php:272 msgid "Click a data point to view and possibly edit the data row." msgstr "" +"Auf einen Datenpunkt klicken, um eine Datenzeile anzuzeigen bzw. zu " +"editieren." #: js/messages.php:274 msgid "The plot can be resized by dragging it along the bottom right corner." From da57391c98ad82742f2104e327556efc8081fe28 Mon Sep 17 00:00:00 2001 From: "franz.georg" Date: Wed, 17 Aug 2011 13:23:37 +0200 Subject: [PATCH 336/442] Translation update done using Pootle. --- po/de.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/de.po b/po/de.po index bf0992ab0f..7b1912b831 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-16 19:11+0200\n" -"PO-Revision-Date: 2011-08-17 13:21+0200\n" +"PO-Revision-Date: 2011-08-17 13:23+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -1716,6 +1716,8 @@ msgstr "" #: js/messages.php:274 msgid "The plot can be resized by dragging it along the bottom right corner." msgstr "" +"Die Größe der Darstellung kann durch Ziehen in die rechte untere Ecke " +"verändert werden." #: js/messages.php:276 msgid "Strings are converted into integer for plotting" From bd943b2ed97ccd8411764d3447bb1426e1f0cf1f Mon Sep 17 00:00:00 2001 From: "franz.georg" Date: Wed, 17 Aug 2011 13:24:55 +0200 Subject: [PATCH 337/442] Translation update done using Pootle. --- po/de.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/de.po b/po/de.po index 7b1912b831..d8418ed6a6 100644 --- a/po/de.po +++ b/po/de.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-16 19:11+0200\n" -"PO-Revision-Date: 2011-08-17 13:23+0200\n" +"PO-Revision-Date: 2011-08-17 13:24+0200\n" "Last-Translator: \n" "Language-Team: german \n" "Language: de\n" @@ -1731,7 +1731,7 @@ msgstr "Spalten hinzufügen/entfernen" #: js/messages.php:279 msgid "Select two different columns" -msgstr "" +msgstr "2 unterschiedliche Spalten auswählen" #: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 #: tbl_indexes.php:238 From a1d61045025473ee37920f9e885b7997e7023c93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Aug 2011 13:25:48 +0200 Subject: [PATCH 338/442] Use Theme class for getting file name --- libraries/Theme_Manager.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/Theme_Manager.class.php b/libraries/Theme_Manager.class.php index 93f5ecfc6d..32d6b70b94 100644 --- a/libraries/Theme_Manager.class.php +++ b/libraries/Theme_Manager.class.php @@ -323,8 +323,8 @@ class PMA_Theme_Manager /** * load layout file if exists */ - if (@file_exists($GLOBALS['pmaThemePath'] . 'layout.inc.php')) { - include $GLOBALS['pmaThemePath'] . 'layout.inc.php'; + if (file_exists($this->theme->getLayoutFile())) { + include $this->theme->getLayoutFile(); } From 4e94e3e35d3224c0672581c680edcbfea421ac9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Aug 2011 13:26:46 +0200 Subject: [PATCH 339/442] Remove unused code --- libraries/Theme_Manager.class.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/libraries/Theme_Manager.class.php b/libraries/Theme_Manager.class.php index 32d6b70b94..c430974e59 100644 --- a/libraries/Theme_Manager.class.php +++ b/libraries/Theme_Manager.class.php @@ -236,8 +236,6 @@ class PMA_Theme_Manager // check for themes directory while (false !== ($PMA_Theme = readdir($handleThemes))) { if (array_key_exists($PMA_Theme, $this->themes)) { - // this does nothing! - //$this->themes[$PMA_Theme] = $this->themes[$PMA_Theme]; continue; } $new_theme = PMA_Theme::load($this->getThemesPath() . '/' . $PMA_Theme); From 82c6f950eb99b3fa69f73de816022e9b5d350ce6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Aug 2011 13:32:27 +0200 Subject: [PATCH 340/442] Avoid loading themes from non directories, . and .. --- libraries/Theme_Manager.class.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libraries/Theme_Manager.class.php b/libraries/Theme_Manager.class.php index c430974e59..840e611a97 100644 --- a/libraries/Theme_Manager.class.php +++ b/libraries/Theme_Manager.class.php @@ -235,6 +235,10 @@ class PMA_Theme_Manager if ($handleThemes = opendir($this->getThemesPath())) { // check for themes directory while (false !== ($PMA_Theme = readdir($handleThemes))) { + // Skip non dirs, . and .. + if ($PMA_Theme == '.' || $PMA_Theme == '..' || ! is_dir($this->getThemesPath() . '/' . $PMA_Theme)) { + continue; + } if (array_key_exists($PMA_Theme, $this->themes)) { continue; } From c04a557c02c590eb141661780f731540d46ba74c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Aug 2011 14:18:19 +0200 Subject: [PATCH 341/442] Drop databases only if they do exist --- test/test_data/exploit_test.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/test_data/exploit_test.sql b/test/test_data/exploit_test.sql index dce733ff4c..6ac7fba4b3 100644 --- a/test/test_data/exploit_test.sql +++ b/test/test_data/exploit_test.sql @@ -16,9 +16,9 @@ SET time_zone = "+00:00"; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -DROP DATABASE `">`; -DROP DATABASE `'>`; -DROP DATABASE `exploit_test`; +DROP DATABASE IF EXISTS `">`; +DROP DATABASE IF EXISTS `'>`; +DROP DATABASE IF EXISTS `exploit_test`; -- -- Database: `">` From 79b5bd602e50cc5eff4c32c85df673f7eac94862 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 17 Aug 2011 19:14:43 +0530 Subject: [PATCH 342/442] Changelog entries for GIS features --- ChangeLog | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ChangeLog b/ChangeLog index e6c1bc4605..f70eae5870 100644 --- a/ChangeLog +++ b/ChangeLog @@ -44,6 +44,9 @@ phpMyAdmin - ChangeLog - bug #3380946 [export] no uid Query result export (Suhosin limit) + Grid editing in browse mode (replaces row inline edit) + Zoom-search in table Search ++ [interface] Editor for GIS data ++ [import] Import GIS data from ESRI Shapefiles ++ [interface] 'Function based search' for GIS data 3.4.5.0 (not yet released) - bug #3375325 [interface] Page list in navigation frame looks odd From d1684d6d965cbe2a029644c14871d668470dbad8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 17 Aug 2011 16:56:04 +0200 Subject: [PATCH 343/442] Ignore another external lib --- build.xml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build.xml b/build.xml index 5365747755..d898a83f44 100644 --- a/build.xml +++ b/build.xml @@ -38,7 +38,7 @@ @@ -50,6 +50,7 @@ --exclude build --exclude libraries/tcpdf --exclude libraries/php-gettext + --exclude libraries/bfShapeFiles ${source}" /> @@ -61,6 +62,7 @@ --exclude build --exclude libraries/tcpdf --exclude libraries/php-gettext + --exclude libraries/bfShapeFiles ${source}" /> @@ -68,7 +70,7 @@ \n" "Language-Team: afrikaans \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Wys alles" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -35,19 +35,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Soek" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -65,14 +66,14 @@ msgstr "Soek" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -136,8 +137,8 @@ msgstr "Tabel kommentaar" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -154,8 +155,8 @@ msgstr "Kolom name" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -166,7 +167,7 @@ msgstr "Tipe" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -209,10 +210,10 @@ msgstr "Kommentaar" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Nee" @@ -231,9 +232,9 @@ msgstr "Nee" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -339,7 +340,7 @@ msgstr "" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -369,15 +370,15 @@ msgstr "Vertoon PDF skema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabel" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -438,19 +439,19 @@ msgstr "Sorteer" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Dalend" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Dalend" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Wys" @@ -471,8 +472,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Of" @@ -505,7 +506,7 @@ msgstr "Gebruik Tabelle" msgid "SQL query on database %s:" msgstr "SQL-navraag op databasis %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Doen Navraag" @@ -545,8 +546,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultate binne tabel %s" msgstr[1] "%s resultate binne tabel %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Beloer Data" @@ -558,7 +559,7 @@ msgid "Delete the matches for the %s table?" msgstr "Stort data vir tabel" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -636,7 +637,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -664,22 +665,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Met gekose:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Kies Alles" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Kies Niks" @@ -687,10 +688,10 @@ msgstr "Kies Niks" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -698,17 +699,17 @@ msgid "Export" msgstr "Export" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Drukker mooi (print view)" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Maak Leeg" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -760,9 +761,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Databasis" @@ -782,15 +783,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Aksie" @@ -847,7 +848,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -880,6 +881,91 @@ msgstr "" msgid "Dump has been saved to file %s." msgstr "" +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +msgid "Add a point" +msgstr "Voeg 'n nuwe veld by" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Lyne beeindig deur" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Voeg 'n nuwe gebruiker by" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Voeg 'n nuwe gebruiker by" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +msgid "Add a polygon" +msgstr "Voeg 'n nuwe veld by" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Voeg 'n nuwe gebruiker by" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -920,7 +1006,7 @@ msgstr "Die boekmerk is verwyder." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -943,7 +1029,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -967,15 +1053,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" stellings word nie toegelaat nie." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Wil jy regtig " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1038,8 +1124,8 @@ msgstr "Die wagwoord is leeg!" msgid "The passwords aren't the same!" msgstr "Die wagwoorde is verskillend!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1060,8 +1146,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1101,12 +1187,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1194,12 +1280,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1294,7 +1380,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Geen" @@ -1697,8 +1783,8 @@ msgstr "SQL-stelling" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Verander" @@ -1710,8 +1796,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Stoor" @@ -1725,7 +1811,7 @@ msgstr "SQL-stelling" msgid "Show search criteria" msgstr "SQL-stelling" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1769,109 +1855,117 @@ msgstr "Voeg By/Verwyder Veld Kolomme" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignoreer" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy msgid "Add columns" msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kies 'n Veld om te vertoon" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Verander wagwoord" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Verander wagwoord" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Ma" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1879,30 +1973,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Geen databasisse" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "Geen" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1910,95 +2004,95 @@ msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy msgid "Today" msgstr "totaal" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Biner" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mei" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2006,78 +2100,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Des" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "So" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Di" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fr" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2085,105 +2179,110 @@ msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in gebruik" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekords" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2288,13 +2387,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "databasisse" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fout" @@ -2418,7 +2517,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2583,7 +2682,7 @@ msgstr "Tabel" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Data" @@ -2651,7 +2750,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "" @@ -2716,99 +2815,99 @@ msgstr "SQL-stelling" msgid "MySQL said: " msgstr "MySQL het gepraat: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Verduidelik SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Ignoreer SQL Verduideliking" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Sonder PHP Kode" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Skep PHP Kode" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Ignoreer SQL Validasie" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Valideer SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "So" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2816,7 +2915,7 @@ msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2825,7 +2924,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Vorige" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2834,7 +2933,7 @@ msgctxt "Next page" msgid "Next" msgstr "Volgende" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2842,34 +2941,34 @@ msgctxt "Last page" msgid "End" msgstr "Einde" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktuur" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2877,37 +2976,37 @@ msgstr "Struktuur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Voeg by" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operasies" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3084,7 +3183,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Herstel" @@ -3338,7 +3437,7 @@ msgid "Character set of the file" msgstr "Karakterstel van die leer:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formaat" @@ -4922,7 +5021,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Wagwoord" @@ -5205,8 +5304,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Regte" @@ -5225,7 +5324,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5284,7 +5383,7 @@ msgid "Create" msgstr "Skep" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Geen Regte" @@ -5620,12 +5719,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Operasies" @@ -5660,8 +5759,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5670,10 +5769,6 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5682,60 +5777,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Die ry is verwyder" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Vermoor" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "in navraag" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Vertoon rye" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "totaal" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "Kolom Kommentaar word vertoon" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Bediener weergawe" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Skakel nie gevind nie" @@ -5917,7 +6008,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Sorteer" @@ -6240,7 +6331,7 @@ msgstr "Vertoon Funksies" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Gasheer (host)" @@ -6438,7 +6529,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6450,50 +6541,50 @@ msgstr "SQL resultaat" msgid "Generated by" msgstr "Voortgebring deur" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Geen databasisse" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Slegs struktuur" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6544,7 +6635,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6565,6 +6656,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6614,7 +6729,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Geen verandering" @@ -6623,7 +6738,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Biner" @@ -6926,7 +7041,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Gebruiker naam" @@ -6944,9 +7059,9 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Waarde" @@ -6972,7 +7087,7 @@ msgstr "Enige gebruiker" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "" @@ -7157,7 +7272,7 @@ msgid "Returns" msgstr "Databasis statistieke" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "" @@ -7302,8 +7417,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funksie" @@ -7613,8 +7728,8 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7637,7 +7752,7 @@ msgstr "" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Soek in databasis" @@ -7656,7 +7771,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Soek in databasis" @@ -7682,11 +7797,11 @@ msgstr "" msgid "Columns" msgstr "Kolom name" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7714,7 +7829,7 @@ msgstr "Kyk slegs" msgid "Location of the text file" msgstr "Soek die teksleer" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "" @@ -7915,24 +8030,30 @@ msgid "+ Add a value" msgstr "Voeg 'n nuwe gebruiker by" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 #, fuzzy msgid "Operator" msgstr "Operasies" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Soek" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Voeg by" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8056,8 +8177,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8085,8 +8206,8 @@ msgstr "Algemene verwantskap funksies" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Gebruiker" @@ -8216,7 +8337,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Geen databasisse" @@ -8244,7 +8365,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "Skep 'n nuwe bladsy" @@ -8604,96 +8725,96 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Sien die storting (skema) van die databasis" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8723,52 +8844,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8776,47 +8897,47 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 #, fuzzy msgid "No privileges." msgstr "Geen Regte" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Geen" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: MySQL regte name word in Engels vertoon " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 #, fuzzy msgid "Global privileges" msgstr "Geen Regte" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "" @@ -8837,7 +8958,7 @@ msgstr "Wys PHP informasie" msgid "Do not change the password" msgstr "Moenie die wagwoord verander nie" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -8888,7 +9009,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Verander Regte" @@ -8896,34 +9017,34 @@ msgstr "Verander Regte" msgid "Revoke" msgstr "Herroep" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Enige" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8932,95 +9053,95 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Geen" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy msgid "User has been added." msgstr "Veld %s is verwyder" @@ -10191,111 +10312,111 @@ msgid_plural "%d minutes" msgstr[0] "in gebruik" msgstr[1] "in gebruik" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL-stelling" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10591,36 +10712,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Valideer SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Etiket" @@ -10629,64 +10750,64 @@ msgstr "Etiket" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "" " Omrede sy lengte,
is hierdie veld moontlik nie veranderbaar nie " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Biner - moenie verander nie" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Voeg by as 'n nuwe ry" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Terug na vorige bladsy" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Voeg 'n nuwe ry by" -#: tbl_change.php:1005 +#: tbl_change.php:1045 #, fuzzy msgid "Go back to this page" msgstr "Terug na vorige bladsy" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10769,48 +10890,44 @@ msgstr "Tabel %s is verwyder" msgid "View dump (schema) of table" msgstr "Sien die storting (skema) van die tabel" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Voeg By/Verwyder Veld Kolomme" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy msgid "Spatial column" msgstr "totaal" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Stoor as leer (file)" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11043,25 +11160,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Kies Velde (ten minste een):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Voeg soek kriteria by (laaste deel van die \"where\" in SQL SELECT):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Hoeveelheid rye per bladsy" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Vertoon volgorde:" @@ -12563,9 +12680,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Bediener weergawe" -#~ msgid "Add a new User" -#~ msgstr "Voeg 'n nuwe gebruiker by" - #, fuzzy #~ msgid "Delete the matches for the " #~ msgstr "Stort data vir tabel" diff --git a/po/ar.po b/po/ar.po index ef1c3a4c2d..d81def659d 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-07 03:51+0200\n" "Last-Translator: Abdullah Al-Saedi \n" "Language-Team: arabic \n" @@ -15,13 +15,13 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "عرض الكل" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "لا يمكن تحديث نافذة المتصفح المستهدفة,, يبدو أنك أغلقت الرئيسية أو أن " "مستعرضك يمنع التحديث عبر النوافذ بسبب إعدادات الأمان." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "بحث" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "بحث" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "تعليقات الجدول" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "عمود" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "نوع" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "تعليقات" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "لا" @@ -232,9 +233,9 @@ msgstr "لا" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "التبديل إلى قاعدة البيانات المنسوخة" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "بناء الارتباطات" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "جدول" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -431,19 +432,19 @@ msgstr "ترتيب" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "تصاعديا" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "تنازليا" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "عرض" @@ -464,8 +465,8 @@ msgid "Del" msgstr "حذف" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "أو" @@ -494,7 +495,7 @@ msgstr "إستخدم الجداول" msgid "SQL query on database %s:" msgstr "إستعلام SQL في قاعدة البيانات %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "إرسال الإستعلام" @@ -537,8 +538,8 @@ msgstr[3] "%s مطابقة في الجدول %s" msgstr[4] "%s مطابقة في الجدول %s" msgstr[5] "%s مطابقة في الجدول %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "استعراض" @@ -549,7 +550,7 @@ msgid "Delete the matches for the %s table?" msgstr "حذف التشابهات لجدول %s ؟" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -622,7 +623,7 @@ msgstr "التتبع نشط." msgid "Tracking is not active." msgstr "التتبع غير نشط." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -650,22 +651,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s هو محرك التخزين الإفتراضي لخادم MySQL" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "مع المحدد:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "تحديد الكل" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "إلغاء تحديد الكل" @@ -673,10 +674,10 @@ msgstr "إلغاء تحديد الكل" msgid "Check tables having overhead" msgstr "تحقق من الجداول التي تحمل عبء زائد" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -684,17 +685,17 @@ msgid "Export" msgstr "تصدير" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "إفراغ" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -742,9 +743,9 @@ msgstr "الجداول المتعقبة" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "قاعدة البيانات" @@ -763,15 +764,15 @@ msgstr "محدث" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "الحالة" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "العملية" @@ -824,7 +825,7 @@ msgstr "أدخل كل قيمة بحقل منفصل" msgid "+ Restart insertion and add a new value" msgstr "+ أعد الإدخال و أضف قيمة جديدة" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "المخرجات" @@ -857,6 +858,95 @@ msgstr "خادم الويب ليس لديه صلاحية لحفظ الملف %s. msgid "Dump has been saved to file %s." msgstr "تم حفظ الـDump إلى الملف %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "قيم للعمود \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "إضافة حقل جديد" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "أسطر تنتهي بـ" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add constraints" +msgid "Add a linestring" +msgstr "أضف قيود" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add unique index" +msgid "Add an inner ring" +msgstr "إضافة فهرس مميز" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "إضافة عمود" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new User" +msgid "Add geometry" +msgstr "أضف مستخدم جديد" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -901,7 +991,7 @@ msgstr "لقد حذفت العلامة المرجعية." msgid "Showing bookmark" msgstr "عرض العلامة المرجعية" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "تم إنشاء العلامة المرجعية %s" @@ -928,7 +1018,7 @@ msgstr "" "إنهاء الإستيراد ,, يجب زيادة المدة المحددة لتنفيذ php" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -952,15 +1042,15 @@ msgstr "إضغط للإختيار" msgid "Click to unselect" msgstr "إضغط لإلغاء الإختيار" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "أمر \"حذف قاعدة البيانات\" معطل." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "هل تريد حقا" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "أنت على وشك إزالة كامل قاعدة البيانات !" @@ -1022,8 +1112,8 @@ msgstr "كلمة المرور فارغة !" msgid "The passwords aren't the same!" msgstr "كلمتا المرور غير متشابهتان !" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "إضافة مستخدم" @@ -1041,8 +1131,8 @@ msgid "Close" msgstr "أغلاق" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1078,12 +1168,12 @@ msgid "Other" msgstr "آخر" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1170,12 +1260,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "ميجابايت" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "كيلوبايت" @@ -1268,7 +1358,7 @@ msgstr "فضلا , أضف متغير واحد على الأقل للسلسلة" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "لا شيء" @@ -1649,8 +1739,8 @@ msgstr "إظهار صندوق الإستعلام" msgid "No rows selected" msgstr "لايوجد صفوف مختارة" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "تغيير" @@ -1664,8 +1754,8 @@ msgstr "وقت التنفيذ الأقصى" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "حفظ" @@ -1677,7 +1767,7 @@ msgstr "إخفاء معايير البحث" msgid "Show search criteria" msgstr "إظهار معايير البحث" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1721,105 +1811,113 @@ msgstr "إضافه/حذف عمود" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "تجاهل" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add into comments" msgid "Add columns" msgstr "أضف إلى الملاحظات" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "إختيار المفتاح المرجع" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "إختيار المفتاح الغريب" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "فضلاً أختر المفتاح الرئيسي أو المفتاح الفريد" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "اختر الحقل لإظهاره" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "إضافة خيار للعمود" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "اضغط للاختيار" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to table" msgid "Go to link" msgstr "اذهب إلى الجدول" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "توليد كلمة مرور" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "توليد" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "تغيير كلمة المرور" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "أكثر" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1829,27 +1927,27 @@ msgstr "" "هو %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", آخر إصدار مستقر:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "محدثة" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "إنتهى" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "سابق" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1857,149 +1955,149 @@ msgid "Next" msgstr "التالي" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "اليوم" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "يناير" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "فبراير" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "مارس" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "أبريل" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "مايو" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "يونيو" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "يوليو" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "أغسطس" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "سبتمبر" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "أكتوبر" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "نوفمبر" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "ديسمبر" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "الأحد" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "الإثنين" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "الثلاثاء" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "الأربعاء" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "الخميس" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "الجمعة" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2007,87 +2105,92 @@ msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "السبت" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "الأحد" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "الإثنين" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "الثلاثاء" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "الأربعاء" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "الخميس" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "الجمعة" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "السبت" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "الأسبوع" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "الساعة" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "الدقيقة" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "الثانية" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "حجم الخط" @@ -2195,13 +2298,13 @@ msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحده #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "قاعدة بيانات" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "خطأ" @@ -2338,7 +2441,7 @@ msgstr "المظهر %s غير موجود!" msgid "Theme path not found for theme %s!" msgstr "مسار المظهر غير موجود للمظهر %s !" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "مظهر" @@ -2508,7 +2611,7 @@ msgstr "جداول" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "بيانات" @@ -2574,7 +2677,7 @@ msgstr "إسم المضيف غير صحيح للخادم %1$s." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "خادم" @@ -2639,101 +2742,101 @@ msgstr "استعلام SQL" msgid "MySQL said: " msgstr "MySQL قال: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "فشل الإتصال بمدقق SQL!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "شرح SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "تخطي شرح SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "بدون كود PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "أنشئ كود PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "تحديث" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "تخطي تدقيق SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "التدقيق في استعلام SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "تعديل سريع لهذا الإستعلام" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "مضمن" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "جانبي" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "بايت" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "جيجابايت" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "تيرابايت" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "بيتابايت" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "إكسابايت" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "الأحد" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y الساعة %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s يوم، %s ساعة، %s دقيقة و%s ثانية" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "إضافة حقل جديد" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2741,7 +2844,7 @@ msgctxt "First page" msgid "Begin" msgstr "بداية" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2750,7 +2853,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "سابق" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2759,7 +2862,7 @@ msgctxt "Next page" msgid "Next" msgstr "التالي" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2767,36 +2870,36 @@ msgctxt "Last page" msgid "End" msgstr "نهاية" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "الذهاب إلى قاعدة البيانات "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "إضغط للإختيار" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "بناء" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2804,38 +2907,38 @@ msgstr "بناء" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "إدخال" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "عمليات" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "تصفح كمبيوترك." -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "دليل تحميل الملفات على خادم الشبكة" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "الدليل الذي حددته لتحميل عملك لا يمكن الوصول إليه." -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "لايوجد أي ملفات لرفعها" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "تنفيذ" @@ -3001,7 +3104,7 @@ msgstr "السماح للمستخدمين بتخصيص هذه القيمة" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "إعادة تعيين" @@ -3257,7 +3360,7 @@ msgid "Character set of the file" msgstr "مجموعة الأحرف للملف" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "صيغة" @@ -4811,7 +4914,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "كلمة السر" @@ -5094,8 +5197,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "الإمتيازات" @@ -5114,7 +5217,7 @@ msgstr "أحداث" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5173,7 +5276,7 @@ msgid "Create" msgstr "تكوين" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "امتياز غير موجود" @@ -5521,12 +5624,12 @@ msgstr "رتب حسب المفتاح" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "خيارات" @@ -5560,8 +5663,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "أخفاء" @@ -5570,10 +5673,6 @@ msgstr "أخفاء" msgid "Browser transformation" msgstr "تحويل المتصفح" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5582,61 +5681,57 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "لقد تم حذف الصف" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "إبطال" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "في الاستعلام" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "مشاهدة السجلات " -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "المجموع" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "استغرق الاستعلام %01.4f ثانية" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "عرض الطباعة (مع النصوص الكاملة)." -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "إظهار بناء ملف PDF" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "تكوين" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "لم يمكن إيجاد الوصلة" @@ -5815,7 +5910,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "" @@ -6148,7 +6243,7 @@ msgstr "أنواع MIME المتوفرة" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "المزود" @@ -6347,7 +6442,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6359,50 +6454,50 @@ msgstr "ناتج استعلام SQL" msgid "Generated by" msgstr "أنشئ بواسطة" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "قام MySQL بإرجاع نتيجة فارغة." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "بيانات مفقودة لـ %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "اذهب إلى الجدول" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "البنية فقط" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6453,7 +6548,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "اسم الجدول" @@ -6474,6 +6569,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "الملف %s لايحتوي على أي مفتاح تعريف" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6525,7 +6646,7 @@ msgstr "" msgid "Add prefix" msgstr "إضافة حقل جديد" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "لا تغييرات" @@ -6534,7 +6655,7 @@ msgid "Charset" msgstr "مجموعة المحارف" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "ثنائي" @@ -6839,7 +6960,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "اسم المستخدم" @@ -6857,9 +6978,9 @@ msgid "Variable" msgstr "متغير" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "القيمة" @@ -6885,7 +7006,7 @@ msgstr "أي مستخدم" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "استخدم حقل نص" @@ -7080,7 +7201,7 @@ msgid "Returns" msgstr "خيارات الجدول" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "وقت" @@ -7238,8 +7359,8 @@ msgstr "تنفيذ" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "دالة" @@ -7565,8 +7686,8 @@ msgstr "" msgid "Current Server" msgstr "الخادم الحالي" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "تزامن" @@ -7588,7 +7709,7 @@ msgstr "مجموعات المحارف" msgid "Engines" msgstr "محركات" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "" @@ -7606,7 +7727,7 @@ msgstr "" msgid "Difference" msgstr "فرق" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "" @@ -7631,11 +7752,11 @@ msgstr "" msgid "Columns" msgstr "اسم العمود" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" @@ -7663,7 +7784,7 @@ msgstr "عرض فقط" msgid "Location of the text file" msgstr "مكان ملف نصي" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "دليل تحميل الملفات على خادم الشبكة" @@ -7865,23 +7986,29 @@ msgid "+ Add a value" msgstr "أضف مستخدم جديد" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "بحث" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "إدخال" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8050,8 +8177,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8079,8 +8206,8 @@ msgstr "المزايا العامّة للرابط" msgid "Protocol version" msgstr "نسخة البروتوكول" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "المستخدم" @@ -8209,7 +8336,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "لايوجد قواعد بيانات" @@ -8238,7 +8365,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "أنشئ الجدول" @@ -8599,96 +8726,96 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "اعرض أو احفظ بناء قواعد البيانات." -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "يتضمن كل الصلاحيات عدا GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "يسمح بتعديل بناء الجداول الموجودة مسبقا." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "يسمح بإنشاء قواعد بيانات وجداول جديدة." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "يسمح بإنشاء جداول جديدة." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "يسمح بإنشاء جداول مؤقتة." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "يسمح بحذف البيانات." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "يسمح بحذف قواعد البيانات." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "يسمح بحذف الجداول." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "يسمح باستيراد وتصدير البيانات من وإلى الملفّات." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "يسمح بإضافة المستخدمين والصلاحيات دون إعادة قراءة جداول الصلاحيات." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "يسمح بإنشاء وحذف الفهارس." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "يسمح بإضافة واستبدال البيانات." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "يسمح بقفل الجداول للعملية الحالية." @@ -8717,52 +8844,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "ليس له أي تأثير في نسخة MySQL الحالية." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "يسمح بإعادة تحميل إعدادات الخادم وتفريغ كاش الخادم." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "يعطي الحق للمستخدم بالسؤال عن مكان وجود slaves/masters." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "مطلوب لتوابع لاستنساخ." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "يسمح بقراءة البيانات." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "يسمح بالوصول لقائمة أسماء جميع قواعد البيانات." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "يسمح بإيقاف عمل الخادم." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8772,45 +8899,45 @@ msgstr "" "كضبط الإعدادات العامة other users." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "يسمح بتعديل البيانات." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "لا صلاحيات." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "لا شيء" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "صلاحيات خاصة بالجدول" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "ملاحظه: اسم الامتياز لـMySQL يظهر ويقرأ باللغة الإنجليزية فقط " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "إدارة" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "صلاحيات عامة" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "صلاحيات خاصة بقاعدة البيانات" @@ -8830,7 +8957,7 @@ msgstr "بيانات الدخول" msgid "Do not change the password" msgstr "لاتغير كلمة السر" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -8881,7 +9008,7 @@ msgstr "تم حذف المستخدمين المحددين بنجاح." msgid "The privileges were reloaded successfully." msgstr "تم إعادة قراءة الصلاحيات بنجاح." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "تحرير الامتيازات" @@ -8889,34 +9016,34 @@ msgstr "تحرير الامتيازات" msgid "Revoke" msgstr "إبطال" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "أي" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "معلومات المستخدم" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "منح" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "احذف المستخدمين المحددين" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "استرجع كل الصلاحيات الفعالة من المستخدمين ثم احذفهم بعد ذلك." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8929,95 +9056,95 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "صلاحيات خاصة بالحقل" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "إضافة الصلاحيات على قاعدة البيانات التالية" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "إضافة الصلاحيات على الجدول التالي" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "غير معلومات الدخول / انسخ اسم مستخدم" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "أضف اسم مستخدم جديد بنفس الصلاحيات و..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... أبق القديم." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... احذف القديم من جداول المستخدمين." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... استعد كل الصلاحيات الفعالة من القديم واحذهم بعد ذلك." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... احذف القديم من جداول المستخدمين وأعد قراءة الصلاحيات بعد ذلك." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "لا شيء" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "المستخدمين ذوي صلاحية الوصول إلى "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "عام" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "خاص بقاعدة بيانات" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "حرف شامل" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "The row has been deleted" msgid "User has been added." @@ -10206,114 +10333,114 @@ msgstr[3] "الدقيقة" msgstr[4] "الدقيقة" msgstr[5] "الدقيقة" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "إستعلامات صادرة" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "اتصالات" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10605,36 +10732,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "التحقق من استعلام SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "علامة" @@ -10643,62 +10770,62 @@ msgstr "علامة" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "بسبب طوله,
فمن المحتمل أن هذا الحقل غير قابل للتحرير " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "ثنائي - لاتحرره" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "إدخال كتسجيل جديد" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "وبعدها" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "الرجوع إلى الصفحة السابقة" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "إدخال تسجيل جديد" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "ارجع إلى هذه الصفحة" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "عدل الصف التالي" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10781,51 +10908,47 @@ msgstr "" msgid "View dump (schema) of table" msgstr "عرض بنية الجدول " -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "إضافه/حذف عمود حقل" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- لا شيء -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "مجموع كلي" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "حفظ كملف" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11049,23 +11172,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "قيود المفتاح الغريب" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "عمل \"استعلام بواسطة المثال\" (بدل: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "اختيار الأعمدة (واحد على الأقل):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "أضف شروط البحث (الفقرة \"where\" ):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "رقم السجلات لكل صفحة" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "ترتيب العرض:" diff --git a/po/az.po b/po/az.po index a76e43f026..7484e2089b 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-03-12 09:11+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: azerbaijani \n" @@ -13,13 +13,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Hamısını göster" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -34,19 +34,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Axtarış" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -64,14 +65,14 @@ msgstr "Axtarış" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -135,8 +136,8 @@ msgstr "Cedvel haqqında qısa izahat" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -153,8 +154,8 @@ msgstr "Sütun adları" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -165,7 +166,7 @@ msgstr "Tip" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -208,10 +209,10 @@ msgstr "Qısa İzahatlar" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Xeyir" @@ -230,9 +231,9 @@ msgstr "Xeyir" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -339,7 +340,7 @@ msgstr "Kopyalanmış cedvele keç" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -370,15 +371,15 @@ msgstr "Relational schema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Cedvel" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -439,19 +440,19 @@ msgstr "Sırala" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Artan sırada" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Azalan sırada" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Göster" @@ -472,8 +473,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "ya da" @@ -506,7 +507,7 @@ msgstr "Use Tables" msgid "SQL query on database %s:" msgstr "SQL-query on database %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Emri İcra Et" @@ -546,8 +547,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s uyğunluq tapıldı (%s cedvelinde)" msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "İçindekiler" @@ -559,7 +560,7 @@ msgid "Delete the matches for the %s table?" msgstr "Sxemi çıxarılan cedvel" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -637,7 +638,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -666,22 +667,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Seçilenleri:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Hamısını Seç" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Heç Birini Seçme" @@ -689,10 +690,10 @@ msgstr "Heç Birini Seçme" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -700,17 +701,17 @@ msgid "Export" msgstr "Eksport" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Çap görüntüsü" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Boşalt" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -762,9 +763,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Me'lumat Bazası" @@ -784,15 +785,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Fealiyyetler" @@ -849,7 +850,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -884,6 +885,92 @@ msgstr "Webserver-in %s faylını saxlama izni yoxdur." msgid "Dump has been saved to file %s." msgstr "Sxem %s faylına qeyd edildi." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "Yeni sahe elave et" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Setir leğvedicisi (Lines terminated by)" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Yeni İstifadeçi elave Et" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Yeni İstifadeçi elave Et" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +msgid "Add a polygon" +msgstr "Yeni sahe elave et" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Yeni İstifadeçi elave Et" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -924,7 +1011,7 @@ msgstr "Bookmark silindi." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -947,7 +1034,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -973,15 +1060,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Aşağıdakı sorğunu icra etdirmekten eminsiniz " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bazanı YOX ETMEK üzeresiniz!" @@ -1051,8 +1138,8 @@ msgstr "Parol boşdur!" msgid "The passwords aren't the same!" msgstr "Girdiyiniz parollar eyni deyil!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1075,8 +1162,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1115,12 +1202,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1207,12 +1294,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1311,7 +1398,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Heç biri" @@ -1720,8 +1807,8 @@ msgstr "SQL sorğusu" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Deyişdir" @@ -1733,8 +1820,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Qeyd Et" @@ -1748,7 +1835,7 @@ msgstr "SQL sorğusu" msgid "Show search criteria" msgstr "SQL sorğusu" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1792,109 +1879,117 @@ msgstr "Sahe Sütunlarını Elave Et/Sil" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Diqqete Alma" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy msgid "Add columns" msgstr "Yeni sahe elave et" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Gösterilecek Saheni Seç" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Parolu Deyişdir" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 #, fuzzy msgid "Generate" msgstr "Qurucu" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Parolu Deyişdir" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Baz Ert" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1902,30 +1997,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "Heç biri" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Evvelki" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1933,96 +2028,96 @@ msgid "Next" msgstr "Sonrakı" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Cemi" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binary" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "May" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "İyun" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "İyul" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avq" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2030,78 +2125,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dek" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Baz" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Baz Ert" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Çerş Axş" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cüme" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2109,105 +2204,110 @@ msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Şen" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Baz" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Baz Ert" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Çerş Axş" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çerş" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cüme Axş" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cüme" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şen" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "istifadede" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "saniyede" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2312,13 +2412,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Me'lumat Bazaları" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Xeta" @@ -2444,7 +2544,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2609,7 +2709,7 @@ msgstr "Cedveller" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Me'lumat" @@ -2677,7 +2777,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2742,103 +2842,103 @@ msgstr "SQL sorğusu" msgid "MySQL said: " msgstr "MySQL deyir: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL-i İzah Et" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "SQL İzah Et-i Keç" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP Kodunu Gösterme" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP Kodunu Hazırla" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL İfadesini Yoxlama" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL Tesdiqle" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Motorlar" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "QB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Baz" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y saat %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s deqiqe ve %s saniye" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Yeni sahe elave et" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2846,7 +2946,7 @@ msgctxt "First page" msgid "Begin" msgstr "Başla" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2855,7 +2955,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Evvelki" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2864,7 +2964,7 @@ msgctxt "Next page" msgid "Next" msgstr "Sonrakı" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2872,34 +2972,34 @@ msgctxt "Last page" msgid "End" msgstr "Son" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr ""%s" me'lumat bazasına keç." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Quruluş" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2907,38 +3007,38 @@ msgstr "Quruluş" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Elave et" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Emeliyyatlar" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-server upload direktoriyası" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3117,7 +3217,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Yenile" @@ -3374,7 +3474,7 @@ msgid "Character set of the file" msgstr "Faylın Charset-i:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -4984,7 +5084,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Parol" @@ -5266,8 +5366,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Selahiyyetler" @@ -5286,7 +5386,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5345,7 +5445,7 @@ msgid "Create" msgstr "Qur" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Selahiyyet çatışmazlığı" @@ -5691,12 +5791,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Emeliyyatlar" @@ -5732,8 +5832,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5742,10 +5842,6 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5754,60 +5850,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Setir silindi" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Söndür" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Gösterilen setirler" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "cemi" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "sorğu %01.4f saniyede icra edildi" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF sxemini göster" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Server versiyası" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Link tapılmadı" @@ -5989,7 +6081,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Sırala" @@ -6321,7 +6413,7 @@ msgstr "Mövcud olan MIME-tipleri" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6525,7 +6617,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6537,50 +6629,50 @@ msgstr "SQL result" msgid "Generated by" msgstr "Qurucu" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş netice çoxluğu gönderdi (ye'ni sıfır setir)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Sadece quruluş" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6631,7 +6723,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6652,6 +6744,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6703,7 +6819,7 @@ msgstr "" msgid "Add prefix" msgstr "Yeni sahe elave et" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Deyişiklik Yoxdur" @@ -6712,7 +6828,7 @@ msgid "Charset" msgstr "Charset" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binary" @@ -7022,7 +7138,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "İstifadeçi adı" @@ -7040,9 +7156,9 @@ msgid "Variable" msgstr "Deyişen" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Deyer" @@ -7069,7 +7185,7 @@ msgstr "Her hansı istifadeçi" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Use text field" @@ -7256,7 +7372,7 @@ msgid "Returns" msgstr "Cedvel başlığı" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Müddet" @@ -7407,8 +7523,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funksiya" @@ -7726,8 +7842,8 @@ msgstr "" msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7751,7 +7867,7 @@ msgstr "Charset" msgid "Engines" msgstr "Motorlar" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Search in database" @@ -7770,7 +7886,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Search in database" @@ -7796,11 +7912,11 @@ msgstr "" msgid "Columns" msgstr "Sütun adları" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Bu SQL sorğusunu bookmark-la" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7828,7 +7944,7 @@ msgstr "Sadece göster" msgid "Location of the text file" msgstr "tekst faylından yükleyerek" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "web-server upload direktoriyası" @@ -8033,24 +8149,30 @@ msgid "+ Add a value" msgstr "Yeni İstifadeçi elave Et" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 #, fuzzy msgid "Operator" msgstr "Emeliyyatlar" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Axtarış" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Elave et" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8222,8 +8344,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8251,8 +8373,8 @@ msgstr "Ümumi elaqe variantları" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "İstifadeçi" @@ -8385,7 +8507,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." @@ -8413,7 +8535,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "Yeni Sehife qur" @@ -8779,100 +8901,100 @@ msgstr "MySQL Depolama Motorları" msgid "View dump (schema) of databases" msgstr "Me'lumat bazalarının sxemini göster" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "GRANT-dan başqa bütün selahiyyetler daxildir." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Mövcud olan cedvellerin strukturunu deyişdirmeye icaze verir." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Allows creating and dropping indexes." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Yeni bazalar ve cedveller qurmağa icaze verir." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 #, fuzzy msgid "Allows creating stored routines." msgstr "Yeni cedveller qurmağa icaze verir." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Yeni cedveller qurmağa icaze verir." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Keçici cedveller qurmağa icaze verir." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 #, fuzzy msgid "Allows creating new views." msgstr "Yeni cedveller qurmağa icaze verir." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Me'lumat silmeye icaze verir." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Baza ve cedvel leğv etmeye icaze verir." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Cedvelleri leğv etmeye icaze verir." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." @@ -8902,52 +9024,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Allows reading data." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8958,46 +9080,46 @@ msgstr "" "killing threads of other users." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Selahiyyet te'yin edilmedi." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Heç biri" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Cedvelexas selahiyyetler" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Qeyd: MySQL selahiyyet adları ingilis dilinde ifade edilmişdir " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administrasiya" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Qlobal selahiyyetler" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Me'lumat Bazasına Mexsus Selahiyyetler" @@ -9017,7 +9139,7 @@ msgstr "Sisteme Giriş Me'lumatı" msgid "Do not change the password" msgstr "Parolu deyişdirme" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9068,7 +9190,7 @@ msgstr "The selected users have been deleted successfully." msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Selahiyyetleri Deyişdir" @@ -9076,35 +9198,35 @@ msgstr "Selahiyyetleri Deyişdir" msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Her hansı" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "İcaze ver" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, fuzzy, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9117,48 +9239,48 @@ msgstr "" "içerisindekiler webserver-in istifade etdiklerinden ferqli ola biler. Bu " "halda, davam etmeden evvel, selahiyyetleri %syeniden yüklemelisiniz%s." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Sütunaxas Selahiyyetler" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Aşağıdakı me'lumat bazası üçün selahiyyet müeyyen et" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Aşağıdakı cedvel üçün selahiyyetler müeyyen et" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Sistem Giriş Me'lumatını Deyişdir / İstifadeçini Kopyala" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Eyni selahiyyetlere sahib yeni istifadeçi qur ve ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... köhnesini saxla." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... istifadeçi cedvellerinden köhnesini sil." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... köhne istifadeçinin selahiyyetlerini elinden alaraq onu sil." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9166,48 +9288,48 @@ msgstr "" " ... istifadeçi cedvellerinden köhnesini sil ve ardından selahiyyetleri " "yeniden yükle." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Heç biri" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" bazası üçün selahiyyetleri gözden keçir." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "qlobal" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "bazayaxas" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "xüsusi işare" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy msgid "User has been added." msgstr "%s sahesi leğv edildi" @@ -10384,113 +10506,113 @@ msgid_plural "%d minutes" msgstr[0] "istifadede" msgstr[1] "istifadede" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL sorğusu" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Elaqeler" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10786,36 +10908,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL Tesdiqle" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Etiket" @@ -10824,63 +10946,63 @@ msgstr "Etiket" msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "" " Uzun olduğuna göre,
bu sahedeki me'lumatlar deyişdirilmeye biler " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binary - deyişiklik etme" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Yeni setir olaraq elave et" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Evvelki sehifeye qayıt" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Teze bir setir daha gir" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Bu sehifeye geri dön" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Bir sonrakı setre keç" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10966,49 +11088,45 @@ msgstr "%s cedveli leğv edildi" msgid "View dump (schema) of table" msgstr "Cedvelin sxemini göster" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Sahe Sütunlarını Elave Et/Sil" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Cemi" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Fayl olaraq qeyd et" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11240,25 +11358,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Sahe seçin (en az birini):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Axtarış şertlerini gir (\"where\" ifadesinin esas metni):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Sehife başına düşen setir sayı" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Sıralama şekli:" @@ -12807,9 +12925,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Server versiyası" -#~ msgid "Add a new User" -#~ msgstr "Yeni İstifadeçi elave Et" - #~ msgid "Delete the matches for the " #~ msgstr "Sxemi çıxarılan cedvel" diff --git a/po/be.po b/po/be.po index 1ded78ef34..697e45e44c 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: belarusian_cyrillic \n" @@ -13,13 +13,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Паказаць усе" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "акно або налады бясьпекі вашага браўзэра сканфігураныя на блякаваньне " "міжваконных ўзаемадзеяньняў" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Пошук" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "Пошук" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -138,8 +139,8 @@ msgstr "Камэнтар да табліцы" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -156,8 +157,8 @@ msgstr "Назвы калёнак" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -168,7 +169,7 @@ msgstr "Тып" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -211,10 +212,10 @@ msgstr "Камэнтары" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Не" @@ -233,9 +234,9 @@ msgstr "Не" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -339,7 +340,7 @@ msgstr "Перайсьці да скапіяванай базы дадзеных #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -369,15 +370,15 @@ msgstr "Рэляцыйная схема" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Табліца" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -438,19 +439,19 @@ msgstr "Парадак" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "прамы" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "адваротны" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Паказаць" @@ -471,8 +472,8 @@ msgid "Del" msgstr "Выдаліць" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Або" @@ -505,7 +506,7 @@ msgstr "Выкарыстоўваць табліцы" msgid "SQL query on database %s:" msgstr "SQL-запыт да БД %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Выканаць запыт" @@ -545,8 +546,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s супадзеньняў у табліцы %s" msgstr[1] "%s супадзеньняў у табліцы %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Прагляд" @@ -558,7 +559,7 @@ msgid "Delete the matches for the %s table?" msgstr "Дамп дадзеных табліцы" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -636,7 +637,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -668,22 +669,22 @@ msgstr "" "сэрвэры." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "З адзначанымі:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Адзначыць усё" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Зьняць усе адзнакі" @@ -691,10 +692,10 @@ msgstr "Зьняць усе адзнакі" msgid "Check tables having overhead" msgstr "Адзначыць тыя, што патрабуюць аптымізацыі" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -702,17 +703,17 @@ msgid "Export" msgstr "Экспарт" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Вэрсія для друку" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Ачысьціць" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -766,9 +767,9 @@ msgstr "Праверыць табліцу" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "База дадзеных" @@ -789,15 +790,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Стан" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Дзеяньне" @@ -855,7 +856,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -890,6 +891,93 @@ msgstr "Вэб-сэрвэр ня мае дазволу для захаваньн msgid "Dump has been saved to file %s." msgstr "Дамп захаваны ў файл %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "Дадаць новае поле" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Радкі падзеленыя" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Дадаць новага карыстальніка" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Дадаць новага карыстальніка" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "Дадаць %s новыя палі" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Дадаць новага карыстальніка" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -940,7 +1028,7 @@ msgstr "Закладка была выдаленая." msgid "Showing bookmark" msgstr "Паказваючы закладку" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Закладка %s створаная" @@ -968,7 +1056,7 @@ msgstr "" "вы не павялічыце ліміты выкананьня php-скрыптоў." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -992,15 +1080,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Каманды \"DROP DATABASE\" адключаныя." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Вы зьбіраеце ВЫДАЛІЦЬ базу дадзеных цалкам!" @@ -1070,8 +1158,8 @@ msgstr "Пусты пароль!" msgid "The passwords aren't the same!" msgstr "Паролі не супадаюць!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1095,8 +1183,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1135,12 +1223,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1232,12 +1320,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "МіБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "КiБ" @@ -1343,7 +1431,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Няма" @@ -1758,8 +1846,8 @@ msgstr "SQL-запыт" msgid "No rows selected" msgstr "Ніводны радок ня выбраны" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Зьмяніць" @@ -1771,8 +1859,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Захаваць" @@ -1786,7 +1874,7 @@ msgstr "SQL-запыт" msgid "Show search criteria" msgstr "SQL-запыт" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1830,110 +1918,118 @@ msgstr "Дадаць/выдаліць калёнку крытэру" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ігнараваць" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Скапіяваць" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Дадаць %s новыя палі" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Выберыце спасылкавы ключ" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Выберыце зьнешні ключ" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Калі ласка, выберыце першасны (PRIMARY) альбо ўнікальны ключ (UNIQUE)" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Выберыце поле для адлюстраваньня" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy msgid "Go to link" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Згенэраваць пароль" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Згенэраваць" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Зьмяніць пароль" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пан" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1941,30 +2037,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy msgid ", latest stable version:" msgstr "Стварыць сувязь" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Базы дадзеных адсутнічаюць" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy msgid "Done" msgstr "Дадзеныя" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Папярэдняя старонка" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1972,96 +2068,96 @@ msgid "Next" msgstr "Наступная старонка" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Агулам" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двайковы" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Сак" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Кра" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Тра" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чэр" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Ліп" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Жні" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Кас" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2069,78 +2165,78 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Сьн" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ндз" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пан" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Аўт" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пят" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2148,107 +2244,112 @@ msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ндз" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пан" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Аўт" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сер" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Цач" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пят" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "выкарыстоўваецца" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у сэкунду" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Памер шрыфта" @@ -2360,13 +2461,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Базы дадзеных" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Памылка" @@ -2501,7 +2602,7 @@ msgstr "Тэма %s ня знойдзеная!" msgid "Theme path not found for theme %s!" msgstr "Ня знойдзены шлях да тэмы %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2676,7 +2777,7 @@ msgstr "Табліц" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Дадзеныя" @@ -2750,7 +2851,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Сэрвэр" @@ -2815,103 +2916,103 @@ msgstr "SQL-запыт" msgid "MySQL said: " msgstr "Адказ MySQL: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Тлумачыць SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Не тлумачыць SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Без PHP-коду" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Стварыць PHP-код" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Абнавіць" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Не правяраць SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Праверыць SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Машыны" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Прафіляваньне" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Б" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "ГіБ" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "ТіБ" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "ПіБ" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "ЭіБ" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Ндз" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дзён, %s гадзінаў, %s хвілінаў і %s сэкундаў" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Працэдуры" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2919,7 +3020,7 @@ msgctxt "First page" msgid "Begin" msgstr "Першая старонка" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2928,7 +3029,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Папярэдняя старонка" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2937,7 +3038,7 @@ msgctxt "Next page" msgid "Next" msgstr "Наступная старонка" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2945,35 +3046,35 @@ msgctxt "Last page" msgid "End" msgstr "Апошняя старонка" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Перайсьці да базы дадзеных "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Існуе вядомая памылка з выкарыстаньнем парамэтра %s, глядзіце апісаньне на %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Структура" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2981,38 +3082,38 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Уставіць" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Апэрацыі" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3190,7 +3291,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Скінуць" @@ -3450,7 +3551,7 @@ msgid "Character set of the file" msgstr "Кадыроўка файла:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Фармат" @@ -5087,7 +5188,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Пароль" @@ -5375,8 +5476,8 @@ msgid "Designer" msgstr "Дызайнэр" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Прывілеі" @@ -5395,7 +5496,7 @@ msgstr "Падзеі" msgid "Triggers" msgstr "Трыгеры" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5458,7 +5559,7 @@ msgid "Create" msgstr "Стварыць" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Без прывілеяў" @@ -5830,12 +5931,12 @@ msgstr "Сартаваць па ключы" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Налады" @@ -5869,8 +5970,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Схаваць" @@ -5879,10 +5980,6 @@ msgstr "Схаваць" msgid "Browser transformation" msgstr "Пераўтварэньне MIME-тыпу браўзэрам" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5891,60 +5988,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Скапіяваць" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Радок быў выдалены" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Спыніць" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "па запыту" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Паказаныя запісы" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "усяго" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Запыт выконваўся %01.4f сэк" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Вэрсія для друку (з усім тэкстам)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Паказаць PDF-схему" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Стварыць сувязь" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Сувязь ня знойдзеная" @@ -6151,7 +6244,7 @@ msgstr "" "— 50." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Парадак" @@ -6517,7 +6610,7 @@ msgstr "Даступныя MIME-тыпы" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Хост" @@ -6721,7 +6814,7 @@ msgstr "Тып экспарту" msgid "Open new phpMyAdmin window" msgstr "Адкрыць новае акно phpMyAdmin" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6733,51 +6826,51 @@ msgstr "SQL-вынік" msgid "Generated by" msgstr "Створаны" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 #, fuzzy msgid "Go to table" msgstr "Базы дадзеных адсутнічаюць" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Толькі структуру" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6829,7 +6922,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Імя табліцы" @@ -6850,6 +6943,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "Файл %s ня ўтрымлівае ніякага ідэнтыфікатара ключа" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6903,7 +7022,7 @@ msgstr "" msgid "Add prefix" msgstr "Дадаць новае поле" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Няма зьменаў" @@ -6912,7 +7031,7 @@ msgid "Charset" msgstr "Кадыроўка" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Двайковы" @@ -7219,7 +7338,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Імя карыстальніка" @@ -7239,9 +7358,9 @@ msgid "Variable" msgstr "Зьменная" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Значэньне" @@ -7267,7 +7386,7 @@ msgstr "Любы карыстальнік" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Выкарыстоўваць тэкставае поле" @@ -7460,7 +7579,7 @@ msgid "Returns" msgstr "Тып працэдуры" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Час" @@ -7618,8 +7737,8 @@ msgstr "" msgid "Routine parameters" msgstr "Працэдуры" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Функцыя" @@ -7948,8 +8067,8 @@ msgstr "Невядомая мова: %1$s." msgid "Current Server" msgstr "Сэрвэр" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7971,7 +8090,7 @@ msgstr "Кадыроўкі" msgid "Engines" msgstr "Машыны" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Пошук у базе дадзеных" @@ -7991,7 +8110,7 @@ msgstr "Вэб-сэрвэр" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Пошук у базе дадзеных" @@ -8018,11 +8137,11 @@ msgstr "Каляндар" msgid "Columns" msgstr "Назвы калёнак" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" @@ -8050,7 +8169,7 @@ msgstr "Толькі прагляд" msgid "Location of the text file" msgstr "Месцазнаходжаньне тэкставага файла" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" @@ -8259,23 +8378,29 @@ msgid "+ Add a value" msgstr "Дадаць новага карыстальніка" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Апэратар" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Пошук" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Уставіць" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8483,8 +8608,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Файлы ў ZIP-архіве ня знойдзеныя!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Памылка ў ZIP-архіве:" @@ -8512,8 +8637,8 @@ msgstr "Магчымасьці асноўных сувязяў" msgid "Protocol version" msgstr "Вэрсія пратаколу" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Карыстальнік" @@ -8657,7 +8782,7 @@ msgstr "" "На сэрвэры запушчаны Suhosin. Калі ласка, зьвярніцеся да %sдакумэнтацыі%s " "для атрыманьня апісаньня магчымых праблемаў." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Базы дадзеных адсутнічаюць" @@ -8686,7 +8811,7 @@ msgstr "Паказаць/схаваць мэню зьлева" msgid "Save position" msgstr "Захаваць разьмяшчэньне табліц" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Стварыць табліцу" @@ -9060,82 +9185,82 @@ msgstr "Машыны захаваньня дадзеных" msgid "View dump (schema) of databases" msgstr "Праглядзець дамп (схему) базаў дадзеных" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Уключае ўсе прывілеі, апроч GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Дазваляе зьмяняць структуру існых табліц." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Дазваляе зьмяняць і выдаляць праграмы, якія захоўваюцца." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Дазваляе ствараць новыя базы дадзеных і табліцы." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Дазваляе ствараць праграмы, якія захоўваюцца." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Дазваляе ствараць новыя табліцы." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Дазваляе ствараць часовыя табліцы." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Дазваляе ствараць, выдаляць і пераймяноўваць уліковыя запісы карыстальнікаў" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Дазваляе ствараць новыя прагляды." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Дазваляе выдаляць дадзеныя." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Дазваляе выдаляць базы дадзеных і табліцы." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Дазваляе выдаляць табліцы." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Дазваляе ствараць падзеі ў пляніроўніку падзеяў" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" "Дазваляе імпартаваць дадзеныя з файлаў і экспартаваць дадзеныя ў файлы." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -9143,17 +9268,17 @@ msgstr "" "прывілеяў." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Дазваляе ствараць і выдаляць індэксы." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Дазваляе блякаваць табліцы для бягучага патоку." @@ -9187,52 +9312,52 @@ msgstr "" "Абмяжоўвае колькасьць адначасовых злучэньняў, якія можа мець карыстальнік." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Дазваляе праглядаць працэсы ўсіх карыстальнікаў" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Не працуе ў гэтай вэрсіі MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дазваляе перазагружаць налады сэрвэра і ачышчаць кэш сэрвэра." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дазваляе карыстальніку пытацца, дзе знаходзяцца slaves / masters." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Неабходна для рэплікацыі slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Дазваляе чытаць дадзеныя." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Дае доступ да поўнага сьпісу базаў дадзеных." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дазваляе выкананьне запытаў SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Дазваляе спыняць сэрвэр." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9243,45 +9368,45 @@ msgstr "" "глябальных зьменных або спыненьне патокаў іншых карыстальнікаў." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Дазваляе стварэньне і выдаленьне трыгераў" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Дазваляе зьмяняць дадзеныя." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Без прывілеяў." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Няма" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Прывілеі, спэцыфічныя для табліцы" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Заўвага: імёны прывілеяў MySQL задаюцца па-ангельску " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Адміністраваньне" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Глябальныя прывілеі" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Спэцыфічныя прывілеі базы дадзеных" @@ -9301,7 +9426,7 @@ msgstr "Інфармацыя пра ўваход" msgid "Do not change the password" msgstr "Не зьмяняць пароль" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9352,7 +9477,7 @@ msgstr "Выбраныя карыстальнікі былі пасьпяхов msgid "The privileges were reloaded successfully." msgstr "Прывілеі былі пасьпяхова перазагружаныя." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Рэдагаваць прывілеі" @@ -9360,34 +9485,34 @@ msgstr "Рэдагаваць прывілеі" msgid "Revoke" msgstr "Ануляваць" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Любы" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Карыстальнікі" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Выдаліць выбраных карыстальнікаў" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Ануляваць усе актыўныя прывілеі карыстальнікаў і пасьля выдаліць іх." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9400,50 +9525,50 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Спэцыфічныя прывілеі калёнак" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Дадаць прывілеі на наступную базу" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Сымбалі падстаноўкі _ і % мусяць быць экранаванымі сымбалем \\ для іх " "літаральнага выкарыстаньня" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Дадаць прывілеі на наступную табліцу" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Зьмяніць рэгістрацыйную інфармацыю / Капіяваць карыстальніка" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Стварыць новага карыстальніка з такімі ж прывілеямі і ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... пакінуць старога." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... выдаліць старога з табліцы карыстальнікаў." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... ануляваць усе актыўныя прывілеі старога і пасьля выдаліць яго." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9451,49 +9576,49 @@ msgstr "" " ... выдаліць старога з табліцы карыстальнікаў і пасьля перазагрузіць " "прывілеі." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "База дадзеных для карыстальніка" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Няма" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Стварыць базу дадзеных з такім самым імем і надзяліць усімі прывілеямі" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Надзяліць усімі прывілеямі базы з іменамі па масцы (імя карыстальніка_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Праверыць прывілеі для базы "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Карыстальнікі з правамі доступу да "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "глябальны" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "спэцыфічны для базы дадзеных" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "шаблён" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10809,115 +10934,115 @@ msgid_plural "%d minutes" msgstr[0] "выкарыстоўваецца" msgstr[1] "выкарыстоўваецца" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 #, fuzzy msgid "Structure Difference" msgstr "Структура для прагляду" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 #, fuzzy msgid "Data Difference" msgstr "Структура для прагляду" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL-запыт" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "максымум адначасовых злучэньняў" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11216,36 +11341,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "У выглядзе PHP-коду" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Праверыць SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Праблемы з індэксамі для табліцы `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Метка" @@ -11254,65 +11379,65 @@ msgstr "Метка" msgid "Table %1$s has been altered successfully" msgstr "Табліца %1$s была пасьпяхова зьмененая" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "З-за вялікай даўжыні,
гэтае поле ня можа быць адрэдагаванае " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Двайковыя дадзеныя — не рэдагуюцца" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Уставіць як новы радок" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 #, fuzzy msgid "Show insert query" msgstr "У выглядзе SQL-запыту" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "і пасьля" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Перайсьці да папярэдняй старонкі" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Дадаць яшчэ адзін радок" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Вярнуцца да гэтай старонкі" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Рэдагаваць наступны радок" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11401,49 +11526,45 @@ msgstr "Табліца %1$s створаная." msgid "View dump (schema) of table" msgstr "Праглядзець дамп (схему) табліцы" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Дадаць/выдаліць калёнку крытэру" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Колькасьць файлаў логу" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Захаваць як файл" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11676,25 +11797,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Выбраць палі (прынамсі адно):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Дадаць умовы пошуку (цела для ўмовы \"where\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Колькасьць радкоў на старонку" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Парадак прагляду:" @@ -13315,9 +13436,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Стварыць сувязь" -#~ msgid "Add a new User" -#~ msgstr "Дадаць новага карыстальніка" - #, fuzzy #~ msgid "Delete the matches for the " #~ msgstr "Дамп дадзеных табліцы" diff --git a/po/be@latin.po b/po/be@latin.po index e0a6b1cc6e..2174d531e6 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-03-30 23:09+0200\n" "Last-Translator: Michal \n" "Language-Team: belarusian_latin \n" @@ -15,13 +15,13 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Pakazać usie" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgstr "" "akno abo nałady biaśpieki vašaha braŭzera skanfihuranyja na blakavańnie " "mižvakonnych ŭzajemadziejańniaŭ" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Pošuk" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "Pošuk" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "Kamentar da tablicy" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -158,8 +159,8 @@ msgstr "Nazvy kalonak" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -170,7 +171,7 @@ msgstr "Typ" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -213,10 +214,10 @@ msgstr "Kamentary" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Nie" @@ -235,9 +236,9 @@ msgstr "Nie" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -342,7 +343,7 @@ msgstr "Pierajści da skapijavanaj bazy dadzienych" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -372,15 +373,15 @@ msgstr "Relacyjnaja schiema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tablica" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -442,19 +443,19 @@ msgstr "Paradak" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "pramy" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "advarotny" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Pakazać" @@ -475,8 +476,8 @@ msgid "Del" msgstr "Vydalić" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Abo" @@ -509,7 +510,7 @@ msgstr "Vykarystoŭvać tablicy" msgid "SQL query on database %s:" msgstr "SQL-zapyt da BD %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Vykanać zapyt" @@ -550,8 +551,8 @@ msgstr[0] "%s supadzieńniaŭ u tablicy %s" msgstr[1] "%s supadzieńniaŭ u tablicy %s" msgstr[2] "%s supadzieńniaŭ u tablicy %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Prahlad" @@ -563,7 +564,7 @@ msgid "Delete the matches for the %s table?" msgstr "Damp dadzienych tablicy" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -642,7 +643,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -674,22 +675,22 @@ msgstr "" "servery." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Z adznačanymi:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Adznačyć usio" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Źniać usie adznaki" @@ -697,10 +698,10 @@ msgstr "Źniać usie adznaki" msgid "Check tables having overhead" msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -708,17 +709,17 @@ msgid "Export" msgstr "Ekspart" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Versija dla druku" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Ačyścić" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -770,9 +771,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Baza dadzienych" @@ -791,15 +792,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Stan" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Dziejańnie" @@ -852,7 +853,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -887,6 +888,92 @@ msgstr "Web-server nia maje dazvołu dla zachavańnia ŭ fajł %s." msgid "Dump has been saved to file %s." msgstr "Damp zachavany ŭ fajł %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "Dadać novaje pole" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Radki padzielenyja" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add constraints" +msgid "Add a linestring" +msgstr "Dadać abmiežavańni" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +msgid "Add an inner ring" +msgstr "" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "Dadać %s novyja pali" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new User" +msgid "Add geometry" +msgstr "Dadać novaha karystalnika" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -937,7 +1024,7 @@ msgstr "Zakładka była vydalenaja." msgid "Showing bookmark" msgstr "Pakazvajučy zakładku" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Zakładka %s stvoranaja" @@ -965,7 +1052,7 @@ msgstr "" "kali vy nie pavialičycie limity vykanańnia php-skryptoŭ." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -989,15 +1076,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Kamandy \"DROP DATABASE\" adklučanyja." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Ci sapraŭdy vy žadajecie " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Vy źbirajecie VYDALIĆ bazu dadzienych całkam!" @@ -1067,8 +1154,8 @@ msgstr "Pusty parol!" msgid "The passwords aren't the same!" msgstr "Paroli nie supadajuć!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1092,8 +1179,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1133,12 +1220,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1231,12 +1318,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1343,7 +1430,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nijakaja" @@ -1763,8 +1850,8 @@ msgstr "U vyhladzie SQL-zapytu" msgid "No rows selected" msgstr "Nivodny radok nia vybrany" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Źmianić" @@ -1776,8 +1863,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Zachavać" @@ -1793,7 +1880,7 @@ msgstr "pa zapytu" msgid "Show search criteria" msgstr "U vyhladzie SQL-zapytu" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1837,109 +1924,117 @@ msgstr "Dadać/vydalić kalonku kryteru" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignaravać" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Skapijavać" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Dadać %s novyja pali" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Vybierycie spasyłkavy kluč" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Vybierycie źniešni kluč" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Kali łaska, vybierycie pieršasny (PRIMARY) albo ŭnikalny kluč (UNIQUE)" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vybierycie pole dla adlustravańnia" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Zgieneravać parol" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Zgieneravać" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Źmianić parol" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pan" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1947,31 +2042,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "Bazy dadzienych adsutničajuć" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nijakaja" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Papiaredniaja staronka" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1979,96 +2074,96 @@ msgid "Next" msgstr "Nastupnaja staronka" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ahułam" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Dvajkovy" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Sak" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kra" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Tra" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Čer" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Žni" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Kas" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2076,78 +2171,78 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Śn" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ndz" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pan" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Aŭt" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Piat" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2155,107 +2250,112 @@ msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ndz" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pan" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Aŭt" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sier" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cač" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Piat" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "vykarystoŭvajecca" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundu" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Pamier šryfta" @@ -2368,13 +2468,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Bazy dadzienych" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Pamyłka" @@ -2509,7 +2609,7 @@ msgstr "Tema %s nia znojdzienaja!" msgid "Theme path not found for theme %s!" msgstr "Nia znojdzieny šlach da temy %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2685,7 +2785,7 @@ msgstr "Tablic" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Dadzienyja" @@ -2761,7 +2861,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2826,103 +2926,103 @@ msgstr "SQL-zapyt" msgid "MySQL said: " msgstr "Adkaz MySQL: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Tłumačyć SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Nie tłumačyć SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Biez PHP-kodu" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Stvaryć PHP-kod" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Abnavić" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Nie praviarać SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Pravieryć SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Mašyny" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Prafilavańnie" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Ndz" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dzion, %s hadzinaŭ, %s chvilinaŭ i %s sekundaŭ" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Pracedury" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2930,7 +3030,7 @@ msgctxt "First page" msgid "Begin" msgstr "Pieršaja staronka" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2939,7 +3039,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Papiaredniaja staronka" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2948,7 +3048,7 @@ msgctxt "Next page" msgid "Next" msgstr "Nastupnaja staronka" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2956,36 +3056,36 @@ msgctxt "Last page" msgid "End" msgstr "Apošniaja staronka" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Pierajści da bazy dadzienych \"%s\"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Isnuje viadomaja pamyłka z vykarystańniem parametra %s, hladzicie apisańnie " "na %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2993,38 +3093,38 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Ustavić" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Aperacyi" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, 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/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 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/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3202,7 +3302,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Skinuć" @@ -3459,7 +3559,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Farmat" @@ -5060,7 +5160,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Parol" @@ -5353,8 +5453,8 @@ msgid "Designer" msgstr "Dyzajner" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Pryvilei" @@ -5373,7 +5473,7 @@ msgstr "Padziei" msgid "Triggers" msgstr "Tryhiery" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5436,7 +5536,7 @@ msgid "Create" msgstr "Stvaryć" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Biez pryvilejaŭ" @@ -5805,12 +5905,12 @@ msgstr "Sartavać pa klučy" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Nałady" @@ -5844,8 +5944,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Schavać" @@ -5854,10 +5954,6 @@ msgstr "Schavać" msgid "Browser transformation" msgstr "Pieraŭtvareńnie MIME-typu braŭzeram" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5866,61 +5962,57 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Skapijavać" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Radok byŭ vydaleny" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Spynić" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "pa zapytu" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Pakazanyja zapisy" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "usiaho" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Zapyt vykonvaŭsia %01.4f sek" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Dziejańni z vynikami zapytaŭ" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Versija dla druku (z usim tekstam)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Pakazać PDF-schiemu" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Stvaryć" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Suviaź nia znojdzienaja" @@ -6128,7 +6220,7 @@ msgstr "" "pa zmoŭčańni — 50." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "" @@ -6497,7 +6589,7 @@ msgstr "Dastupnyja MIME-typy" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Chost" @@ -6700,7 +6792,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Adkryć novaje akno phpMyAdmin" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6712,49 +6804,49 @@ msgstr "SQL-vynik" msgid "Generated by" msgstr "Stvorany" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tolki strukturu" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6806,7 +6898,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Imia tablicy" @@ -6827,6 +6919,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "Fajł %s nia ŭtrymlivaje nijakaha identyfikatara kluča" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6880,7 +6998,7 @@ msgstr "" msgid "Add prefix" msgstr "Dadać novaje pole" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Niama źmienaŭ" @@ -6889,7 +7007,7 @@ msgid "Charset" msgstr "Kadyroŭka" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Dvajkovy" @@ -7196,7 +7314,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Imia karystalnika" @@ -7214,9 +7332,9 @@ msgid "Variable" msgstr "Źmiennaja" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Značeńnie" @@ -7242,7 +7360,7 @@ msgstr "Luby karystalnik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Vykarystoŭvać tekstavaje pole" @@ -7435,7 +7553,7 @@ msgid "Returns" msgstr "Typ pracedury" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Čas" @@ -7595,8 +7713,8 @@ msgstr "" msgid "Routine parameters" msgstr "Pracedury" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funkcyja" @@ -7925,8 +8043,8 @@ msgstr "Nieviadomaja mova: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7948,7 +8066,7 @@ msgstr "Kadyroŭki" msgid "Engines" msgstr "Mašyny" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "" @@ -7966,7 +8084,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "" @@ -7991,11 +8109,11 @@ msgstr "" msgid "Columns" msgstr "Nazvy kalonak" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" @@ -8023,7 +8141,7 @@ msgstr "Tolki prahlad" msgid "Location of the text file" msgstr "Miescaznachodžańnie tekstavaha fajła" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "tečka web-servera dla zahruzki fajłaŭ" @@ -8234,23 +8352,29 @@ msgid "+ Add a value" msgstr "Dadać novaha karystalnika" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Prahladzieć źniešnija značeńni" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Aperatar" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Pošuk" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Ustavić" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8461,8 +8585,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Fajły ŭ ZIP-archivie nia znojdzienyja!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Pamyłka ŭ ZIP-archivie:" @@ -8490,8 +8614,8 @@ msgstr "Mahčymaści asnoŭnych suviaziaŭ" msgid "Protocol version" msgstr "Versija pratakołu" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Karystalnik" @@ -8635,7 +8759,7 @@ msgstr "" "Na servery zapuščany Suhosin. Kali łaska, źviarniciesia da %sdakumentacyi%s " "dla atrymańnia apisańnia mahčymych prablemaŭ." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Bazy dadzienych adsutničajuć" @@ -8664,7 +8788,7 @@ msgstr "Pakazać/schavać meniu źleva" msgid "Save position" msgstr "Zachavać raźmiaščeńnie tablic" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Stvaryć tablicu" @@ -9038,82 +9162,82 @@ msgstr "Mašyny zachavańnia dadzienych" msgid "View dump (schema) of databases" msgstr "Prahladzieć damp (schiemu) bazaŭ dadzienych" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Uklučaje ŭsie pryvilei, aproč GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Dazvalaje źmianiać strukturu isnych tablic." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Dazvalaje źmianiać i vydalać pragramy, jakija zachoŭvajucca." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Dazvalaje stvarać novyja bazy dadzienych i tablicy." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Dazvalaje stvarać pragramy, jakija zachoŭvajucca." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Dazvalaje stvarać novyja tablicy." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Dazvalaje stvarać časovyja tablicy." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Dazvalaje stvarać, vydalać i pierajmianoŭvać ulikovyja zapisy karystalnikaŭ" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Dazvalaje stvarać novyja prahlady." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Dazvalaje vydalać dadzienyja." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Dazvalaje vydalać bazy dadzienych i tablicy." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Dazvalaje vydalać tablicy." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Dazvalaje stvarać padziei ŭ planiroŭniku padziejaŭ" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" "Dazvalaje impartavać dadzienyja z fajłaŭ i ekspartavać dadzienyja ŭ fajły." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -9121,17 +9245,17 @@ msgstr "" "pryvilejaŭ." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Dazvalaje stvarać i vydalać indeksy." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Dazvalaje blakavać tablicy dla biahučaha patoku." @@ -9165,52 +9289,52 @@ msgstr "" "Abmiažoŭvaje kolkaść adnačasovych złučeńniaŭ, jakija moža mieć karystalnik." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Dazvalaje prahladać pracesy ŭsich karystalnikaŭ" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Nie pracuje ŭ hetaj versii MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Dazvalaje pierazahružać nałady servera i ačyščać keš servera." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Dazvalaje karystalniku pytacca, dzie znachodziacca slaves / masters." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Nieabchodna dla replikacyi slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Dazvalaje čytać dadzienyja." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Daje dostup da poŭnaha śpisu bazaŭ dadzienych." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dazvalaje vykanańnie zapytaŭ SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Dazvalaje spyniać server." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9221,45 +9345,45 @@ msgstr "" "vyznačeńnie hlabalnych źmiennych abo spynieńnie patokaŭ inšych karystalnikaŭ." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Dazvalaje stvareńnie i vydaleńnie tryhieraŭ" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Dazvalaje źmianiać dadzienyja." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Biez pryvilejaŭ." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nijakaja" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Pryvilei, specyfičnyja dla tablicy" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Zaŭvaha: imiony pryvilejaŭ MySQL zadajucca pa-anhielsku " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administravańnie" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Hlabalnyja pryvilei" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Specyfičnyja pryvilei bazy dadzienych" @@ -9279,7 +9403,7 @@ msgstr "Infarmacyja pra ŭvachod" msgid "Do not change the password" msgstr "Nie źmianiać parol" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9330,7 +9454,7 @@ msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja." msgid "The privileges were reloaded successfully." msgstr "Pryvilei byli paśpiachova pierazahružanyja." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Redagavać pryvilei" @@ -9338,35 +9462,35 @@ msgstr "Redagavać pryvilei" msgid "Revoke" msgstr "Anulavać" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Luby" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Karystalniki" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Vydalić vybranych karystalnikaŭ" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Anulavać usie aktyŭnyja pryvilei karystalnikaŭ i paśla vydalić ich." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" "Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9379,100 +9503,100 @@ msgstr "" "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Specyfičnyja pryvilei kalonak" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Dadać pryvilei na nastupnuju bazu" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Symbali padstanoŭki % i _ musiać być ekranavanymi symbalem \\ dla ich " "litaralnaha vykarystańnia" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Dadać pryvilei na nastupnuju tablicu" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Źmianić rehistracyjnuju infarmacyju / Kapijavać karystalnika" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Stvaryć novaha karystalnika z takimi ž pryvilejami i ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... pakinuć staroha." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... vydalić staroha z tablicy karystalnikaŭ." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... anulavać usie aktyŭnyja pryvilei staroha i paśla vydalić jaho." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... vydalić staroha z tablicy karystalnikaŭ i paśla pierazahruzić pryvilei." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Baza dadzienych dla karystalnika" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nijakaja" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" "Stvaryć bazu dadzienych z takim samym imiem i nadzialić usimi pryvilejami" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Nadzialić usimi pryvilejami bazy z imienami pa mascy (imia karystalnika_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Karystalniki z pravami dostupu da \"%s\"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "hlabalny" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "specyfičny dla bazy dadzienych" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "šablon" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10787,114 +10911,114 @@ msgstr[0] "vykarystoŭvajecca" msgstr[1] "vykarystoŭvajecca" msgstr[2] "vykarystoŭvajecca" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Execute bookmarked query" msgid "Executed queries" msgstr "Vykanać zapyt z zakładak" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "maksymum adnačasovych złučeńniaŭ" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11186,36 +11310,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "U vyhladzie PHP-kodu" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pravieryć SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Prablemy z indeksami dla tablicy `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Mietka" @@ -11224,64 +11348,64 @@ msgstr "Mietka" msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s była paśpiachova źmienienaja" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Z-za vialikaj daŭžyni, hetaje pole nia moža być adredagavanaje " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Dvajkovyja dadzienyja — nie redagujucca" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Ustavić jak novy radok" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "i paśla" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Pierajści da papiaredniaj staronki" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Dadać jašče adzin radok" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Viarnucca da hetaj staronki" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Redagavać nastupny radok" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Vykarystoŭvajcie klavišu TAB dla pieramiaščeńnia ad značeńnia da značeńnia " "abo CTRL+strełki dla pieramiaščeńnia ŭ luboje inšaje miesca" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11369,49 +11493,45 @@ msgstr "Tablica %1$s stvoranaja." msgid "View dump (schema) of table" msgstr "Prahladzieć damp (schiemu) tablicy" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Dadać/vydalić kalonku kryteru" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Kolkaść fajłaŭ łogu" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Zachavać jak fajł" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11644,25 +11764,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Vybrać pali (prynamsi adno):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dadać umovy pošuku (cieła dla ŭmovy \"where\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Kolkaść radkoŭ na staronku" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Paradak prahladu:" diff --git a/po/bg.po b/po/bg.po index 5c841f6d99..0d170e6ed6 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-07-19 14:58+0200\n" "Last-Translator: \n" "Language-Team: bulgarian \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Показване всички" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "отварящият го прозорец или браузърът Ви е блокирал обновяване на данни от " "един прозорец в друг от съображения за сигурност." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Търсене" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Търсене" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Коментари към таблицата" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Kолона" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Тип" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Коментари" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Не" @@ -232,9 +233,9 @@ msgstr "Не" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Показване на копираната БД" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Редакция или експорт на релационна схе #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Таблица" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -428,19 +429,19 @@ msgstr "Сортиране" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Възходящо" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Низходящо" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Показване" @@ -461,8 +462,8 @@ msgid "Del" msgstr "Изтрий" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Или" @@ -491,7 +492,7 @@ msgstr "Използване таблиците" msgid "SQL query on database %s:" msgstr "SQL заявка към БД %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Изпълни заявката" @@ -530,8 +531,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s съвпадение в таблица %s" msgstr[1] "%s съвпадения в таблица %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Прелистване" @@ -542,7 +543,7 @@ msgid "Delete the matches for the %s table?" msgstr "Изтриване на съвпаденията от таблицата %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -611,7 +612,7 @@ msgstr "Проследяването е активно." msgid "Tracking is not active." msgstr "Проследяването е неактивно." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -639,22 +640,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Когато има отметка:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Маркиране всички" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Отмаркиране всички" @@ -662,10 +663,10 @@ msgstr "Отмаркиране всички" msgid "Check tables having overhead" msgstr "Маркиране на таблиците със загубено място" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -673,17 +674,17 @@ msgid "Export" msgstr "Експорт" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Преглед за печат" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Изчистване" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -731,9 +732,9 @@ msgstr "Следени таблици" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "БД" @@ -752,15 +753,15 @@ msgstr "Съвременен" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Състояние" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Действие" @@ -813,7 +814,7 @@ msgstr "Въведете всяка стойност в отделно поле. msgid "+ Restart insertion and add a new value" msgstr "+ Рестартиране на вмъкването и добавяне нова стойност" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Изход" @@ -849,6 +850,95 @@ msgstr "Web сървърът няма права за писане върху ф msgid "Dump has been saved to file %s." msgstr "Схемата беше запазена във файл %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Стойности за колоната \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Геометрия" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Нова процедура" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Редовете завършват с" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Добавяне потребител" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Добавяне потребител" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Добавяне колона" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Геометрия" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -898,7 +988,7 @@ msgstr "Белязката беше изтрита." msgid "Showing bookmark" msgstr "Показване на белязка" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Белязка %s беше създадена" @@ -926,7 +1016,7 @@ msgstr "" "импорт, освен ако не бъдат увеличени времевите ограничения в PHP." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -952,15 +1042,15 @@ msgstr "Щракване за избор" msgid "Click to unselect" msgstr "Щракване за отмяна на избора" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" заявката е забранена." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Наистина ли искате да изпълните " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Вие ще УНИЩОЖИТЕ цялата БД!" @@ -1022,8 +1112,8 @@ msgstr "Паролата е празна!" msgid "The passwords aren't the same!" msgstr "Паролата не е същата!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Нов потребител" @@ -1041,8 +1131,8 @@ msgid "Close" msgstr "Затваряне" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1078,12 +1168,12 @@ msgid "Other" msgstr "Друго" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1172,12 +1262,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "КБ" @@ -1278,7 +1368,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Няма" @@ -1668,8 +1758,8 @@ msgstr "Показване формата за заявки" msgid "No rows selected" msgstr "Няма върнати редове" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Промяна" @@ -1683,8 +1773,8 @@ msgstr "Изпълняване на SQL" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Зпазване" @@ -1696,7 +1786,7 @@ msgstr "Скриване критерий за търсене" msgid "Show search criteria" msgstr "Показване критерий за търсене" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1740,34 +1830,42 @@ msgstr "Добавияне/изтриване колони" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Игнориране" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Копиране" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "Добавяне колона" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Изберете посочвания ключ" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Избор външен ключ" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Изберете първичен или уникален ключ" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Изберете колона за показване" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1775,68 +1873,68 @@ msgstr "" "Не сте записали промените в оформлението. Те ще бъдат загубени, ако не ги " "запазите. Искате ли да продължите?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Добавяне опция към колона " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Завличане за промяна на подредбата" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Щракване за сортиране" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Щракване за маркиране/отмаркиране" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Щракнете стрелката,
за да изберете колони" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Генериране парола" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Генериране" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Смяна парола" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Още" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1846,27 +1944,27 @@ msgstr "" "версия е %s, излязла на %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", актуална стабилна версия:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "актуално" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Готово" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Преден" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1874,149 +1972,149 @@ msgid "Next" msgstr "Следващ" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Днес" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "януари" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "февруари" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "март" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "април" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "май" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "юни" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "юли" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "август" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "септември" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "октомври" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "ноември" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "декември" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "яну" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "фев" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "септ" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "ное" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "дек" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "неделя" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "понеделник" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "вторник" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "сряда" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "четвъртък" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "петък" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "събота" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2024,87 +2122,92 @@ msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "сб" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "нд" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "пн" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "вт" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "ср" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "чт" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "пт" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Сед" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Час" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "минута" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "секунда" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Размер шрифт" @@ -2215,13 +2318,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "БД" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Грешка" @@ -2346,7 +2449,7 @@ msgstr "Тема %s не е намерена!" msgid "Theme path not found for theme %s!" msgstr "Не е открит път към тема %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Тема" @@ -2518,7 +2621,7 @@ msgstr "Таблици" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Данни" @@ -2586,7 +2689,7 @@ msgstr "Невалиден хост за сървър %1$s. Прегледайт #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Сървър" @@ -2651,101 +2754,101 @@ msgstr "SQL заявка" msgid "MySQL said: " msgstr "MySQL отговори: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Неуспешно свързване към SQL валидатора!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Обяснение на SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Пропусни Explain SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Без PHP код" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Създаване на PHP код" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Опресняване" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Пропусни Validate SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Валидиране на SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Редакция на заявката на място" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "На място" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Профилиране" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Б" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "ЕБ" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "нд" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%e %B %Y в %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дена, %s часа, %s минути и %s секунди" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routine parameters" msgid "Missing parameter:" msgstr "Параметри на процедурата" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2753,7 +2856,7 @@ msgctxt "First page" msgid "Begin" msgstr "Начало" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2762,7 +2865,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Предишен" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2771,7 +2874,7 @@ msgctxt "Next page" msgid "Next" msgstr "Следващ" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2779,34 +2882,34 @@ msgctxt "Last page" msgid "End" msgstr "Край" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Показване БД "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Функционалността %s се влияе от известен дефект, виж %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Щракване за превключване" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Структура" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2814,37 +2917,37 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Вмъкване" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Операции" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Разглеждане на компютъра:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Избор от директорията за качване %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Директорията която сте указали за upload не може да бъде достигната" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Няма файлве за качване" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Изпълнение" @@ -3010,7 +3113,7 @@ msgstr "Позволение на потребители да променят #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Изчистване" @@ -3267,7 +3370,7 @@ msgid "Character set of the file" msgstr "Знаков набор на файла" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Формат" @@ -4796,7 +4899,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Парола" @@ -5073,8 +5176,8 @@ msgid "Designer" msgstr "Строител" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Права" @@ -5093,7 +5196,7 @@ msgstr "Събития" msgid "Triggers" msgstr "Тригери" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5152,7 +5255,7 @@ msgid "Create" msgstr "Създаване" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Няма права" @@ -5455,12 +5558,12 @@ msgstr "Сортиране по ключ" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Настройки" @@ -5488,8 +5591,8 @@ msgstr "Показване на двоичните данни" msgid "Show BLOB contents" msgstr "Показване на BLOB-данните" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Скриване" @@ -5498,10 +5601,6 @@ msgstr "Скриване" msgid "Browser transformation" msgstr "Браузърна трансформация" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Геометрия" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5510,57 +5609,53 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Копиране" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Редът беше изтрит" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Спиране" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "в зявката" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Показване на записи" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "общо" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Заявката отне %01.4f секунди" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Операции с резулатата от заявката" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Преглед за печат (с пълните текстове)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Диаграма" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Визуализиране на GIS данни" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Създаване на изглед" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Връзките не са намерени" @@ -5739,7 +5834,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Порт" @@ -6044,7 +6139,7 @@ msgstr "Показване MIME типове" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Хост" @@ -6240,7 +6335,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Отваряне на нов прозорец с phpMyAdmin" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6252,50 +6347,50 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерирано от" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Липсващи данни за %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структурата" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6344,7 +6439,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Име на таблица" @@ -6365,6 +6460,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Тази страница не съдържа таблици!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "Режим на съвместимост на SQL:" @@ -6410,7 +6531,7 @@ msgstr "Добавяне на представка на таблица" msgid "Add prefix" msgstr "Добавяне на представка" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Няма промяна" @@ -6419,7 +6540,7 @@ msgid "Charset" msgstr "Знаков набор" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "двоичен" @@ -6724,7 +6845,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Потребителско име" @@ -6742,9 +6863,9 @@ msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Стойност" @@ -6770,7 +6891,7 @@ msgstr "Всеки потребител" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "От текстовото поле" @@ -6946,7 +7067,7 @@ msgid "Returns" msgstr "Връща" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Време" @@ -7089,8 +7210,8 @@ msgstr "Изпълнение на процедура" msgid "Routine parameters" msgstr "Параметри на процедурата" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Функция" @@ -7373,8 +7494,8 @@ msgstr "Непознат език: %1$s." msgid "Current Server" msgstr "Текущ сървър" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Синхронизиране" @@ -7396,7 +7517,7 @@ msgstr "Знакови набори" msgid "Engines" msgstr "Хранилища" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Изходна БД" @@ -7414,7 +7535,7 @@ msgstr "Отдалечен сървър" msgid "Difference" msgstr "Различия" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Целева БД" @@ -7437,11 +7558,11 @@ msgstr "Изчистване" msgid "Columns" msgstr "Колони" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Отбелязване SQL заявката" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Всеки потребител да има достъп до тази белязка" @@ -7469,7 +7590,7 @@ msgstr "Само показване" msgid "Location of the text file" msgstr "Местоположение на текстовия файл" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "директорията за upload на web сървъра" @@ -7666,23 +7787,29 @@ msgid "+ Add a value" msgstr "+ Нова стойност" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Разглеждане на външни стойности" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Оператор" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Търсене" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Вмъкване" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7834,8 +7961,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Не са открити файлове в ZIP архива!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Грешка в ZIP архива:" @@ -7859,8 +7986,8 @@ msgstr "Още" msgid "Protocol version" msgstr "Версия на протокола" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Потребител" @@ -7991,7 +8118,7 @@ msgstr "" "Сървърът е с кръпка Suhosin. Прочетете %sдокументацията%s за възможни " "проблеми." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Няма БД" @@ -8018,7 +8145,7 @@ msgstr "Скриване/Показване на лявото меню" msgid "Save position" msgstr "Запазване на позицията" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Създаване таблица" @@ -8354,80 +8481,80 @@ msgstr "Хранилища на данни" msgid "View dump (schema) of databases" msgstr "Преглед на схемата (дъмп) на БД" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Дава всички права освен GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Позволява промяна на структурата на съществуващи таблици." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Позволява промяна и изтриване на съхранени процедури." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Позволява създаване на нови БД и таблици." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Позволява създаване на съхранени процедури." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Позволява създаване на нови таблици." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Позволява създаването на временни таблици." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Позволява създаване, изтриване и преименуване на потребителски сметки." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Позволява създаване на изгледи." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Позволява изтриване на данни." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Позволява изтриване на БД и таблици." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Позволява изтриване на таблици." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Позволява изпълнение на съхранени процедури." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Позволява импортиране на данни от и експортиране на данни във файлове." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8435,17 +8562,17 @@ msgstr "" "правата." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Позволява създаване и изтриване на индекси." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Позволява вмъкване и заменяне на данни." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Позволява заключване на таблици за текущата нишка." @@ -8479,53 +8606,53 @@ msgstr "" "отворени." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Няма ефект в тази версия на MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Позволява презареждане на настройките и изчистване на буфера на сървъра." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава правото на потребител да знае къде са slaves / masters." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Нужно за replication slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Позволява четене на данни." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Дава достъп до пълния списък на базите данни." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Позволява изпълнение на SHOW CREATE VIEW заявки." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Позволява спиране на сървъра." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8536,43 +8663,43 @@ msgstr "" "променливи или спиране на нишка на други потребители." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Позволява създаване и изтриване на тригери" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Позволява промяна на данни." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Няма права." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Няма" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Специфични за таблицата права" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Забележка: Имената на правата на MySQL са показани на английски " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Администрация" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Глобални права" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Специфични за БД права" @@ -8593,7 +8720,7 @@ msgstr "Информация за логване" msgid "Do not change the password" msgstr "Да не се сменя паролата" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Няма потребител." @@ -8642,7 +8769,7 @@ msgstr "Избраните потребители бяха изтрити усп msgid "The privileges were reloaded successfully." msgstr "Правата бяха презаредени успешно." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Редакция" @@ -8650,34 +8777,34 @@ msgstr "Редакция" msgid "Revoke" msgstr "Отменяне" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Всеки" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Преглед потребители" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Дадени" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Отстраняване избраните потребители" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отмяна на всички права на потребителите и след това изтриване." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Изтриване на БД, които имат имена като тези на потребителите." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8690,48 +8817,48 @@ msgstr "" "правата които използва сървъра ако към него са направени промени на ръка. В " "този случай, трябва да %sпрезаредите правата%s преди да продължите." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Избраният потребител не беше открит в таблицата с права." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Специфични за колоната права" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Добавяне на права към следната БД" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Добавяне на права към следната таблица" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Промяна на логин информацията / Копиране на потребител" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Създаване нов потребител със същите права и ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... запазване на стария." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... изтриване на стария от таблицата с потребители." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... отмяна на всички права от стария и след това изтриване." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -8739,46 +8866,46 @@ msgstr "" " ... изтриване на стария от таблицата с потребители и след това презареждане " "на правата." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "БД за потребителя" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Няма" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Създаване на БД със същото име и даване на пълни права" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Даване на пълни права над БД "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Потребители с достъп до "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "глобален" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "специфични за БД" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "знак за заместване" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "Потребител беше добавен." @@ -9953,112 +10080,112 @@ msgid_plural "%d minutes" msgstr[0] "%d минута" msgstr[1] "%d минути" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Синхронизиране на структурата" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Синхронизиране на данните" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "не съществува" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Структурни различия" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Различия в данните" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Добавяне на колона(и)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Изтриване на колона(и)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Промяна на колона(и)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Изтриване на индекс(и)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Добавяне на индекс(и)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Обновяване на ред(ове)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Вмъкване на ред(ове)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Да бъде ли изтрито предишното съдържание на таблиците?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Прилагане на избраните промените" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Синхронизиране на БД" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Избраните целеви таблици бяха синхронизирани с изходните." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Целевата БД беше синхронизирана с изходната" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Подадени заявки" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Ръчно въвеждане" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Текуща връзка" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Настройка: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Сокет" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10352,34 +10479,34 @@ msgstr "Ключът е твърде къс, трябва да бъде поне msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Ключът трябва да съдържа букви, цифри [em]и[/em] специални знаци." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Показване като PHP-код" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Валидиран SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем с индексите на таблица `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Етикет" @@ -10388,62 +10515,62 @@ msgstr "Етикет" msgid "Table %1$s has been altered successfully" msgstr "Таблицата %1$s беше променена" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "Поради дължината си,
това поле може да е нередактируемо " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Двоично - не се редактира" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Вмъкване като нов ред" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Показване заявка за вмъкване" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "и след това" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Обратно към предната страница" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Вмъкване нов ред" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Връщане към тази страница" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Редакция на следващия ред" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност " "или CTRL+стрелка, за да премествате курсора в съответната посока" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10514,43 +10641,39 @@ msgstr "Таблицата %1$s беше създадена." msgid "View dump (schema) of table" msgstr "Схема (дъмп) на таблицата" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Ширина" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Височина" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Етикет на колона" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- без --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Запис във файл" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Име на файл" @@ -10773,23 +10896,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Изпълняване на \"заявка по шаблон\" (знак за заместване: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Избор на колона (поне една):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Добавяне на условие за търсене (съдържание на \"where\" клаузата):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Брой редове на страница" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Подреждане по:" @@ -12399,6 +12522,3 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Създаване на потребител" - -#~ msgid "Add a new User" -#~ msgstr "Добавяне потребител" diff --git a/po/bn.po b/po/bn.po index 4eed5eca86..28ccf98fd9 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-10-21 01:36+0200\n" "Last-Translator: Nobin নবীন \n" "Language-Team: bangla \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "সবগুলো দেখাও" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "করেছেন, অথবা আপনার ব্রাউজার এর নিরাপত্তা সেটিংস্ এমন ভাবে কনফিগার করা আছে যে " "দুটি উইন্ডোর এক সাথে হালনাগাদ করাকে বাধা দিবে।" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "খুঁজুন" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "খুঁজুন" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -137,8 +138,8 @@ msgstr "টেবিলের মন্তব্য সমূহ" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -153,8 +154,8 @@ msgstr "কলামের" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -165,7 +166,7 @@ msgstr "ধরন" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -208,10 +209,10 @@ msgstr "মন্তব্যসমূহ" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "না" @@ -230,9 +231,9 @@ msgstr "না" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -336,7 +337,7 @@ msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তি #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -366,15 +367,15 @@ msgstr "Relational schema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "টেবিল" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -435,19 +436,19 @@ msgstr "সাজাঁন" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Ascending" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Descending" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "দেখান" @@ -468,8 +469,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "অথবা" @@ -502,7 +503,7 @@ msgstr "টেবিল ব্যাবহারকারী" msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Submit Query" @@ -542,8 +543,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "ব্রাউজ করুন" @@ -555,7 +556,7 @@ msgid "Delete the matches for the %s table?" msgstr "টেবিল এর জন্য ডাটা ডাম্পিং করুন" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -633,7 +634,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -661,22 +662,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "সব পরীক্ষা করুন" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Uncheck All" @@ -684,10 +685,10 @@ msgstr "Uncheck All" msgid "Check tables having overhead" msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -695,17 +696,17 @@ msgid "Export" msgstr "Export" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Print view" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "খালি" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -759,9 +760,9 @@ msgstr "টেবিল পরীক্ষা কর" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "ডাটাবেজ" @@ -782,15 +783,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "অবস্থা" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Action" @@ -848,7 +849,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -882,6 +883,93 @@ msgstr "The web server does not have permission to save the file %s." msgid "Dump has been saved to file %s." msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে" +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a point" +msgstr "%s ক্ষেত্রসমূহ যোগ কর" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Lines terminated by" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "একটি নতুন ইউজার যোগ করুন" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "একটি নতুন ইউজার যোগ করুন" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "%s ক্ষেত্রসমূহ যোগ কর" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "একটি নতুন ইউজার যোগ করুন" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -929,7 +1017,7 @@ msgstr "বুকমার্কটি মুছে ফেলা হয়েছে msgid "Showing bookmark" msgstr "বুকমার্ক দেখান" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" @@ -956,7 +1044,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -980,15 +1068,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "আপনি কি সত্যি চান?" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "আপনি একটি সম্পূর্ন ডাটাবেজ প্রায় মুছে ফেলছেন" @@ -1058,8 +1146,8 @@ msgstr "পাসওয়ার্ড দেওয়া হয়নি" msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1083,8 +1171,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1123,12 +1211,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1220,12 +1308,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "মেগাবাইট" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "কিলোবাইট" @@ -1329,7 +1417,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "কোনটিই নয়" @@ -1742,8 +1830,8 @@ msgstr "SQL query" msgid "No rows selected" msgstr "No rows selected" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Change" @@ -1755,8 +1843,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "সেভ করুন" @@ -1770,7 +1858,7 @@ msgstr "SQL query" msgid "Show search criteria" msgstr "SQL query" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1814,110 +1902,118 @@ msgstr "Add/Delete Field Columns" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "%s ক্ষেত্রসমূহ যোগ কর" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "প্রদর্শনের জন্য ক্ষেত্র পছন্দ কর" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy msgid "Go to link" msgstr "কোন ডাটাবেজ নাই" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "পাসওয়ার্ড তৈরী কর" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "তৈরী কর" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "পাসওয়ার্ড পরিবর্তন কর" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "সোমবার" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1925,30 +2021,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy msgid ", latest stable version:" msgstr "Server version" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "কোন ডাটাবেজ নাই" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy msgid "Done" msgstr "ডাটা" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "পূর্ববর্তী" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1956,96 +2052,96 @@ msgid "Next" msgstr "পরবর্তী" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "মোট" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "বাইনারী" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "মার্চ" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "এপ্রিল" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "মে" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "জুন" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "জুলাই" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "আগস্ট" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "অক্টোবর" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "জানুয়ারী" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "ফেব্রুয়ারী" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "মার্চ" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "এপ্রিল" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2053,78 +2149,78 @@ msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "জুলাই" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "আগস্ট" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "সেপ্টেমবর" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "অক্টোবর" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "নভেম্বর" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "ডিসেম্বর" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "রবিবার" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "সোমবার" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "শুক্রবার" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2132,105 +2228,110 @@ msgid "Sun" msgstr "রবিবার" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "সোমবার" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "মঙ্গলবার" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "বুধবার" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "বৃহস্পতিবার" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "শুক্রবার" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "শনিবার" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "রবিবার" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "সোমবার" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "মঙ্গলবার" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "বুধবার" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "বৃহস্পতিবার" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "শুক্রবার" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "শনিবার" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "per second" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "ফন্ট এর আকার" @@ -2336,13 +2437,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "ডাটাবেজসমূহ Databases" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "ভূল" @@ -2476,7 +2577,7 @@ msgstr "Theme %s not found!" msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2648,7 +2749,7 @@ msgstr "টেবিলসমূহ" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "ডাটা" @@ -2721,7 +2822,7 @@ msgstr "Invalid hostname for server %1$s. Please review your configuration." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "সার্ভার" @@ -2786,101 +2887,101 @@ msgstr "SQL query" msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL ব্যাখ্যা কর" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP কোড ছাড়া" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP কোড তৈরী করুনCreate PHP Code" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Refresh" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "ইঞ্জিনসমূহ" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "বাইট" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "গিগাবাইট" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "টেরাবাইট" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "পেটাবাইট" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "এক্সাবাইট" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "রবিবার" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s দিন, %s মাস, %s মিনিট and %s সেকেণ্ড" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2888,7 +2989,7 @@ msgctxt "First page" msgid "Begin" msgstr "শুরু" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2897,7 +2998,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "পূর্ববর্তী" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2906,7 +3007,7 @@ msgctxt "Next page" msgid "Next" msgstr "পরবর্তী" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2914,34 +3015,34 @@ msgctxt "Last page" msgid "End" msgstr "End" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Structure" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2949,38 +3050,38 @@ msgstr "Structure" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insert" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operations" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3158,7 +3259,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "রিসেট করুন" @@ -3419,7 +3520,7 @@ msgid "Character set of the file" msgstr "ফাইল এর অক্ষরসমূহঃ" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "ফরমেট" @@ -5053,7 +5154,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "পাসওয়ার্ড" @@ -5335,8 +5436,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privileges" @@ -5356,7 +5457,7 @@ msgstr "Sent" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5417,7 +5518,7 @@ msgid "Create" msgstr "তৈরী করুন" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "কোন সুবিধা নাই" @@ -5786,12 +5887,12 @@ msgstr "Sort by key" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Operations" @@ -5827,8 +5928,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5837,10 +5938,6 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5849,60 +5946,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "মোট" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Display PDF schema" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Server version" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "লিংক পাওয়া যায়নি" @@ -6099,7 +6192,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "সাজাঁন" @@ -6436,7 +6529,7 @@ msgstr "Available MIME types" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "হোষ্ট" @@ -6642,7 +6735,7 @@ msgstr "Export type" msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6654,51 +6747,51 @@ msgstr "SQL result" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "কোন ডাটাবেজ নাই" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 #, fuzzy msgid "Go to table" msgstr "কোন ডাটাবেজ নাই" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "শুধুই গঠনপ্রণালী" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6750,7 +6843,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 #, fuzzy msgid "Table name" msgstr "টেবিল এর নাম" @@ -6772,6 +6865,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6823,7 +6940,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "No change" @@ -6832,7 +6949,7 @@ msgid "Charset" msgstr "Charset" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "বাইনারী" @@ -7138,7 +7255,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "ব্যাভারকারীর নাম" @@ -7158,9 +7275,9 @@ msgid "Variable" msgstr "চলক" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "মান" @@ -7186,7 +7303,7 @@ msgstr "যেকোন ব্যাবহারকারী" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Use text field" @@ -7376,7 +7493,7 @@ msgid "Returns" msgstr "Table options" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "সময়" @@ -7529,8 +7646,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "ফাংশন" @@ -7854,8 +7971,8 @@ msgstr "Unknown language: %1$s." msgid "Current Server" msgstr "সার্ভার" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7877,7 +7994,7 @@ msgstr "Charsets" msgid "Engines" msgstr "ইঞ্জিনসমূহ" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "ডাটাবে এ খুজুঁনSearch in database" @@ -7896,7 +8013,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "ডাটাবে এ খুজুঁনSearch in database" @@ -7923,11 +8040,11 @@ msgstr "ক্যালেন্ডার" msgid "Columns" msgstr "কলামের নাম" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" @@ -7955,7 +8072,7 @@ msgstr "শুধু দেখ" msgid "Location of the text file" msgstr "Location of the text file" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "web server upload directory" @@ -8161,23 +8278,29 @@ msgid "+ Add a value" msgstr "একটি নতুন ইউজার যোগ করুন" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Browse foreign values" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "অপারেটর" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "খুঁজুন" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Insert" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8380,8 +8503,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "No files found inside ZIP archive!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "ZIP archive: এ ভূল আছে" @@ -8409,8 +8532,8 @@ msgstr "General relation features" msgid "Protocol version" msgstr "Protocol version" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "User" @@ -8551,7 +8674,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "কোন ডাটাবেজ নাই" @@ -8579,7 +8702,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "একটি নতুন পাতা তৈরী কর" @@ -8950,97 +9073,97 @@ msgstr "Storage Engines" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Allows creating new tables." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Allows creating new views." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Allows deleting data." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Allows dropping tables." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." @@ -9069,52 +9192,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Allows reading data." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9125,48 +9248,48 @@ msgstr "" "killing threads of other users." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "No privileges." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "কোনটিই নয়" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "" "নোটঃ MySQL সুবিধাসমূহের নাম ইংরেজীতে প্রকাশ করা হয় Note: MySQL privilege " "names are expressed in English " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administration" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Global privileges" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "ডাটাবেজ-নির্দিষ্ট সুবিধাসমূহ" @@ -9186,7 +9309,7 @@ msgstr "Login Information" msgid "Do not change the password" msgstr "Do not change the password" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9237,7 +9360,7 @@ msgstr "The selected users have been deleted successfully." msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "সুবিধাসমূহ সম্পাদনা কর" @@ -9245,35 +9368,35 @@ msgstr "সুবিধাসমূহ সম্পাদনা কর" msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "যেকোন" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "ব্যাবহারকারীর নামে নাম এমন ডাটাবেজসমূহ মুছে ফেল" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9286,51 +9409,51 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "কলাম নির্দিষ্ট সুবিধাসমূহ" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "নিচের ডাটাবেইজ এ সুবিধাসমূহ যোগ কর" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" "লগ ইন তথ্য পরিবর্তন কর অথবা ব্যাবহারকারী কপি করChange Login Information / Copy " "User" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "একই সুবিধা সহ নতুন আরেকটি ব্যাবহারকারী তৈরী করুন..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... পুরাতনটা রেখে দাও" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "...ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" "... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9338,50 +9461,50 @@ msgstr "" " ... ব্যাবহারকারীর টেবিলগুলো থেকে পুরাতনটি মুছে ফেল এবং এরপর সুবিধাসমূহ পুনরায় লোড " "কর" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "ব্যাবহারকারীর জন্য ডাটাবেজ" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "কোনটিই নয়" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" "একই নামে ডাটাবেজ তৈরী কর এবং সকল সুবিধাসমূহ মঞ্জুর করCreate database with same " "name and grant all privileges" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Check privileges for database "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "ডাটাবেজ-নির্দিষ্ট" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10674,114 +10797,114 @@ msgid_plural "%d minutes" msgstr[0] "in use" msgstr[1] "in use" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 #, fuzzy msgid "Structure Difference" msgstr "Structure only" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL query" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "max. concurrent connections" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11078,37 +11201,37 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 #, fuzzy msgid "Showing SQL query" msgstr "Show Full Queries" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "লেবেল" @@ -11117,63 +11240,63 @@ msgstr "লেবেল" msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Because of its length,
this field might not be editable " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "বাইনারী -সম্পাদনা করবেন না" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Insert as new row" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "এবং তারপর" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "পূর্বের পাতায় ফিরে যাও" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "নতুন আরেকটি সাড়ি যোগ করুন" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "এই পাতায় ফিরে যাও" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "পরবর্তী সাড়ি সম্পাদনা করুন" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -11259,49 +11382,45 @@ msgstr "Table %s has been dropped" msgid "View dump (schema) of table" msgstr "View dump (schema) of table" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Add/Delete Field Columns" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "মোট" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "ফাইল হিসেবে সেভ করুন" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy msgid "File name" msgstr "টেবিল এর নাম" @@ -11534,25 +11653,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Select fields (at least one):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "খোঁজার শর্ত যোগ কর (body of the \"where\" clause):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Number of rows per page" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "ক্রম প্রদর্শন কর" @@ -13158,9 +13277,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Server version" -#~ msgid "Add a new User" -#~ msgstr "একটি নতুন ইউজার যোগ করুন" - #~ msgid "Delete the matches for the " #~ msgstr "টেবিল এর জন্য ডাটা ডাম্পিং করুন" diff --git a/po/br.po b/po/br.po index 108672e325..7701946651 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-10 22:33+0200\n" "Last-Translator: Fulup \n" "Language-Team: LANGUAGE \n" @@ -18,13 +18,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Diskouez pep tra" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -42,19 +42,20 @@ msgstr "" "serret ar prenestr orin ganeoc'h pe stanket eo an hizivadurioù etre " "prenestroù gant ho merdeer evit abegoù surentez." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Klask" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -72,14 +73,14 @@ msgstr "Klask" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -143,8 +144,8 @@ msgstr "Evezhiadennoù diwar-benn an daolenn" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -159,8 +160,8 @@ msgstr "Bann" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -171,7 +172,7 @@ msgstr "Seurt" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -214,10 +215,10 @@ msgstr "Evezhiadennoù" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Ket" @@ -236,9 +237,9 @@ msgstr "Ket" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -339,7 +340,7 @@ msgstr "Mont d'an diaz roadennoù eilet" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -364,15 +365,15 @@ msgstr "Embann pe ezporzhiañ ur chema kar" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Taolenn" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -432,19 +433,19 @@ msgstr "Urzhiañ" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "War gresk" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "War zigresk" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Diskouez" @@ -465,8 +466,8 @@ msgid "Del" msgstr "Diverk." #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Pe" @@ -495,7 +496,7 @@ msgstr "Implijout taolennoù" msgid "SQL query on database %s:" msgstr "Reked SQL ouzh an diaz roadennoù %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Kas ar reked" @@ -534,8 +535,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s glotadenn en daolenn %s " msgstr[1] "%s klotadenn en daolenn %s " -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Furchal" @@ -546,7 +547,7 @@ msgid "Delete the matches for the %s table?" msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -615,7 +616,7 @@ msgstr "Oberiant eo an heuliañ." msgid "Tracking is not active." msgstr "N'eo ket oberiant an heuliañ." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -645,22 +646,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "War ar servijer MySQL-mañ ez eo %s ar c'heflusker stokañ dre ziouer." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Evit ar re zo diuzet : " -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Askañ pep tra" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Diaskañ pep tra" @@ -668,10 +669,10 @@ msgstr "Diaskañ pep tra" msgid "Check tables having overhead" msgstr "Askañ an taolennoù gant dilerc'hioù" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -679,17 +680,17 @@ msgid "Export" msgstr "Ezporzhiañ" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Stumm da voullañ" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Goullonderiñ" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -737,9 +738,9 @@ msgstr "Taolennoù heuliet-pizh" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Diaz roadennoù" @@ -758,15 +759,15 @@ msgstr "Hizivaet" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Statud" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Oberiadenn" @@ -819,7 +820,7 @@ msgstr "Merkañ pep talvoud en ur vaezienn a-ziforc'h." msgid "+ Restart insertion and add a new value" msgstr "+ Adkregiñ gant an ensoc'hañ hag ouzhpennañ un talvoud nevez" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Disoc'h" @@ -854,6 +855,91 @@ msgstr "N'eo ket aotreet ar servijer web da enrollañ ar restr %s." msgid "Dump has been saved to file %s." msgstr "Enrollet eo bet ar restr ezporzhiañ e%s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Talvoudoù evit ar bann \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add constraints" +msgid "Add a point" +msgstr "Ouzhpennañ ar strishadurioù" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Linennoù a echu gant" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add constraints" +msgid "Add a linestring" +msgstr "Ouzhpennañ ar strishadurioù" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +msgid "Add an inner ring" +msgstr "" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +msgid "Add a polygon" +msgstr "" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add user" +msgid "Add geometry" +msgstr "Ouzhpennañ un implijer" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -903,7 +989,7 @@ msgstr "Diverket eo bet ar sined." msgid "Showing bookmark" msgstr "O tiskouez ar sined" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Krouet eo bet ar sined %s" @@ -931,7 +1017,7 @@ msgstr "" "ne vez ket kresket ganeoc'h bevenn amzer PHP." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -956,15 +1042,15 @@ msgstr "Klikañ evit diuzañ" msgid "Click to unselect" msgstr "Klikañ evit diziuzañ" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'" -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Ha sur oc'h e fell deoc'h " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Emaoc'h war-nes DISTRUJ un diaz roadennoù klok !" @@ -1028,8 +1114,8 @@ msgstr "Goullo eo ar ger-tremen !" msgid "The passwords aren't the same!" msgstr "Ne glot ket ar gerioù-tremen !" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Ouzhpennañ un implijer" @@ -1047,8 +1133,8 @@ msgid "Close" msgstr "Serriñ" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1084,12 +1170,12 @@ msgid "Other" msgstr "Udb all" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1172,12 +1258,12 @@ msgid "System swap" msgstr "Takad eskemm reizhiad (swap)" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "Kio" @@ -1266,7 +1352,7 @@ msgstr "Ouzhpennit da nebeutañ unan eus an argemennoù d'an heuliad" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Hini" @@ -1651,8 +1737,8 @@ msgstr "Diskouez ar voest rekedoù SQL" msgid "No rows selected" msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Kemmañ" @@ -1666,8 +1752,8 @@ msgstr "Pad seveniñ hirañ" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Enrollañ" @@ -1679,7 +1765,7 @@ msgstr "Kuzhat an dezverkoù klask" msgid "Show search criteria" msgstr "Diskouez an dezverkoù enklask" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1723,34 +1809,42 @@ msgstr "Ouzhpennañ/Diverkañ bannoù" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Na ober van" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add/Delete columns" msgid "Add columns" msgstr "Ouzhpennañ/Diverkañ bannoù" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Diuzit an alc'hwez daveet" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Diuzit an alc'hwez estren" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Dibab ar bann da ziskouez" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1758,68 +1852,68 @@ msgstr "" "N'eo ket bet enrollet ar c'hemmoù degaset d'an tres ganeoc'h. Kollet e vint " "ma n'o enrollit ket. Kenderc'hel memes tra ?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Ouzhpennañ un dibarzh evit ar bann " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Genel ur ger-tremen" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Genel" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Cheñch ger-tremen" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Muioc'h" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1829,27 +1923,27 @@ msgstr "" "hizivaat ho hini. Setu ar stumm nevesañ %s, embannet eo bet d'an %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", stumm stabil diwezhañ" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "hizivaet" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Graet" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Kent" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1857,149 +1951,149 @@ msgid "Next" msgstr "War-lerc'h" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Hiziv" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Genver" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "C'hwevrer" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Meurzh" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Ebrel" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mae" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Mezheven" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Gouere" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Eost" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Gwengolo" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Here" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Du" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Kerzu" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "C'hwe" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Meu" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Mae" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Mezh" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Goue" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Eost" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Gwen" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Here" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Du" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Kzu" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Sul" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Lun" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Meurzh" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Merc'her" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Yaou" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Gwener" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Sadorn" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2007,87 +2101,92 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Meu" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Yaou" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "L" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Mz" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Mc" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Y" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "G" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Sizh." -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Eur" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Munut" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Eilenn" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Ment an destenn" @@ -2201,13 +2300,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Diazoù roadennoù" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fazi" @@ -2330,7 +2429,7 @@ msgstr "N'eo ket bet kavet an tem %s !" msgid "Theme path not found for theme %s!" msgstr "N'eo ket bet kavet an hent evit an tem %s !" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tem" @@ -2506,7 +2605,7 @@ msgstr "Taolennoù" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Roadennoù" @@ -2574,7 +2673,7 @@ msgstr "Anv ostiz direizh evit ar servijer %1$s. Gwiriit ar c'hefluniadur." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Servijer" @@ -2639,99 +2738,99 @@ msgstr "Reked SQL" msgid "MySQL said: " msgstr "respontet eo bet gant MySQL : " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "DIbosupl kevreañ d'ar c'hadarnataer SQL !" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Displegañ SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "N'eo ket dav displegañ SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Hep kod PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Krouiñ kod PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Freskaat" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "N'eo ket dav kadarnaat SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Kadarnaat SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Kemmañ ar reked-mañ enlinenn" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Enlinenn" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "O profilañ" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "o" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "Eio" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Sul" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y da %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s deiz, %s eur, %s munut ha %s eilenn" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2739,7 +2838,7 @@ msgctxt "First page" msgid "Begin" msgstr "Kregiñ" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2748,7 +2847,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Kent" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2757,7 +2856,7 @@ msgctxt "Next page" msgid "Next" msgstr "War-lerc'h" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2765,34 +2864,34 @@ msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Mont d'an diaz roadennoù "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, 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/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Klikañ evit gwintañ" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Framm" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2800,37 +2899,37 @@ msgstr "Framm" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Ensoc'hañ" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Oberiadennoù" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Furchal en hoc'h urzhiataer" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Ar c'havlec'h treuzkas n'hall ket bezañ diraezet." -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "N'eus restr ebet da enporzhiañ" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Seveniñ" @@ -2997,7 +3096,7 @@ msgstr "Aotren an implijerien da bersonelaat an talvoud-mañ" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Adderaouekaat" @@ -3269,7 +3368,7 @@ msgid "Character set of the file" msgstr "Strobad arouezennoù ar restr" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Furmad" @@ -4820,7 +4919,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "" @@ -5097,8 +5196,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "" @@ -5117,7 +5216,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5174,7 +5273,7 @@ msgid "Create" msgstr "" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -5475,12 +5574,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "" @@ -5508,8 +5607,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Kuzhat" @@ -5518,10 +5617,6 @@ msgstr "Kuzhat" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5530,57 +5625,53 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "" @@ -5759,7 +5850,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "" @@ -6064,7 +6155,7 @@ msgstr "" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "" @@ -6256,7 +6347,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6268,50 +6359,50 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Roadennoù a vank evit %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Ar framm hepken" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6360,7 +6451,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6381,6 +6472,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "N'eus anaouder alc'hwez ebet er restr %s" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6426,7 +6543,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "" @@ -6435,7 +6552,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "" @@ -6738,7 +6855,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "" @@ -6756,9 +6873,9 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "" @@ -6784,7 +6901,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "" @@ -6970,7 +7087,7 @@ msgid "Returns" msgstr "" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "" @@ -7110,8 +7227,8 @@ msgstr "Seveniñ an argerzh" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "" @@ -7409,8 +7526,8 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7432,7 +7549,7 @@ msgstr "" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "" @@ -7450,7 +7567,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "" @@ -7473,11 +7590,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7505,7 +7622,7 @@ msgstr "" msgid "Location of the text file" msgstr "" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "" @@ -7672,23 +7789,29 @@ msgid "+ Add a value" msgstr "" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Klask" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Ensoc'hañ" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7808,8 +7931,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -7833,8 +7956,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "" @@ -7954,7 +8077,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "" @@ -7981,7 +8104,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "" @@ -8312,96 +8435,96 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8428,52 +8551,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8481,43 +8604,43 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "" @@ -8537,7 +8660,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "" @@ -8586,7 +8709,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "" @@ -8594,34 +8717,34 @@ msgstr "" msgid "Revoke" msgstr "" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8630,93 +8753,93 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "" @@ -9872,112 +9995,112 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Rekedoù resevet" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10267,34 +10390,34 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "" @@ -10303,60 +10426,60 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10427,43 +10550,39 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "" @@ -10684,23 +10803,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "" diff --git a/po/bs.po b/po/bs.po index 0b8942d867..79dbd8f079 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-03-12 09:12+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: bosnian \n" @@ -13,13 +13,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Prikaži sve" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "zatvorili matični prozor, ili vaš preraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Pretraživanje" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "Pretraživanje" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -136,8 +137,8 @@ msgstr "Komentari tabele" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -154,8 +155,8 @@ msgstr "Imena kolona" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -166,7 +167,7 @@ msgstr "Tip" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -209,10 +210,10 @@ msgstr "Komentari" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Ne" @@ -231,9 +232,9 @@ msgstr "Ne" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -340,7 +341,7 @@ msgstr "Pređi na kopiranu tabelu" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -370,15 +371,15 @@ msgstr "Relaciona shema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -439,19 +440,19 @@ msgstr "Sortiranje" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Rastući" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Opadajući" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Prikaži" @@ -472,8 +473,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "ili" @@ -506,7 +507,7 @@ msgstr "Koristi tabele" msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Izvrši SQL upit" @@ -546,8 +547,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Pregled" @@ -559,7 +560,7 @@ msgid "Delete the matches for the %s table?" msgstr "Prikaz podataka tabele" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -637,7 +638,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -666,22 +667,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "nijedno" @@ -689,10 +690,10 @@ msgstr "nijedno" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -700,17 +701,17 @@ msgid "Export" msgstr "Izvoz" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Isprazni" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -762,9 +763,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Baza podataka" @@ -784,15 +785,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Akcija" @@ -849,7 +850,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -884,6 +885,92 @@ msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s." msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u fajl %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "Dodaj novo polje" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Linije se završavaju sa" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Dodaj novog korisnika" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Dodaj novog korisnika" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +msgid "Add a polygon" +msgstr "Dodaj novo polje" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Dodaj novog korisnika" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -924,7 +1011,7 @@ msgstr "Obilježivač je upravo obrisan." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -947,7 +1034,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -971,15 +1058,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Da li stvarno hoćete da " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1045,8 +1132,8 @@ msgstr "Lozinka je prazna!" msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1069,8 +1156,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1109,12 +1196,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1201,12 +1288,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1305,7 +1392,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "nema" @@ -1714,8 +1801,8 @@ msgstr "SQL upit" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Promijeni" @@ -1727,8 +1814,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Sačuvaj" @@ -1742,7 +1829,7 @@ msgstr "SQL upit" msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1786,109 +1873,117 @@ msgstr "Dodaj/obriši kolonu" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy msgid "Add columns" msgstr "Dodaj novo polje" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Promeni lozinku" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 #, fuzzy msgid "Generate" msgstr "Generirao" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promeni lozinku" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1896,30 +1991,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Baza ne postoji" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "nema" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodna" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1927,96 +2022,96 @@ msgid "Next" msgstr "Slijedeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "maj" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2024,78 +2119,78 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "dec" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2103,105 +2198,110 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundi" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2306,13 +2406,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Baze" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Greška" @@ -2438,7 +2538,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2607,7 +2707,7 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Podaci" @@ -2675,7 +2775,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2740,101 +2840,101 @@ msgstr "SQL upit" msgid "MySQL said: " msgstr "MySQL kaže: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Preskoči provjeru SQL-a" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Provjeri SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "bajta" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Dodaj novo polje" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2842,7 +2942,7 @@ msgctxt "First page" msgid "Begin" msgstr "Početak" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2851,7 +2951,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Prethodna" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2860,7 +2960,7 @@ msgctxt "Next page" msgid "Next" msgstr "Slijedeći" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2868,34 +2968,34 @@ msgctxt "Last page" msgid "End" msgstr "Kraj" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2903,38 +3003,38 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Novi zapis" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direkcija za slanje web servera " -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Direkcija koju ste izabrali za slanje nije dostupna" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3113,7 +3213,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Resetuj" @@ -3368,7 +3468,7 @@ msgid "Character set of the file" msgstr "Karakter set datoteke:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -4974,7 +5074,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Lozinka" @@ -5256,8 +5356,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilegije" @@ -5276,7 +5376,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5335,7 +5435,7 @@ msgid "Create" msgstr "Napravi" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Nema privilegija" @@ -5681,12 +5781,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Operacije" @@ -5722,8 +5822,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5732,10 +5832,6 @@ msgstr "" msgid "Browser transformation" msgstr "Tranformacije čitača" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5744,60 +5840,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Obustavi" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "u upitu" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Verzija servera" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Veza nije pronađena" @@ -5979,7 +6071,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Sortiranje" @@ -6307,7 +6399,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6509,7 +6601,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6521,50 +6613,50 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generirao" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo struktura" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6615,7 +6707,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6636,6 +6728,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6687,7 +6803,7 @@ msgstr "" msgid "Add prefix" msgstr "Dodaj novo polje" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Nema izmjena" @@ -6696,7 +6812,7 @@ msgid "Charset" msgstr "Karakter set" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binarni" @@ -7006,7 +7122,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Ime korisnika" @@ -7024,9 +7140,9 @@ msgid "Variable" msgstr "Promjenljiva" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Vrijednost" @@ -7053,7 +7169,7 @@ msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Koristi tekst polje" @@ -7243,7 +7359,7 @@ msgid "Returns" msgstr "Opcije tabele" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Vrijeme" @@ -7395,8 +7511,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funkcija" @@ -7714,8 +7830,8 @@ msgstr "" msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7738,7 +7854,7 @@ msgstr "Kodne strane" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Pretraživanje baze" @@ -7757,7 +7873,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Pretraživanje baze" @@ -7783,11 +7899,11 @@ msgstr "" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Obilježi SQL-upit" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7815,7 +7931,7 @@ msgstr "Vidi samo" msgid "Location of the text file" msgstr "Lokacija tekstualne datoteke" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "direkcija za slanje web servera " @@ -8019,24 +8135,30 @@ msgid "+ Add a value" msgstr "Dodaj novog korisnika" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 #, fuzzy msgid "Operator" msgstr "Operacije" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Pretraživanje" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Novi zapis" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8207,8 +8329,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8236,8 +8358,8 @@ msgstr "Opšte osobine relacija" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Korisnik" @@ -8371,7 +8493,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Baza ne postoji" @@ -8399,7 +8521,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "Napravi novu stranu" @@ -8765,83 +8887,83 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmjenu struktura postojećih tabela." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava kreiranje i brisanje ključeva." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 #, fuzzy msgid "Allows creating stored routines." msgstr "Dozvoljava kreiranje novih tabela." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 #, fuzzy msgid "Allows creating new views." msgstr "Dozvoljava kreiranje novih tabela." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8849,17 +8971,17 @@ msgstr "" "privilegija." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamjenu podataka." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." @@ -8889,53 +9011,53 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj novih konekcija koje korisnik može ta otvori na sat." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8946,46 +9068,46 @@ msgstr "" "promenljivih ili prekidanje procesa ostalih korisnika." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Dozvoljava kreiranje i brisanje ključeva." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Nema privilegija." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "nema" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globalne privilegije" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" @@ -9005,7 +9127,7 @@ msgstr "Podatci o prijavi" msgid "Do not change the password" msgstr "Nemoj da mijenjaš lozinku" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9056,7 +9178,7 @@ msgstr "Izabrani korisnici su uspješno obrisani." msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Promijeni privilegije" @@ -9064,34 +9186,34 @@ msgstr "Promijeni privilegije" msgid "Revoke" msgstr "Zabrani" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Pregled korisnika" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Omogući" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9104,96 +9226,96 @@ msgstr "" "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na slijedećoj bazi" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na slijedećoj tabeli" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... obriši stare iz tabela korisnika." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... obustavi sve privilegije starog korisnika i zatim ga obriši." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "nema" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globalno" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "Specifično za bazu" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "Džoker" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy msgid "User has been added." msgstr "Polje %s je obrisano" @@ -10369,113 +10491,113 @@ msgid_plural "%d minutes" msgstr[0] "se koristi" msgstr[1] "se koristi" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL upit" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Konekcije" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10771,36 +10893,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjeri SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Naziv" @@ -10809,63 +10931,63 @@ msgstr "Naziv" msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspješno obrisani." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Zbog njehove veličine, polje
možda nećete moći da izmenite" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binarni - ne mijenjaj" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: tbl_change.php:1005 +#: tbl_change.php:1045 #, fuzzy msgid "Go back to this page" msgstr "Nazad na prethodnu stranu" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10949,49 +11071,45 @@ msgstr "Tabela %s je odbačena" msgid "View dump (schema) of table" msgstr "Prikaži sadržaj (shemu) tabele" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Dodaj/obriši kolonu" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Ukupno" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Sačuvaj kao datoteku" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11223,25 +11341,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Napravi \"upit po primjeru\" (džoker: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Izaberi polja (najmanje jedno)" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj uslove pretraživanja (dio \"WHERE\" upita):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Broj redova po strani" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Redosled prikaza:" @@ -12785,9 +12903,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Verzija servera" -#~ msgid "Add a new User" -#~ msgstr "Dodaj novog korisnika" - #, fuzzy #~ msgid "Delete the matches for the " #~ msgstr "Prikaz podataka tabele" diff --git a/po/ca.po b/po/ca.po index 413245aa11..bf2ad93062 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-02-23 09:57+0200\n" "Last-Translator: Xavier Navarro \n" "Language-Team: catalan \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Mostra tot" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "la finestra \"pare\" o bé el teu navegador bloqueja actualitzacions entre " "finestres per la teva configuració de seguretat." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Cerca" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Cerca" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Comentaris de la taula" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Columna" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Tipus" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Comentaris" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "No" @@ -232,9 +233,9 @@ msgstr "No" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Canvia a la base de dades copiada" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Edita o exporta l'esquema relacional" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Taula" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -428,19 +429,19 @@ msgstr "Classificació" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Ascendent" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Descendent" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Mostra" @@ -461,8 +462,8 @@ msgid "Del" msgstr "Sup" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "O" @@ -491,7 +492,7 @@ msgstr "Usa Taules" msgid "SQL query on database %s:" msgstr "Consulta SQL a la base de dades %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Executa consulta" @@ -530,8 +531,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultat a la taula %s" msgstr[1] "%s resultats a la taula %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Navega" @@ -542,7 +543,7 @@ msgid "Delete the matches for the %s table?" msgstr "Esborrar les coincidències per a la taula %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -615,7 +616,7 @@ msgstr "El seguiment està actiu." msgid "Tracking is not active." msgstr "El seguiment no està actiu." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -644,22 +645,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Amb marca:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Marcar-ho tot" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Desmarcar tot" @@ -667,10 +668,10 @@ msgstr "Desmarcar tot" msgid "Check tables having overhead" msgstr "Comprova taules desfragmentades" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -678,17 +679,17 @@ msgid "Export" msgstr "Exporta" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Imprimeix vista" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Buida" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -742,9 +743,9 @@ msgstr "Taules seguides" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Base de dades" @@ -763,15 +764,15 @@ msgstr "Actualitzat" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Estat" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Acció" @@ -824,7 +825,7 @@ msgstr "Entra cada valor en camps separats." msgid "+ Restart insertion and add a new value" msgstr "+ Reinicia l'inserció i afegeix un nou valor" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Sortida" @@ -859,6 +860,95 @@ msgstr "El servidor web no té permisos per a desar l'arxiu %s." msgid "Dump has been saved to file %s." msgstr "El bolcat s'ha desat amb el nom d'arxiu %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Valors per la columna \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add index" +msgid "Add a point" +msgstr "Afegir índex" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Línies acabades amb" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Afegeix un usuari nou" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Afegeix un usuari nou" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Afegeix columna(es)" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "Afegir un nou servidor" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -907,7 +997,7 @@ msgstr "S'ha esborrat la consulta desada." msgid "Showing bookmark" msgstr "Mostrant consultes desades" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "%s creat com a Consulta desada" @@ -935,7 +1025,7 @@ msgstr "" "incrementeu els límits de temps de php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -960,15 +1050,15 @@ msgstr "Clica per seleccionar" msgid "Click to unselect" msgstr "Clica per deseleccionar" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Instrucció \"DROP DATABASE\" desactivada." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Realment vols fer?" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Ets a punt de DESTRUIR completament una base de dades!" @@ -1038,8 +1128,8 @@ msgstr "La contrasenya és buida!" msgid "The passwords aren't the same!" msgstr "Les contrasenyes no coincideixen!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1059,8 +1149,8 @@ msgid "Close" msgstr "Tanca" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1100,12 +1190,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1196,12 +1286,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1306,7 +1396,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Res" @@ -1710,8 +1800,8 @@ msgstr "Mostrar quadre de consultes" msgid "No rows selected" msgstr "No s'han triat arxius" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Canvi" @@ -1725,8 +1815,8 @@ msgstr "Màxim temps d'execució" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Desa" @@ -1738,7 +1828,7 @@ msgstr "Amaga el criteri de cerca" msgid "Show search criteria" msgstr "Mostrar criteri de cerca" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1782,105 +1872,113 @@ msgstr "Afegeix/esborra columnes" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Còpia" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "Afegeix columna(es)" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Tria la clau referenciada" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Tria una clau externa" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Tria la clau principal o una clau única" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Tria la columna a mostrar" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Afegeix una opció per a la columna" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Clica per seleccionar" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Vés a la vista" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Genera una contrasenya" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Genera" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Canvi de contrasenya" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Més" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1890,29 +1988,29 @@ msgstr "" "actualitzar-la. La nova versió és la %s, alliberada el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", darrera versió estable:" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Vés a la base de dades" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Fet" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1920,149 +2018,149 @@ msgid "Next" msgstr "Següent" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Avui" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Gener" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Febrer" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Març" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Abril" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Maig" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Juny" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Juliol" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Agost" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Setembre" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Octubre" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Novembre" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Desembre" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Des" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Diumenge" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Dilluns" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Dimarts" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Dimecres" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Dijous" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Divendres" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Dissabte" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2070,87 +2168,92 @@ msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Dis" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Dg" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Dl" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Dm" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Dc" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Dj" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Dv" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Ds" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Se" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Hora" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minut" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Segon" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Tamany de lletra" @@ -2263,13 +2366,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Bases de dades" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Error" @@ -2404,7 +2507,7 @@ msgstr "Tema %s no trobat!" msgid "Theme path not found for theme %s!" msgstr "No s'ha trobat el camí de les imatges del tema %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2581,7 +2684,7 @@ msgstr "Taules" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Dades" @@ -2650,7 +2753,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Servidor" @@ -2715,101 +2818,101 @@ msgstr "Consulta SQL" msgid "MySQL said: " msgstr "MySQL diu: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "No es pot connectar al validador SQL!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Explica SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Salta l'explicació de l'SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Sense codi PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Crea codi PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Refresca" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Salta la Validació de l'SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Valida l'SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Editar aquesta consulta en línia" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "En línia" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Perfils" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Diu" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a les %H:%M:%S" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dies, %s hores, %s minuts i %s segons" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutines" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2817,7 +2920,7 @@ msgctxt "First page" msgid "Begin" msgstr "Inici" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2826,7 +2929,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2835,7 +2938,7 @@ msgctxt "Next page" msgid "Next" msgstr "Següent" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2843,36 +2946,36 @@ msgctxt "Last page" msgid "End" msgstr "Final" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Vés a la base de dades "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Clica per seleccionar" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Estructura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2880,38 +2983,38 @@ msgstr "Estructura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insereix" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operacions" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Navega al teu ordinador:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, 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/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "No està disponible el directori indicat per pujar arxius" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "No hi ha cap arxiu per pujar" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3079,7 +3182,7 @@ msgstr "Permet als usuaris configurar aquest valor" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Reinicia" @@ -3349,7 +3452,7 @@ msgid "Character set of the file" msgstr "Joc de caràcters de l'arxiu" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -5047,7 +5150,7 @@ msgstr "Necessita activar el SQL Validator" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Contrasenya" @@ -5348,8 +5451,8 @@ msgid "Designer" msgstr "Dissenyador" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Permisos" @@ -5368,7 +5471,7 @@ msgstr "Esdeveniments" msgid "Triggers" msgstr "Disparadors" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5431,7 +5534,7 @@ msgid "Create" msgstr "Crea" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Sense permisos" @@ -5759,12 +5862,12 @@ msgstr "Classifica per la clau" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Opcions" @@ -5792,8 +5895,8 @@ msgstr "Mostra continguts binaris" msgid "Show BLOB contents" msgstr "Mostra contingut BLOB" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Amaga" @@ -5802,10 +5905,6 @@ msgstr "Amaga" msgid "Browser transformation" msgstr "Transformació del navegador" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5814,57 +5913,53 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Còpia" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "S'ha esborrat la fila" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Finalitzar" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "en consulta" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Mostrant registres" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tarda %01.4f seg" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Vista d'impresió (amb texts sencers)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Mostra el gràfic" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Crea una vista" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "No s'ha trobat l'enllaç " @@ -6064,7 +6159,7 @@ msgstr "" "El percentatge d'escombraries en un registre de dades abans de compactar." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Port" @@ -6419,7 +6514,7 @@ msgstr "Mostra tipus MIME" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Servidor" @@ -6637,7 +6732,7 @@ msgstr "Exporta contingut" msgid "Open new phpMyAdmin window" msgstr "Obrir nova finestra de phpMyAdmin" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6651,56 +6746,56 @@ msgstr "Resultat SQL" msgid "Generated by" msgstr "Generat per" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Veure el contingut d'una estructura fent clic sobre el seu nom" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Modificar la seva estructura, seguint l'enllaç \"Estructura\"" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Vés a la base de dades" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Falten dades a %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Vés a la taula" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Només l'estructura" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Vés a la vista" @@ -6757,7 +6852,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Nom de taula" @@ -6779,6 +6874,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importar moneda (ex. $5.00 a 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Aquesta pàgina no conté taules!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "Modus de compatibilitat SQL:" @@ -6830,7 +6951,7 @@ msgstr "" msgid "Add prefix" msgstr "Afegir índex" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Sense canvis" @@ -6839,7 +6960,7 @@ msgid "Charset" msgstr "Joc de caràcters" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binari" @@ -7152,7 +7273,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Nom d'usuari" @@ -7170,9 +7291,9 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valor" @@ -7200,7 +7321,7 @@ msgstr "Qualsevol usuari" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Usa camp de text" @@ -7396,7 +7517,7 @@ msgid "Returns" msgstr "Tipus de retorn" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Temps" @@ -7555,8 +7676,8 @@ msgstr "" msgid "Routine parameters" msgstr "Rutines" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funció" @@ -7877,8 +7998,8 @@ msgstr "Idioma desconegut: %1$s." msgid "Current Server" msgstr "Servidor actual" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Sincronitza" @@ -7900,7 +8021,7 @@ msgstr "Jocs de caràcters" msgid "Engines" msgstr "Motors" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Base de dades origen" @@ -7918,7 +8039,7 @@ msgstr "Servidor remot" msgid "Difference" msgstr "Diferència" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Base de dades destinació" @@ -7941,11 +8062,11 @@ msgstr "Neteja" msgid "Columns" msgstr "Columnes" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Desa aquesta consulta SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Deixa accedir a cada usuari a aquesta consulta desada" @@ -7973,7 +8094,7 @@ msgstr "Només mirar" msgid "Location of the text file" msgstr "Ubicació de l'arxiu de text" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "directori de pujada d'arxius del servidor web" @@ -8171,23 +8292,29 @@ msgid "+ Add a value" msgstr "+ Afegir un nou valor" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Navega valors externs" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operador" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Cerca" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Insereix" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8353,8 +8480,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "No s'han trobat arxius dins de l'arxiu ZIP!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Error en arxiu ZIP:" @@ -8378,8 +8505,8 @@ msgstr "Més paràmetres" msgid "Protocol version" msgstr "Versió del protocol" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Usuari" @@ -8532,7 +8659,7 @@ msgstr "" "Servidor executant-se amb Suhosin. Si us plau, consulta %sdocumentation%s " "per a possibles assumptes." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "No hi ha bases de dades" @@ -8559,7 +8686,7 @@ msgstr "Menú esquerre Mostra/Amaga" msgid "Save position" msgstr "Desa la posició" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Crea una taula" @@ -8898,80 +9025,80 @@ msgstr "Motors d'emmagatzematge" msgid "View dump (schema) of databases" msgstr "Veure volcat (esquema) de les bases de dades" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Inclou tots els permisos excepte GRANT -atorgar-." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Permet alterar l'estructura de taules existents." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Permet alterar i esborrar rutines enmagatzemades." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Permet crear noves bases de dades i taules." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Permet crear rutines enmgatzemades." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Permet crear noves taules." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Permet crear taules temporals." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permet crear, esborrar i reanomenar comptes d'usuari." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Permet crear noves vistes." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Permet esborrar dades." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Permet eliminar bases de dades i taules." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Permet eliminar taules." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Permet establir events per al planificador d'events" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Permet executar rutines enmagatzemades." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Permet importar i exportar dades amb arxius externs." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8979,17 +9106,17 @@ msgstr "" "permisos." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Permet crear i eliminar indexs." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Permet inserir i modificar dades." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Permet bloquejar taules per l'actual fil d'execució." @@ -9019,55 +9146,55 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Límita el nombre de connexions simultànies que l'usuari pot tenir." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Permet veure processos de tots els usuaris" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "No té efecte en aquesta versió de MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permet recarregar les configuracions del servidor i buidar les seves " "memòries cau." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dona el dret a l'usuari de preguntar quins servidors mestres / esclaus hi ha." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Es necessari per a la replicació en servidors esclaus." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Permet llegir dades." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Dona accés a la llista completa de bases de dades." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permet fer consultes de tipus SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Permet parar el servidor." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9078,43 +9205,43 @@ msgstr "" "variables globals o bé cancel.lar fils d'execució d'altres usuaris." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Permet crear i eliminar disparadors -triggers-" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Permet canviar dades." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Sense permisos." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Cap" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Permisos especifics de taula" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: Els noms dels privilegis del MySQL són en idioma anglès " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administració" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Permisos generals" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Permisos específics de base de dades" @@ -9134,7 +9261,7 @@ msgstr "Informació d'Identificació" msgid "Do not change the password" msgstr "No canviïs la contrasenya" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "No s'han trobat usuaris." @@ -9183,7 +9310,7 @@ msgstr "S'han esborrat correctament els usuaris triats." msgid "The privileges were reloaded successfully." msgstr "Els permisos s'han recarregat correctament." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Edita permisos" @@ -9191,35 +9318,35 @@ msgstr "Edita permisos" msgid "Revoke" msgstr "Treu" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Qualsevol" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Informació general de l'usuari" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Atorga" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Treu els usuaris triats" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Treu tots els permisos actius dels usuaris i els esborra després." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" "Esborra les bases de dades que tenen els mateixos noms que els usuaris." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9232,49 +9359,49 @@ msgstr "" "permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " "cas, es necessari %srecarregar els permisos%s abans de continuar." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "No s'ha trobat l'usuari triat a la taula de permisos." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Permisos específics de columna" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Afegeix permisos a la següent base de dades" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Els comodins _ i % han de marcar-se amb una \\ per usar-los literalment" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Afegeix permisos a la següent taula" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Canvi d'Informació de Connexió / Copia d'Usuari" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nou usuari amb els mateixos permisos i ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... respecta l'antic." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... esborra l'antic de les taules d'usuaris." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... treu tots els permisos actius de l'antic i esborra'l després." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9282,46 +9409,46 @@ msgstr "" " ... esborra l'antic de les taules d'usuaris i recarrega els permisos " "després." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Base de dades per usuari" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Cap" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Crea una base de dades amb el mateix nom i atorga tots els permisos" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Atorga tots els permisos en un nom comodí (nomusuari\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Atorga tots els permisos a la base de dades "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Usuaris amb accés a "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "específic de la base de dades" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "comodins" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10656,114 +10783,114 @@ msgid_plural "%d minutes" msgstr[0] "Minut" msgstr[1] "Minut" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "No s'ha pogut connectar a l'origen" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "No s'ha pogut connectar a la destinació" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "la base de dades '%s' no existeix." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Sincronització d'estructura" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Sincronizació de dades" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "no present" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Diferència d'estructura" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Diferència de dades" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Afegeix columna(es)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Treu columna(es)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Canvia columna(es)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Treu index(s)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Aplica index(s)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Actualitza fila(es)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Afegeix fila(es)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Vols eliminar totes les files anteriors de les taules de destinació?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Aplica els canvis seleccionats" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Sincronitza Based de dades" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Les taules de destinació seleccionades s'han sincronitzat amb les taules " "d'origen." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" "La base de dades destinació s'ha sincronitzat amb la base de dades origen" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "Consultes SQL" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Entrada manual" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Connexió actual" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Configuració: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Sòcol" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11108,34 +11235,34 @@ msgstr "La clau és massa curta, ha de tenir al menys 8 caràcters." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials." -#: sql.php:203 +#: sql.php:213 #, 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:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Mostrant com a codi PHP" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "SQL validat" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemes amb els indexs de la taula `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Etiqueta" @@ -11144,63 +11271,63 @@ msgstr "Etiqueta" msgid "Table %1$s has been altered successfully" msgstr "S'ha modificat la taula %1$s correctament" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" " A causa de la seva longitud,
aquesta columna no pot ser editable " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Treure Referència a Repositori BLOB" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binari - no editeu " -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Puja al repositori BLOB" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Insereix com a nova fila" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Insereix com a nova fila i ignora els errors" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Mostra la consulta d'inserció" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "i llavors" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Torna" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Insereix un nou registre" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Torna a aquesta pàgina" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Edita el següent registre" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usa la tecla TAB per moure't de valor en valor, o CTRL+fletxes per moure't " "on vulguis" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Continua l'inserció amb %s files" @@ -11287,53 +11414,49 @@ msgstr "S'ha creat la taula %1$s." msgid "View dump (schema) of table" msgstr "Veure un bolcat (esquema) de la taula" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Mostra la tría de servidors" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Ample" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Alt" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Textarea columns" msgid "Label column" msgstr "Columnes per a textareas" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- cap -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Comptador de l'arxiu de registre" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Redibuixa" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Desa com a arxiu" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11561,23 +11684,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "Límit de clau externa" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Fer una \"petició segons exemple\" (comodí: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Tria les columnes (una com a mínim):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Afegeix condicions de recerca (cos de la clàusula \"where\" ):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Número de registres per pàgina" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Ordre del llistat:" @@ -13267,9 +13390,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Crea un usuari" -#~ msgid "Add a new User" -#~ msgstr "Afegeix un usuari nou" - #~ msgid "Show table row links on left side" #~ msgstr "Mostra enllaç de nombre de files a la taula al marc esquerre" diff --git a/po/cs.po b/po/cs.po index 40f1eb195c..15aa9da788 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-11 11:38+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: czech \n" @@ -17,13 +17,13 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Zobrazit vše " #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -41,19 +41,20 @@ msgstr "" "rodičovské okno, nebo prohlížeč blokuje operace mezi okny z důvodu " "bezpečnostních nastavení." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Vyhledávání" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -71,14 +72,14 @@ msgstr "Vyhledávání" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -141,8 +142,8 @@ msgstr "Komentář k tabulce" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -157,8 +158,8 @@ msgstr "Pole" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -169,7 +170,7 @@ msgstr "Typ" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -212,10 +213,10 @@ msgstr "Komentáře" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Ne" @@ -234,9 +235,9 @@ msgstr "Ne" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -337,7 +338,7 @@ msgstr "Přepnout na zkopírovanou databázi" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -362,15 +363,15 @@ msgstr "Upravit nebo exportovat relační schéma" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabulka" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -430,19 +431,19 @@ msgstr "Řadit" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Vzestupně" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Sestupně" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Zobrazit" @@ -463,8 +464,8 @@ msgid "Del" msgstr "smazat" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "nebo" @@ -493,7 +494,7 @@ msgstr "Použít tabulky" msgid "SQL query on database %s:" msgstr "SQL dotaz na databázi %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Provést dotaz" @@ -533,8 +534,8 @@ msgstr[0] "%s odpovídající záznam v tabulce %s" msgstr[1] "%s odpovídající záznamy v tabulce %s" msgstr[2] "%s odpovídajících záznamů v tabulce %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Projít" @@ -545,7 +546,7 @@ msgid "Delete the matches for the %s table?" msgstr "Odstranit nalezené záznamy z tabulky %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -615,7 +616,7 @@ msgstr "Sledování je zapnuté." msgid "Tracking is not active." msgstr "Sledování není zapnuté." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -644,22 +645,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s je výchozí úložiště na tomto MySQL serveru." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Zaškrtnuté:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Zaškrtnout vše" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Odškrtnout vše" @@ -667,10 +668,10 @@ msgstr "Odškrtnout vše" msgid "Check tables having overhead" msgstr "Zaškrtnout neoptimální" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -678,17 +679,17 @@ msgid "Export" msgstr "Export" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Náhled pro tisk" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Vyprázdnit" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -736,9 +737,9 @@ msgstr "Sledované tabulky" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Databáze" @@ -757,15 +758,15 @@ msgstr "Aktualizováno" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Stav" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Operace" @@ -818,7 +819,7 @@ msgstr "Zadejte každou hodnotu do samostatného políčka." msgid "+ Restart insertion and add a new value" msgstr "+ Začít nové vkládání a přidat novou hodnotu" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Výstup" @@ -853,6 +854,95 @@ msgstr "Web server nemá oprávnění uložit výpis do souboru %s." msgid "Dump has been saved to file %s." msgstr "Výpis byl uložen do souboru %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Hodnoty pro pole „%s“" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Použít OpenStreetMap jako základní vrstvu" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Geometrie" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Přidat rutinu" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Řádky ukončené" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Přidat nového uživatele" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Přidat nového uživatele" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Přidat sloupec" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Geometrie" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -901,7 +991,7 @@ msgstr "Položka byla smazána z oblíbených." msgid "Showing bookmark" msgstr "Zobrazuji oblíbený dotaz" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Vytvořen oblíbený dotaz %s" @@ -929,7 +1019,7 @@ msgstr "" "časové limity v PHP." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -953,15 +1043,15 @@ msgstr "Klikněte pro vybrání" msgid "Click to unselect" msgstr "Klikněte pro zrušení výběru" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Příkaz „DROP DATABASE“ je vypnutý." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Opravdu si přejete vykonat příkaz " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" @@ -1023,8 +1113,8 @@ msgstr "Heslo je prázdné!" msgid "The passwords aren't the same!" msgstr "Hesla nejsou stejná!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Přidat uživatele" @@ -1042,8 +1132,8 @@ msgid "Close" msgstr "Ukončit" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1079,12 +1169,12 @@ msgid "Other" msgstr "Ostatní" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1165,12 +1255,12 @@ msgid "System swap" msgstr "Odkládací oblast" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1259,7 +1349,7 @@ msgstr "Prosím přidejte do série alespoň jednu hodnotu" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Žádná" @@ -1628,8 +1718,8 @@ msgstr "Zobrazit pole pro dotaz" msgid "No rows selected" msgstr "Nebyl vybrán žádný řádek" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Změnit" @@ -1641,8 +1731,8 @@ msgstr "Doba běhu dotazu" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Uložit" @@ -1654,7 +1744,7 @@ msgstr "Skrýt parametry vyhledávání" msgid "Show search criteria" msgstr "Zobrazit parametry vyhledávání" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1698,32 +1788,40 @@ msgstr "Přidat nebo odebrat pole" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Kopírovat" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "Přidat sloupce" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Zvolte odkazovaný klíč" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Zvolte cizí klíč" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Zvolte, prosím, primární nebo unikátní klíč" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Zvolte která pole zobrazit" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1731,70 +1829,70 @@ msgstr "" "Neuložili jste změny ve schématu. Pokud je neuložíte, budou ztraceny. " "Přejete si pokračovat?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Přidat paramer pro sloupec " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "Klávesou Esc ukončíte editaci" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Uspořádejte přetažením" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Klikněte pro řazení" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Klikněte pro označení" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Klikněte na šipku
pro vybrání sloupců" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Přejít na podhled" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Vytvořit heslo" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Vytvořit" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Změnit heslo" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Více" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1804,258 +1902,263 @@ msgstr "" "je %s a byla vydána %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", poslední stabilní verze:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "aktuální" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Hotovo" -#: js/messages.php:344 +#: js/messages.php:356 msgctxt "Previous month" msgid "Prev" msgstr "Předchozí" -#: js/messages.php:349 +#: js/messages.php:361 msgctxt "Next month" msgid "Next" msgstr "Následující" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Dnešek" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "leden" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "únor" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "březen" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "duben" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "květen" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "červen" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "červenec" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "srpen" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "září" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "říjen" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "listopad" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "pro" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Neděle" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Pondělí" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Úterý" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Středa" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Čtvrtek" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Pátek" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Čt" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Pá" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Týd" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minuty" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Sekundy" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Velikost písma" @@ -2166,13 +2269,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Databáze" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Chyba" @@ -2298,7 +2401,7 @@ msgstr "Vzhled %s nebyl nalezen!" msgid "Theme path not found for theme %s!" msgstr "Nebyla nalezena platná cesta k vzhledu %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Vzhled" @@ -2470,7 +2573,7 @@ msgstr "Tabulky" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Data" @@ -2538,7 +2641,7 @@ msgstr "Chybné jméno serveru pro server %1$s. Prosím zkontrolujte nastavení. #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2603,152 +2706,152 @@ msgstr "SQL-dotaz" msgid "MySQL said: " msgstr "MySQL hlásí: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Nepodařilo se připojit k serveru kontrolujícímu SQL!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Vysvětlit SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Bez vysvětlení SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Vytvořit PHP kód" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Obnovit" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Zkontrolovat SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Upravit tento dotaz na této stránce" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Upravit zde" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profilování" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d. %b %Y, %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dnů, %s hodin, %s minut a %s sekund" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "Chybějící parametr:" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 msgctxt "First page" msgid "Begin" msgstr "První" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 msgctxt "Previous page" msgid "Previous" msgstr "Předchozí" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 msgctxt "Next page" msgid "Next" msgstr "Následující" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 msgctxt "Last page" msgid "End" msgstr "Poslední" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Přejít na databázi „%s“." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnost %s je omezena známou chybou, viz %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Klikněte pro přepnutí" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2756,37 +2859,37 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Vložit" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Úpravy" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Procházet váš počítač:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvolte soubor z adresáře pro upload na serveru %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Adresář určený pro upload souborů nemohl být otevřen" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Nebyl zvolen žádný soubor pro nahrání" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Spustit" @@ -2952,7 +3055,7 @@ msgstr "Povolit uživatelům změnit tuto hodnotu" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Původní" @@ -3222,7 +3325,7 @@ msgid "Character set of the file" msgstr "Znaková sada souboru" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formát" @@ -4871,7 +4974,7 @@ msgstr "Vyžaduje povolené kontrolování SQL" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Heslo" @@ -5170,8 +5273,8 @@ msgid "Designer" msgstr "Návrhář" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Oprávnění" @@ -5190,7 +5293,7 @@ msgstr "Události" msgid "Triggers" msgstr "Spouště" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5250,7 +5353,7 @@ msgid "Create" msgstr "Vytvořit" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Nemáte oprávnění" @@ -5568,12 +5671,12 @@ msgstr "Seřadit podle klíče" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Nastavení" @@ -5601,8 +5704,8 @@ msgstr "Zobrazit binární obsah" msgid "Show BLOB contents" msgstr "Zobrazit obsah BLOBu" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Skrýt" @@ -5611,10 +5714,6 @@ msgstr "Skrýt" msgid "Browser transformation" msgstr "Transformace při prohlížení" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Geometrie" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "Text (WKT)" @@ -5623,57 +5722,53 @@ msgstr "Text (WKT)" msgid "Well Known Binary" msgstr "Binární (WKB)" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Kopírovat" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Řádek byl smazán" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Ukončit" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "v dotazu" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Zobrazeny záznamy" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "celkem" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "dotaz trval %01.4f sekund" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Náhled pro tisk (s kompletními texty)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Zobrazit graf" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Zobrazit data GIS" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Vytvořit pohled" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Odkaz nenalezen" @@ -5868,7 +5963,7 @@ msgstr "" "soubor stlačen." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Port" @@ -6217,7 +6312,7 @@ msgstr "Zobrazit MIME typy" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Počítač" @@ -6429,7 +6524,7 @@ msgstr "Exportovat obsah" msgid "Open new phpMyAdmin window" msgstr "Otevřít nové okno phpMyAdmina" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "Nebyla nalezena žádná data zobrazení GIS." @@ -6441,48 +6536,48 @@ msgstr "Výsledek SQL dotazu" msgid "Generated by" msgstr "Vygeneroval" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "Strukturu upravíte kliknutím na odkaz „Struktura“" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Přejít na databázi" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "Upravit nastavení pro %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Přejít na tabulku" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Přejít na podhled" @@ -6538,7 +6633,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Jméno tabulky" @@ -6560,6 +6655,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importovat měny (např. 5.00 místo $5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Tato stránka neobsahuje žádné tabulky!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "Režim kompatibility SQL:" @@ -6607,7 +6728,7 @@ msgstr "Přidat tabulce předponu" msgid "Add prefix" msgstr "Přidat předponu" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Žádná změna" @@ -6616,7 +6737,7 @@ msgid "Charset" msgstr "Znaková sada" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binární" @@ -6928,7 +7049,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Jméno uživatele" @@ -6946,9 +7067,9 @@ msgid "Variable" msgstr "Proměnná" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Hodnota" @@ -6976,7 +7097,7 @@ msgstr "Jakýkoliv uživatel" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Použít textové pole" @@ -7150,7 +7271,7 @@ msgid "Returns" msgstr "Vrací" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Čas" @@ -7293,8 +7414,8 @@ msgstr "Spustit rutinu" msgid "Routine parameters" msgstr "Parametry rutiny" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funkce" @@ -7577,8 +7698,8 @@ msgstr "Neznámý jazyk: %1$s." msgid "Current Server" msgstr "Aktuální server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Synchronizace" @@ -7600,7 +7721,7 @@ msgstr "Znakové sady" msgid "Engines" msgstr "Úložiště" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Zdrojová databáze" @@ -7618,7 +7739,7 @@ msgstr "Vzdálený server" msgid "Difference" msgstr "Rozdíly" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Cílová databáze" @@ -7641,11 +7762,11 @@ msgstr "Vyčistit" msgid "Columns" msgstr "Pole" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Přidat tento SQL dotaz do oblíbených" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku" @@ -7673,7 +7794,7 @@ msgstr "Zobrazit" msgid "Location of the text file" msgstr "textový soubor" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "soubor z adresáře pro upload" @@ -7867,23 +7988,29 @@ msgid "+ Add a value" msgstr "+ Přidat hodnotu" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operátor" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Vyhledávání" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Vložit" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8044,8 +8171,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "V ZIP archívu nebyly nalezeny žádné soubory!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Chyba v ZIP archívu:" @@ -8069,8 +8196,8 @@ msgstr "Více nastavení" msgid "Protocol version" msgstr "Verze protokolu" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Uživatel" @@ -8219,7 +8346,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:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Žádné databáze" @@ -8244,7 +8371,7 @@ msgstr "Zobrazit/Skrýt levé menu" msgid "Save position" msgstr "Uložit rozmístění" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Vytvořit tabulku" @@ -8581,80 +8708,80 @@ msgstr "Úložiště" msgid "View dump (schema) of databases" msgstr "Export databází" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Všechna oprávnění kromě GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Umožňuje měnit strukturu existujících tabulek." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje měnit a rušit uložené procedury." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Umožňuje vytvářet nové databáze a tabulky." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Umožňuje vytvářet uložené procedury." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Umožňuje vytvářet nové tabulky." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Umožňuje vytvářet dočasné tabulky." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvářet, rušit a přejmenovávat účty uživatelů." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Umožňuje vytvářet nové pohledy." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Umožňuje mazat data." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Umožňuje odstranit databáze a tabulky." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Umožňuje odstranit tabulky." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Umožňuje plánovat úlohy pomocí plánovače" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Umožňuje spouštět uložené procedury." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Umožňuje importovat a exportovat data z/do souborů na serveru." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8662,17 +8789,17 @@ msgstr "" "s oprávněními." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Umožňuje vytvářet a rušit indexy." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Umožňuje vkládat a přepisovat data." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Umožňuje zamknout tabulku pro aktuální vlákno." @@ -8702,54 +8829,54 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Omezuje počet současných připojení uživatele." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Umožňuje prohlížet procesy všech uživatelů" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Nemá žádný vliv v této verzi MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Umožňuje znovu načíst nastavení a vyprázdnění vyrovnávacích pamětí MySQL " "serveru." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Umožní uživateli zjistit, kde je hlavní / pomocný server." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Potřebné pro replikaci pomocných serverů." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Umožňuje vybírat data." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Umožňuje přístup k úplnému seznamu databází." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spuštění dotazu SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Umožňuje vypnout server." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8760,43 +8887,43 @@ msgstr "" "proměnných a zabíjení vláken jiných uživatelů." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Umožňuje vytváření a mazání spouští" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Umožňuje měnit data." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Žádná oprávnění." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Žádná" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Oprávnění pro jednotlivé tabulky" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Poznámka: názvy oprávnění v MySQL jsou uváděny anglicky " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Správa" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globální oprávnění" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Oprávnění pro jednotlivé databáze" @@ -8816,7 +8943,7 @@ msgstr "Přihlašování" msgid "Do not change the password" msgstr "Neměnit heslo" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Nebyl nalezen žádný uživatel." @@ -8865,7 +8992,7 @@ msgstr "Vybraní uživatelé byli úspěšně odstraněni." msgid "The privileges were reloaded successfully." msgstr "Oprávnění byla načtena úspěšně." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Upravit oprávnění" @@ -8873,34 +9000,34 @@ msgstr "Upravit oprávnění" msgid "Revoke" msgstr "Zrušit" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Jakýkoliv" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Přehled uživatelů" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Přidělování" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Odstranit vybrané uživatele" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odebrat uživatelům veškerá oprávnění a poté je odstranit z tabulek." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Odstranit databáze se stejnými jmény jako uživatelé." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8913,95 +9040,95 @@ msgstr "" "tyto tabulky upravovány. V tomto případě je vhodné provést %snové načtení " "oprávnění%s před pokračováním." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Oprávnění pro jednotlivá pole" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Přidat oprávnění pro databázi" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Zástupné znaky _ a % by měly být escapovány pomocí \\ pokud je chcete použít " "jako znak" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Přidat oprávnění pro tabulku" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Změnit informace o uživateli / Kopírovat uživatele" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Vytvořit nového uživatele se stejnými oprávněními a ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... zachovat původního uživatele." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... smazat původního uživatele ze všech tabulek." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... odebrat všechna oprávnění původnímu uživateli a poté ho smazat." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... smazat uživatele a poté znovu načíst oprávnění." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Databáze pro uživatele" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Žádná" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Vytvořit databázi stejného jména a přidělit všechna oprávnění" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Přidělit všechna oprávnění na jméno odpovídající masce (uživatel\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Přidělit všechna oprávnění na databázi "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Uživatelé mající přístup k „%s“" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globální" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "závislé na databázi" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "maska" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "Uživatel byl přidán." @@ -10263,110 +10390,110 @@ msgstr[0] "%d minuta" msgstr[1] "%d minuty" msgstr[2] "%d minut" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Nepodařilo se připojit ke zdrojové databázi" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Nepodařilo se připojit k cílové databázi" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Databáze '%s' neexistuje." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Synchronizace struktury" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Synchronizace dat" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "zde není" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Rozdíly ve struktuře" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Rozdíl mezi daty" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Přidat pole" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Odstranit pole" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Změnit pole" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Odstranit indexy" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Applikovat indexy" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Aktuallizovat řádky" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Vložit řádky" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Chcete odstranit všechny stávající řídky z cílových tabulek?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Provést vybrané změny" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Synchronizovat databáze" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Vybrané cílové tabulky byly synchronizovány se zdrojovými." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Cílová databáze byla synchronizována se zdrojovou" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 msgid "Executed queries" msgstr "Spuštěné dotazy" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Zadat ručně" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Současné připojení" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Konfigurace: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10712,34 +10839,34 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "Tajný klíč by měl obsahovat číslice, písmena [em]A[/em] zvláštní znaky." -#: sql.php:203 +#: sql.php:213 #, 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:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Zobrazuji jako PHP kód" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Proběhlo zkontrolování SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexy v tabulce „%s\"" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Název" @@ -10748,62 +10875,62 @@ msgstr "Název" msgid "Table %1$s has been altered successfully" msgstr "Tabulka %1$s byla úspěšně změněna" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "Toto pole možná nepůjde
kvůli délce upravit " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Odstranit odkaz do skladiště BLOBů" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binární - neupravujte" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Nahrát do skladiště BLOBů" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Vložit jako nový řádek" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Vložit jako nový řádek a ignorovat chyby" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Zobrazit dotaz pro vložení" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "a poté" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Návrat na předchozí stránku" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Vložit další řádek" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Návrat na tuto stránku" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Upravit následující řádek" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi " "směry" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Pokračovat ve vkládání s %s řádky" @@ -10874,43 +11001,39 @@ msgstr "Byla vytvořena tabulka %1$s." msgid "View dump (schema) of table" msgstr "Export tabulky" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "Zobrazit GIS data" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Šířka" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Výška" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Název sloupce" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- Žádný --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "Prostorový sloupec" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Použít OpenStreetMap jako základní vrstvu" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Znovu vykreslit" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Uložit do souboru" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Jméno souboru" @@ -11132,23 +11255,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "Omezení cizího klíče" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Provést „dotaz podle příkladu“ (zástupný znak: „%“)" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Zvolte pole (alespoň jedno):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Přidat vyhledávací parametry (část dotazu po příkazu „WHERE“):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "záznamů na stránku" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Seřadit podle:" @@ -12842,9 +12965,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Vytvořit uživatele" -#~ msgid "Add a new User" -#~ msgstr "Přidat nového uživatele" - #~ msgid "Show table row links on left side" #~ msgstr "Zobrazí odkazy na levé straně" diff --git a/po/cy.po b/po/cy.po index 5f8c8f9695..4a62917864 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-05-19 21:21+0200\n" "Last-Translator: \n" "Language-Team: Welsh \n" @@ -17,13 +17,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Dangos pob" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -41,19 +41,20 @@ msgstr "" "ffenest y rhiant, neu bod gosodiadau diogelwch eich porwr yn gwrthod " "caniatáu diweddariadau traws-ffenest." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Chwilio" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -71,14 +72,14 @@ msgstr "Chwilio" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -142,8 +143,8 @@ msgstr "Sylwadau tabl" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -158,8 +159,8 @@ msgstr "Colofn" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -170,7 +171,7 @@ msgstr "Math" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -213,10 +214,10 @@ msgstr "Sylwadau" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Na" @@ -235,9 +236,9 @@ msgstr "Na" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -338,7 +339,7 @@ msgstr "Newidiwch i'r gronfa ddata a gopïwyd" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -363,15 +364,15 @@ msgstr "Golygu neu allforio sgema perthynol" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabl" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -431,19 +432,19 @@ msgstr "Trefnu" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Esgynnol" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Disgynnol" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Dangos" @@ -464,8 +465,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Or" @@ -494,7 +495,7 @@ msgstr "Defnyddiwch Dablau" msgid "SQL query on database %s:" msgstr "Ymholiad SQL ar gronfa ddata %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Cyflwyno Ymholiad" @@ -534,8 +535,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s ergyd mewn tabl %s" msgstr[1] "%s ergyd mewn tabl %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Pori" @@ -546,7 +547,7 @@ msgid "Delete the matches for the %s table?" msgstr "Dileu'r cydweddau ar gyfer tabl %s" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -619,7 +620,7 @@ msgstr "Mae tracio'n weithredol" msgid "Tracking is not active." msgstr "Nid yw tracio'n weithredol" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -648,22 +649,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s yw'r peiriant storio diofyn ar y gweinydd MySQL hwn." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Gyda'r dewis:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Dewis Pob" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Dad-ddewis Pob" @@ -671,10 +672,10 @@ msgstr "Dad-ddewis Pob" msgid "Check tables having overhead" msgstr "Gwiriwch dablau â gorbenion" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -682,17 +683,17 @@ msgid "Export" msgstr "Allforio" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Argraffu golwg" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Gwagu" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -742,9 +743,9 @@ msgstr "Tablau a draciwyd" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Cronfa ddata" @@ -763,15 +764,15 @@ msgstr "Diweddarwyd" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Statws" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Gweithred" @@ -824,7 +825,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -859,6 +860,92 @@ msgstr "Nid oes gan y gweinydd gwe yr hawl i gadw'r ffeil %s." msgid "Dump has been saved to file %s." msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Routines" +msgid "Add a point" +msgstr "Rheolweithiau" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Terfynwyd llinellau gan" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add constraints" +msgid "Add a linestring" +msgstr "Ychwanegwch cyfyngiadau" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new server" +msgid "Add an inner ring" +msgstr "Ychwanegwch weinydd newydd" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +msgid "Add a polygon" +msgstr "" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "Ychwanegwch weinydd newydd" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -907,7 +994,7 @@ msgstr "Cafodd y clustnod ei ddileu." msgid "Showing bookmark" msgstr "Dangos clustnod" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Clustnodi %s a grëwyd" @@ -931,7 +1018,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -955,15 +1042,15 @@ msgstr "Pwyso i ddewis" msgid "Click to unselect" msgstr "Pwyso i dad-ddewis" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "A ydych chi wir am" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Rydych am DINISTRIO cronfa ddata gyfan!" @@ -1034,8 +1121,8 @@ msgstr "Mae'r cyfrinair yn wag!" msgid "The passwords aren't the same!" msgstr "Nid yw'r cyfrineiriau'n debyg!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1057,8 +1144,8 @@ msgid "Close" msgstr "Cau" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1098,12 +1185,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1194,12 +1281,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1304,7 +1391,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Dim" @@ -1731,8 +1818,8 @@ msgstr "Dangos ymholiad mewnosod" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Newid" @@ -1746,8 +1833,8 @@ msgstr "Gweithrediad SQL" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Cadw" @@ -1763,7 +1850,7 @@ msgstr "mewn ymholiad" msgid "Show search criteria" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1807,109 +1894,117 @@ msgstr "Ychwanegu/Dileu colofnau" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s column(s)" msgid "Add columns" msgstr "Ychwanegwch %s colofn" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Dewis Allwedd Estron" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Dewis colofn i'w dangos" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Pwyso i ddewis" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generadu Cyfrinair" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generadu" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Newid cyfrinair" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mo" msgid "More" msgstr "Llu" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1917,31 +2012,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Gwiriwch y fersiwn diweddaraf" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Neidiwch i'r gronfa ddata" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Gorffen" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Cynt" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1949,149 +2044,149 @@ msgid "Next" msgstr "Nesaf" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Heddiw" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Ionawr" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Chwefror" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Mawrth" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Ebrill" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mai" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Mehefin" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Gorffennaf" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Awst" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Medi" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Hydref" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Tachwedd" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Rhag" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Dydd Sul" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Dydd Llun" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Dydd Mawrth" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "DYdd Mercher" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Dydd Iau" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Dydd Gwener" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Dydd Sadwrn" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2099,87 +2194,92 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Llu" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Ia" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Gw" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Wy" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Awr" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Munud" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Eiliad" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Maint ffont" @@ -2287,13 +2387,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Cronfeydd Data" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Gwall" @@ -2421,7 +2521,7 @@ msgstr "Heb ddarganfod thema ddiofyn %s!" msgid "Theme path not found for theme %s!" msgstr "Heb ddarganfod llwybr thema ar gyfer thema %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2599,7 +2699,7 @@ msgstr "Tablau" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Data" @@ -2668,7 +2768,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Gweinydd" @@ -2733,103 +2833,103 @@ msgstr "Ymholiad SQL" msgid "MySQL said: " msgstr "Dywedodd MySQL:" -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Methu â chysylltu i'r gweinydd MySQL" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Esbonio SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Sgipio Esbonio SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Heb God PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Creu Cod PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Adfywio" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Sgipio Dilysu SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Dilysu SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Golygu mewnol yr ymholiad hwn" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Mewnol" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Proffilio" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Sul" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y am %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s diwrnod, %s awr, %s munud a %s eiliad" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rheolweithiau" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2837,7 +2937,7 @@ msgctxt "First page" msgid "Begin" msgstr "Dechrau" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2846,7 +2946,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Cynt" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2855,7 +2955,7 @@ msgctxt "Next page" msgid "Next" msgstr "Nesaf" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2863,36 +2963,36 @@ msgctxt "Last page" msgid "End" msgstr "Diwedd" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Neidio i gronfa ddata "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Pwyso i ddewis" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Strwythur" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2900,40 +3000,40 @@ msgstr "Strwythur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Mewnosod" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Gweithrediadau" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 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/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3109,7 +3209,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Ailosod" @@ -3368,7 +3468,7 @@ msgid "Character set of the file" msgstr "Set nodau y ffeil" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Fformat" @@ -4953,7 +5053,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Cyfrinair" @@ -5246,8 +5346,8 @@ msgid "Designer" msgstr "Dyluniwr" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Breintiau" @@ -5266,7 +5366,7 @@ msgstr "Digwyddiadau" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5325,7 +5425,7 @@ msgid "Create" msgstr "Creu" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Dim Breintiau" @@ -5675,12 +5775,12 @@ msgstr "Trefnu gan allwedd" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Opsiynau" @@ -5712,8 +5812,8 @@ msgstr "Dangos cynnwys deuaidd" msgid "Show BLOB contents" msgstr "Dangos cynnwys BLOB" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Cuddio" @@ -5722,10 +5822,6 @@ msgstr "Cuddio" msgid "Browser transformation" msgstr "Trawsffurfiad porwr" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5734,61 +5830,57 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Lladd" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "mewn ymholiad" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Yn dangos rhesi" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "cyfanswm" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Argraffu golwg (gyda thestunau llawn)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Dangos sgema PDF" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crëwch fersiwn" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Methu â darganfod y cysylltiad" @@ -5969,7 +6061,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "" @@ -6300,7 +6392,7 @@ msgstr "Mathau MIME ar gael" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Gwesteiwr" @@ -6498,7 +6590,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6510,50 +6602,50 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Data ar goll ar gyfer %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Strwythur yn unig" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6604,7 +6696,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6625,6 +6717,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "Nid yw ffeil %s yn cynnwys unrhyw id allwedd" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6674,7 +6792,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Dim newid" @@ -6683,7 +6801,7 @@ msgid "Charset" msgstr "Set nodau" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Deuaidd" @@ -6986,7 +7104,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "" @@ -7004,9 +7122,9 @@ msgid "Variable" msgstr "Newidyn" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Gwerth" @@ -7032,7 +7150,7 @@ msgstr "Unrhyw ddefnyddiwr" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Defnyddiwch faes testun" @@ -7223,7 +7341,7 @@ msgid "Returns" msgstr "Dychwelyd math" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Amser" @@ -7377,8 +7495,8 @@ msgstr "" msgid "Routine parameters" msgstr "Rheolweithiau" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Swyddogaeth" @@ -7701,8 +7819,8 @@ msgstr "Iaith anhysbys: %1$s." msgid "Current Server" msgstr "Gweinydd cyfredol" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Cydamseru" @@ -7724,7 +7842,7 @@ msgstr "Setiau nod" msgid "Engines" msgstr "Peiriannau" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Cronfa ddata ffynhonnell" @@ -7742,7 +7860,7 @@ msgstr "Gweinydd pell" msgid "Difference" msgstr "Gwahaniaeth" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Cronfa ddata targed" @@ -7765,11 +7883,11 @@ msgstr "Clirio" msgid "Columns" msgstr "Colofnau" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7797,7 +7915,7 @@ msgstr "Dangos yn unig" msgid "Location of the text file" msgstr "Lleoliad y ffeil destun" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" @@ -7966,23 +8084,29 @@ msgid "+ Add a value" msgstr "Ychwanegwch weinydd newydd" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Chwilio" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Mewnosod" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8106,8 +8230,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8135,8 +8259,8 @@ msgstr "Nodweddion perthynas cyffredinol" msgid "Protocol version" msgstr "Fersiwn protocol" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Defnyddiwr" @@ -8263,7 +8387,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Dim cronfeydd data" @@ -8290,7 +8414,7 @@ msgstr "" msgid "Save position" msgstr "Cadw safle" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Crëwch dabl" @@ -8647,96 +8771,96 @@ msgstr "Peiriannau Storio" msgid "View dump (schema) of databases" msgstr "Gwylio dadlwythiad (sgema) cronfeydd data" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8763,52 +8887,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8816,43 +8940,43 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Dim" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "" @@ -8872,7 +8996,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "" @@ -8921,7 +9045,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "" @@ -8929,34 +9053,34 @@ msgstr "" msgid "Revoke" msgstr "" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8965,93 +9089,93 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10227,112 +10351,112 @@ msgid_plural "%d minutes" msgstr[0] "Munud" msgstr[1] "Munud" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Execute bookmarked query" msgid "Executed queries" msgstr "Gweithredu ymholiad a glustnodwyd" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10624,36 +10748,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Dilysu SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "" @@ -10662,62 +10786,62 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Deuaidd - peidiwch â golygu" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Lanlwytho i storfa BLOB" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Mewnosod fel rhes newydd" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Dangos ymholiad mewnosod" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "ac yna" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Dychwelyd i'r dudalen flaenorol" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Mewnosod rhes newydd arall" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Dychwelyd i'r dudalen hon" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Golygu'r rhes nesaf" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i " "symud unrhyw le" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10804,51 +10928,47 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete columns" msgid "Label column" msgstr "Ychwanegu/Dileu colofnau" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "-dim-" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Cyfrif ffeiliau log" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Cadw fel ffeil" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Page name" msgid "File name" @@ -11075,23 +11195,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "" diff --git a/po/da.po b/po/da.po index 489c6f1398..6e46a44c73 100644 --- a/po/da.po +++ b/po/da.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-07-23 21:27+0200\n" "Last-Translator: Jørgen Thomsen \n" "Language-Team: danish \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Vis alle" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "overliggende vindue eller din browser blokerer for tvær-vindue opdateringer " "i sikkerhedsindstillingerne." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Søg" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Søg" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -138,8 +139,8 @@ msgstr "Tabel kommentarer" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -154,8 +155,8 @@ msgstr "Kolonnenavn" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -166,7 +167,7 @@ msgstr "Datatype" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -209,10 +210,10 @@ msgstr "Kommentarer" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Nej" @@ -231,9 +232,9 @@ msgstr "Nej" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -334,7 +335,7 @@ msgstr "Skift til den kopierede database" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -358,15 +359,15 @@ msgstr "Editer eller eksporter relations skema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabel" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -426,19 +427,19 @@ msgstr "Sortér" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Stigende" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Faldende" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Vis" @@ -459,8 +460,8 @@ msgid "Del" msgstr "Del (Slet)" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Eller" @@ -489,7 +490,7 @@ msgstr "Benyt tabeller" msgid "SQL query on database %s:" msgstr "SQL-forespørgsel til database %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Send forespørgsel" @@ -528,8 +529,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s sammenfald i tabel %s" msgstr[1] "%s sammenfald i tabel %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Vis" @@ -540,7 +541,7 @@ msgid "Delete the matches for the %s table?" msgstr "Slet sammenfald for %s tabellen?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -609,7 +610,7 @@ msgstr "Sporing er aktiv." msgid "Tracking is not active." msgstr "Sporing er ikke aktiv." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -638,22 +639,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard datalageret på denne MySQL-server." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Med det markerede:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Vælg alle" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Fravælg alle" @@ -661,10 +662,10 @@ msgstr "Fravælg alle" msgid "Check tables having overhead" msgstr "Check tabeller der har overhead" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -672,18 +673,18 @@ msgid "Export" msgstr "Eksporter" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Udskriv" # By "Empty", if this is an action, it should translate to "Tøm" but if it's a state it should translate to "Tom". -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Tøm" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -731,9 +732,9 @@ msgstr "Sporede tabeller" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Database" @@ -752,15 +753,15 @@ msgstr "Opdateret" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Handling" @@ -813,7 +814,7 @@ msgstr "Indtast hver værdi i et seperat felt." msgid "+ Restart insertion and add a new value" msgstr "+ Genstart indsættelse og tilføj ny værdi" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Output" @@ -848,6 +849,95 @@ msgstr "Webserveren har ikke tilladelse til at gemme filen %s." msgid "Dump has been saved to file %s." msgstr "Dump er blevet gemt i filen %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Værdier for kolonnen \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Brug OpenStreetMaps som basislag" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Geometri" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Tilføj rutine" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Linjer afsluttes med" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add constraints" +msgid "Add a linestring" +msgstr "Tilføj begrænsninger" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new server" +msgid "Add an inner ring" +msgstr "Tilføj ny server" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Tilføj kolonne" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Geometri" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -898,7 +988,7 @@ msgstr "Bogmærket er fjernet." msgid "Showing bookmark" msgstr "Viser bogmærke" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Bogmærke %s oprettet" @@ -926,7 +1016,7 @@ msgstr "" "mindre du forøger PHP-tidsbegrænsningerne." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -951,15 +1041,15 @@ msgstr "Klik for at vælge" msgid "Click to unselect" msgstr "Klik for at fravælge" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Er du sikker på at du vil " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Du er ved at DESTRUERE en komplet database!" @@ -1022,8 +1112,8 @@ msgstr "Der er ikke angivet nogen adgangskode" msgid "The passwords aren't the same!" msgstr "De to adgangskoder er ikke ens!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Opret bruger" @@ -1041,8 +1131,8 @@ msgid "Close" msgstr "Luk" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1078,12 +1168,12 @@ msgid "Other" msgstr "Andet" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1170,12 +1260,12 @@ msgid "System swap" msgstr "System swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1282,7 +1372,7 @@ msgstr "Tilføj mindst en variabel til serien" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Ingen" @@ -1686,8 +1776,8 @@ msgstr "Vis forespørgselsbox" msgid "No rows selected" msgstr "Ingen rækker valgt" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Ændre" @@ -1701,8 +1791,8 @@ msgstr "Maksimal eksekveringstid" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Gem" @@ -1714,7 +1804,7 @@ msgstr "Skjul søgekriterie" msgid "Show search criteria" msgstr "Vis søgekriterie" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1758,34 +1848,42 @@ msgstr "Tilføj/Slet kolonner" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Kopi" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "Tilføj kolonne" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Vælg refereret nøgle" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Vælg fremmednøgle" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Vælg venligst den primære nøgle eller en unik nøgle" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Vælg kolonne til visning" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1793,70 +1891,70 @@ msgstr "" "Du har ikke gemt ændringerne i layoutet. De vil bleve slettet hvis du ikke " "gemmer dem. Vil du fortsætte?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Tilføj mulighed for kolonne" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Træk for at ændre orden" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Klik for at sortere" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Klik for at markere/afmarkere" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Klik på pilen for valgboks
for at skifte kolonnens synlighed" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Gå til view" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Generér adgangskode" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generér" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Ændre adgangskode" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Mere" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1866,27 +1964,27 @@ msgstr "" "opgradere. Den nyeste version er %s, udgivet den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", seneste stabile version:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "up-to-date" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Færdig" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1894,149 +1992,149 @@ msgid "Next" msgstr "Næste" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "I dag" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "januar" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "februar" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "marts" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "april" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "maj" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "juni" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "juli" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "august" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "september" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "oktober" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "november" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "dec" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "søndag" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "mandag" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "tirsdag" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "onsdag" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "torsdag" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "fredag" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "lørdag" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2044,87 +2142,92 @@ msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "lør" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "sø" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "ti" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "on" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "fr" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "lø" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "uge" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Time" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minut" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Sekund" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Skriftstørrelse" @@ -2234,13 +2337,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Databaser" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fejl" @@ -2369,7 +2472,7 @@ msgstr "Tema %s ikke fundet!" msgid "Theme path not found for theme %s!" msgstr "Sti til tema ikke fundet for tema %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2546,7 +2649,7 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Data" @@ -2615,7 +2718,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2680,99 +2783,99 @@ msgstr "SQL-forespørgsel" msgid "MySQL said: " msgstr "MySQL returnerede: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Kunne ikke oprette forbindelse til SQL validator!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Spring over Forklar SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Uden PHP-kode" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Fremstil PHP-kode" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Opdater" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Spring over Validér SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Valider SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Åben linje til redigering af forespørgslen" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "I linje" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profilering" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "søn" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %m %Y kl. %H:%M:%S" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dage, %s timer, %s minutter og %s sekunder" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "Manglende parameter" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2780,7 +2883,7 @@ msgctxt "First page" msgid "Begin" msgstr "Start" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2789,7 +2892,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Forrige" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2798,7 +2901,7 @@ msgctxt "Next page" msgid "Next" msgstr "Næste" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2806,34 +2909,34 @@ msgctxt "Last page" msgid "End" msgstr "Slut" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Hop til database "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Klik for at skifte" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktur" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2841,37 +2944,37 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Indsæt" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operationer" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Gennemse din computer:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vælg fra %s - webserverens upload-mappe:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Mappen du har sat til upload-arbejde kan ikke findes" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Der er ikke nogen filer at uploade" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Udfør" @@ -3041,7 +3144,7 @@ msgstr "Tillad brugerdefinerede indstillinger for værdien" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Nulstil" @@ -3312,7 +3415,7 @@ msgid "Character set of the file" msgstr "Filens tegnsæt" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -4967,7 +5070,7 @@ msgstr "Kræver SQL Validator bliver aktiveret" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Adgangskode" @@ -5267,8 +5370,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilegier" @@ -5287,7 +5390,7 @@ msgstr "Hændelser" msgid "Triggers" msgstr "Triggers" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5347,7 +5450,7 @@ msgid "Create" msgstr "Opret" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Ingen privilegier" @@ -5664,12 +5767,12 @@ msgstr "Sorteringsnøgle" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Indstillinger" @@ -5697,8 +5800,8 @@ msgstr "Vis binært indhold" msgid "Show BLOB contents" msgstr "Vis indhold af BLOB" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Skjul" @@ -5707,10 +5810,6 @@ msgstr "Skjul" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Geometri" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "Velkendt tekst" @@ -5719,57 +5818,53 @@ msgstr "Velkendt tekst" msgid "Well Known Binary" msgstr "Velkendt binær" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Kopi" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Rækken er slettet" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Dræb (Kill)" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "i forespørgsel" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Viser poster" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "forepørgsel tog %01.4f sek" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Udskriv (med fulde tekster)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Vis diagram" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Visualiser GIS data" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Opret view" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Link ikke fundet" @@ -5968,7 +6063,7 @@ msgstr "" "komprimeret." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Port" @@ -6316,7 +6411,7 @@ msgstr "Vis MIME-typer" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Vært" @@ -6534,7 +6629,7 @@ msgstr "Eksport indhold" msgid "Open new phpMyAdmin window" msgstr "Åbn nyt phpMyAdmin vindue" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "Ingen data fundet for GIS visualization." @@ -6546,55 +6641,55 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Genereret af" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 #, 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 indhold ved at klikke på dens navn" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Rediger dens struktur ved at følge linket \"Struktur\"" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Gå til database" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Manglende data for %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Gå til tabel" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Kun strukturen" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Gå til view" @@ -6650,7 +6745,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Tabelnavn" @@ -6671,6 +6766,32 @@ msgstr "Importer procenter som rigtige decimaltal (ex. 12.00% to .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Import valutaer (ex. $5.00 to 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Denne side indeholder ingen tabeller!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "SQL-kompatibilitetsmodus:" @@ -6718,7 +6839,7 @@ msgstr "Tilføj tabelpræfiks" msgid "Add prefix" msgstr "Tilføj præfiks" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Ingen ændring" @@ -6727,7 +6848,7 @@ msgid "Charset" msgstr "Tegnsæt" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binært " @@ -7038,7 +7159,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Brugernavn" @@ -7056,9 +7177,9 @@ msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Værdi" @@ -7084,7 +7205,7 @@ msgstr "Enhver bruger" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Brug tekstfelt" @@ -7262,7 +7383,7 @@ msgid "Returns" msgstr "Returværdier" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Tid" @@ -7405,8 +7526,8 @@ msgstr "Udfør rutine" msgid "Routine parameters" msgstr "Rutineparametre" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funktion" @@ -7689,8 +7810,8 @@ msgstr "Ukendt sprog: %1$s." msgid "Current Server" msgstr "Aktuel server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Synkroniser" @@ -7712,7 +7833,7 @@ msgstr "Tegnsæt" msgid "Engines" msgstr "Lagre" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Kildedatabase" @@ -7730,7 +7851,7 @@ msgstr "Ekstern server" msgid "Difference" msgstr "Forskel" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Måldatabase" @@ -7753,11 +7874,11 @@ msgstr "Ryd" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Lav bogmærke til denne SQL-forespørgsel" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Lad alle brugere bruge dette bogmærke" @@ -7785,7 +7906,7 @@ msgstr "Kun oversigt" msgid "Location of the text file" msgstr "Tekstfilens placering" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "webserver upload-mappe" @@ -7981,23 +8102,29 @@ msgid "+ Add a value" msgstr "+ Tilføj en værdi" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Bladre i fremmedværdier" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operatør" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Søg" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Indsæt" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8161,8 +8288,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Ingen filer fundet i ZIP arkivet!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Fejl i ZIP arkiv:" @@ -8186,8 +8313,8 @@ msgstr "Flere indstillinger" msgid "Protocol version" msgstr "Protokolversion" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Bruger" @@ -8336,7 +8463,7 @@ msgid "" "issues." msgstr "Server med Suhosin.Se %sdocumentation%s for mulige problemer." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Ingen databaser" @@ -8363,7 +8490,7 @@ msgstr "Vis/skjul venstre menu" msgid "Save position" msgstr "Gem position" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Opret tabel" @@ -8702,80 +8829,80 @@ msgstr "Datalagre" msgid "View dump (schema) of databases" msgstr "Vis dump (skema) for databaser" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Inkluderer alle privilegier pånær GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Tillader ændring af strukturen på eksisterende tabeller." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Tillader ændring og sletning af gemte rutiner." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Tillader oprettelse af nye databaser og tabeller." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Tillader oprettelse af gemte rutiner." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Tillader oprettelse af nye tabeller." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Tillader oprettelse af midlertidige tabeller." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillader oprettelse, sletning og omdøbning af brugerkonti." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Tillader oprettelse af nye views." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Tillader sletning af data." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Tillader at droppe databaser og tabeller." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Tillader at droppe tabeller." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Tillader at oprette hændelser til hændelsesskeduleren" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Tillader udførelse af gemte rutiner." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Tillader import af data fra og eksport af data til filer." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8783,17 +8910,17 @@ msgstr "" "tabellerne." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Tillader at skabe og droppe indeks." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Tillader indsættelse og erstatning af data." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Tillader låsning af tabeller for nuværende tråd." @@ -8823,52 +8950,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrænser antallet af samtidige forbindelser brugere må have." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Tillader at se processer for alle brugere" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Har ingen effekt i denne MySQL version." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Tillader genindlæsning af serverindstillinger og tømning af caches." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Giver brugeren rettigheder til at spørge hvor slaves / masters er." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Nødvendigt for replikationsslaverne." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Tillader læsning af data." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Giver adgang til den fuldstændige liste over databaser." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillader udførelse af SHOW CREATE VIEW forespørgsler." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Tillader nedlukning af serveren." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8879,43 +9006,43 @@ msgstr "" "globale variable eller for at dræbe andre brugeres tråde." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Tillader oprettelse og sletning af triggers" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Tillader ændring af data." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Ingen privilegier." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Ingen" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Tabel-specifikke privilegier" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "NB: Navne på MySQL privilegier er på engelsk " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administration" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globale privilegier" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Database-specifikke privilegier" @@ -8936,7 +9063,7 @@ msgstr "Login-information" msgid "Do not change the password" msgstr "Adgangskoden må ikke ændres" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Ingen bruger fundet." @@ -8985,7 +9112,7 @@ msgstr "De valgte brugere er blevet korrekt slettet." msgid "The privileges were reloaded successfully." msgstr "Privilegierne blev korrekt genindlæst." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Ret privilegier" @@ -8993,35 +9120,35 @@ msgstr "Ret privilegier" msgid "Revoke" msgstr "Tilbagekald" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Enhver" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Brugeroversigt" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Tildel" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Fjern valgte brugere" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Tilbagekald alle aktive privilegier fra brugerne og slet dem efterfølgende." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Drop databaser der har samme navne som brugernes." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9035,51 +9162,51 @@ msgstr "" "ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" "%s før du fortsætter." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Kolonne-specifikke privilegier" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Tilføj privilegier på følgende database" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Jokertegn % og _ skal escapes med en \\ for brug af dem som almindelige tegn." -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Tilføj privileges på følgende tabel" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Ret Login-information / Kopier bruger" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Opret en bruger med samme privilegier og ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... behold den gamle." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... slet den gamle fra brugertabellerne." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... tilbagekald alle aktive privilegier fra den gamle og slet den " "efterfølgende." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9087,46 +9214,46 @@ msgstr "" " ... slet den gamle fra brugertabellerne og genindlæs privilegierne " "efterfølgende." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Database for bruger" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Ingen" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Opret database med samme navn og tildel alle privilegier" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Tildel alle privilegier til jokertegn-navn (brugernavn_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Tildel alle privilegier på database "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Brugere med adgang til "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "database-specifik" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "jokertegn" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "Bruger er blevet tilføjet." @@ -10507,112 +10634,112 @@ msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minutter" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Kunne ikke forbinde til kilden" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Kunne ikke forbinde til målet" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database eksisterer ikke." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Struktursynkronisering" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Datasynkronisering" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "findes ikke" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Strukturforskel" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Dataforskel" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Tilføj kolonne(r)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Fjern kolonne(r)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Ændre kolonne(r)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Fjern indeks(es)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Brug indeks(es)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Opdater række(r)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Indsæt række(r)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Vil du slette alle de tidligere rækker fra måltabeller ?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Udfør de valgte ændringer" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Synkroniser databaser" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Valgte måltabeller er blevet synkroniseret med kildetabeller." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Måldatabasen er blevet synkroniseret med kildedatabase." -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Igangsatte forespørgsler" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Indtast manuelt" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Aktuel forbindelse" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Konfiguration: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10956,34 +11083,34 @@ msgstr "Nøglen er for kort, den bør have mindst 8 tegn." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Nøglen bør indeholde bogstaver, numre [em]og[/em] specialtegn." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bruger bogmærke \"%s\" som standard gennemsynsforespørgsel" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Indsatte række id: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Viser som PHP-kode" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Valideret SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene på tabel `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Mærke" @@ -10992,62 +11119,62 @@ msgstr "Mærke" msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s er blevet ændret" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "På grund af feltets længde,
kan det muligvis ikke ændres " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Fjern BLOB Repository reference" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binært - må ikke ændres" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Upload til BLOB repository" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Indsæt som ny række" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Indsæt som ny række og ignorer fejl" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Vis indsættelsesforespørgsel" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "og derefter" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Tilbage til foregående side" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Indsæt endnu en ny række" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Gå tilbage til denne side" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Rediger næste række" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL" "+piletasterne til at flytte frit omkring" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsæt indsættelse med %s rækker" @@ -11118,43 +11245,39 @@ msgstr "Tabel %1$s er blevet oprettet." msgid "View dump (schema) of table" msgstr "Vis dump (skema) over tabel" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "Vis GIS visualisering" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Bredde" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Højde" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Tekst for kolonne" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- Ingen --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "Spatial kolonne" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Brug OpenStreetMaps som basislag" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Gentegn" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Gem i fil" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Filnavn" @@ -11378,23 +11501,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "Begrænsning på fremmednøgle" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Kør en forespørgsel på felter (jokertegn: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Vælg mindst een kolonne" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Tilføj søgekriterier (kroppen af \"where\" sætningen):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Rækker pr. side" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Rækkefølge af visning:" diff --git a/po/de.po b/po/de.po index d8418ed6a6..3286d5c0a6 100644 --- a/po/de.po +++ b/po/de.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-17 13:24+0200\n" "Last-Translator: \n" "Language-Team: german \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Alles anzeigen" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "wurde das Ursprungsfenster geschlossen oder der Browser verhindert den " "Zugriff aufgrund von Ihren Sicherheitseinstellungen." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Suche" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Suche" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Tabellen-Kommentar" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Spalte" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Typ" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Kommentare" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Nein" @@ -232,9 +233,9 @@ msgstr "Nein" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Zu kopierter Datenbank wechseln" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Beziehungsschema bearbeiten oder exportieren" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabelle" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -416,7 +417,6 @@ msgstr "Bitte wählen Sie mindestens eine anzuzeigende Spalte" #: db_qbe.php:186 #, php-format -#| msgid "visual builder" msgid "Switch to %svisual builder%s" msgstr "Zu %svisual builder%s wechseln" @@ -428,19 +428,19 @@ msgstr "Sortierung" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Aufsteigend" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Absteigend" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Zeige" @@ -461,8 +461,8 @@ msgid "Del" msgstr "Entf" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Oder" @@ -491,7 +491,7 @@ msgstr "Verwendete Tabellen" msgid "SQL query on database %s:" msgstr "SQL-Befehl in der Datenbank %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "SQL-Befehl ausführen" @@ -530,8 +530,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s Treffer in der Tabelle %s" msgstr[1] "%s Treffer in der Tabelle %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Anzeigen" @@ -542,7 +542,7 @@ msgid "Delete the matches for the %s table?" msgstr "Treffer für Tabelle %s löschen?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -611,7 +611,7 @@ msgstr "Tracking ist aktiviert." msgid "Tracking is not active." msgstr "Tracking ist nicht aktiviert." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -643,22 +643,22 @@ msgstr "" "ist." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "markierte:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Alle auswählen" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Auswahl entfernen" @@ -666,10 +666,10 @@ msgstr "Auswahl entfernen" msgid "Check tables having overhead" msgstr "Tabellen mit Überhang auswählen" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -677,17 +677,17 @@ msgid "Export" msgstr "Exportieren" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Druckansicht" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Leeren" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -735,9 +735,9 @@ msgstr "Verfolgte Tabellen" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Datenbank" @@ -756,15 +756,15 @@ msgstr "Aktualisiert" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Aktion" @@ -817,7 +817,7 @@ msgstr "Jeden Wert in einem eigenen Feld eingeben." msgid "+ Restart insertion and add a new value" msgstr "+ Eingabe wiederholen und neuen Wert hinzufügen" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Ausgabe" @@ -853,6 +853,95 @@ msgstr "Der Webserver hat keine Schreibrechte um die Datei %s zu speichern." msgid "Dump has been saved to file %s." msgstr "Dump wurde in Datei %s gespeichert." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Werte für die Spalte \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Verwende OpenStreetMaps als Basis-Layer" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Gestaltung" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Prozedur hinzufügen" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Zeilen getrennt mit" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Neuen Benutzer hinzufügen" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Neuen Benutzer hinzufügen" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Spalte hinzufügen" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Gestaltung" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -904,7 +993,7 @@ msgstr "SQL-Abfrage wurde gelöscht." msgid "Showing bookmark" msgstr "Bookmark wird angezeigt" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s wurde gespeichert" @@ -933,7 +1022,7 @@ msgstr "" "nicht die Ausführungszeitbeschränkungen von php gelockert werden." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -957,15 +1046,15 @@ msgstr "Zur Auswahl anklicken" msgid "Click to unselect" msgstr "Zum Abwählen anklicken" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Möchten Sie wirklich diese Abfrage ausführen " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Sie sind dabei eine komplette Datenbank zu ZERSTÖREN!" @@ -1028,8 +1117,8 @@ msgstr "Es wurde kein Passwort angegeben!" msgid "The passwords aren't the same!" msgstr "Die eingegebenen Passwörter sind nicht identisch!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Benutzer hinzufügen" @@ -1047,8 +1136,8 @@ msgid "Close" msgstr "Schliesse" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1084,12 +1173,12 @@ msgid "Other" msgstr "Weitere" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1132,7 +1221,6 @@ msgid "Query statistics" msgstr "Abfrage-Statistiken" #: js/messages.php:93 -#| msgid "Local monitor configuration icompatible" msgid "Local monitor configuration incompatible" msgstr "Die lokale Bildschirmkonfiguration ist nicht kompatibel." @@ -1169,12 +1257,12 @@ msgid "System swap" msgstr "System-Swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1273,7 +1361,7 @@ msgstr "Bitte fügen Sie mindestens eine Variable der Serie hinzu" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "keine" @@ -1659,8 +1747,8 @@ msgstr "SQL-Querybox anzeigen" msgid "No rows selected" msgstr "Es wurden keine Datensätze ausgewählt" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Bearbeiten" @@ -1672,8 +1760,8 @@ msgstr "Ausführungszeit der Abfrage" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Speichern" @@ -1685,7 +1773,7 @@ msgstr "Suchkriterien ausblenden" msgid "Show search criteria" msgstr "Suchkriterien anzeigen" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1733,32 +1821,40 @@ msgstr "Spalten hinzufügen/entfernen" msgid "Select two different columns" msgstr "2 unterschiedliche Spalten auswählen" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Kopieren" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "Spalten hinzufügen" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Wählen Sie den referenzierten Schlüssel" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Wähle Fremdschlüssel" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Bitte den PRIMARY KEY oder einen UNIQUE KEY wählen" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Anzuzeigende Spalte auswählen" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1766,15 +1862,15 @@ msgstr "" "Sie haben die Änderungen im Layout nicht gespeichert. Sie werden verworfen " "wenn Sie diese nicht speichern. Wünschen Sie fortzufahren?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Option hinzufügen zu Spalte " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "Drücken Sie ESC um das Bearbeiten abzubrechen" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -1782,58 +1878,58 @@ msgstr "" "Sie haben Daten verändert und noch nicht gespeichert. Sind Sie sicher, dass " "Sie diese Seite ohne zu speichern verlassen möchten?" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Zur Umordnung ziehen" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Zur Anordnung anklicken" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Klicken zum aus- bzw. abwählen" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" "Den Pfeil des Aufklappsmenüs anklicken
um die Sichtbarkeit der Spalte " "umzustellen" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Gehe zum View" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Passwort generieren" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generieren" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Passwort ändern" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Mehr" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1843,258 +1939,263 @@ msgstr "" "vorgeschlagen. Die aktuellste Version ist %s, erschienen am %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", aktuellste stabile Version:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "auf dem laufenden Stand" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Fertig" -#: js/messages.php:344 +#: js/messages.php:356 msgctxt "Previous month" msgid "Prev" msgstr "Vorher" -#: js/messages.php:349 +#: js/messages.php:361 msgctxt "Next month" msgid "Next" msgstr "Nächster" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Heute" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Januar" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Februar" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "März" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "April" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mai" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Juni" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Juli" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "August" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "September" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Oktober" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "November" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mrz" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dez" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Sonntag" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Montag" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Dienstag" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Mittwoch" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Donnerstag" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Freitag" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Wo" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Stunde" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minute" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Sekunde" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Schriftgröße" @@ -2206,13 +2307,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Datenbanken" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fehler" @@ -2335,7 +2436,7 @@ msgstr "Oberflächendesign %s nicht gefunden!" msgid "Theme path not found for theme %s!" msgstr "Pfad für das Oberflächendesign %s nicht gefunden!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Theme" @@ -2514,7 +2615,7 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Daten" @@ -2584,7 +2685,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2649,99 +2750,99 @@ msgstr "SQL-Befehl" msgid "MySQL said: " msgstr "MySQL meldet: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Verbindungsaufbau zu SQL-Validator schlug fehl!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL erklären" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "SQL-Erklärung umgehen" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "ohne PHP-Code" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP-Code erzeugen" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Aktualisieren" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL-Validierung umgehen" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL validieren" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Inline-Bearbeiten dieses SQL-Befehls" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Messen" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "So" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y um %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s Tage, %s Stunden, %s Minuten und %s Sekunden" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "Fehlende(r) Parameter:" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2749,7 +2850,7 @@ msgctxt "First page" msgid "Begin" msgstr "Anfang" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2758,7 +2859,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Vorherige" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2767,7 +2868,7 @@ msgctxt "Next page" msgid "Next" msgstr "Nächste" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2775,35 +2876,35 @@ msgctxt "Last page" msgid "End" msgstr "Ende" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Zur Datenbank "%s" springen." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Die Funktion %s wird durch einen bekannten Fehler beeinträchtigt, siehe %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Zum Umschalten anklicken" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktur" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2811,37 +2912,37 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Einfügen" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operationen" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Durchsuchen Sie ihren Computer:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Es sind keine Dateien zum Upload vorhanden" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Ausführen" @@ -3007,7 +3108,7 @@ msgstr "Erlaube den Benutzern diesen Wert anzupassen" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Zurücksetzen" @@ -3278,7 +3379,7 @@ msgid "Character set of the file" msgstr "Zeichensatz der Datei" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -4955,7 +5056,7 @@ msgstr "Erfordert das der SQL-Validator aktiviert ist" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Passwort" @@ -5255,8 +5356,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Rechte" @@ -5275,7 +5376,7 @@ msgstr "Ereignisse" msgid "Triggers" msgstr "Trigger" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5338,7 +5439,7 @@ msgid "Create" msgstr "Anlegen" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Keine Rechte" @@ -5659,12 +5760,12 @@ msgstr "Nach Schlüssel sortieren" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Optionen" @@ -5693,8 +5794,8 @@ msgid "Show BLOB contents" msgstr "BLOB Inhalte anzeigen" # Hide heist im deutschen in der EDV ausblenden -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Verstecken" @@ -5703,10 +5804,6 @@ msgstr "Verstecken" msgid "Browser transformation" msgstr "Darstellungsumwandlung" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Gestaltung" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "Bekannter Text" @@ -5715,58 +5812,54 @@ msgstr "Bekannter Text" msgid "Well Known Binary" msgstr "Bekanntes Binary" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Kopieren" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Der Datensatz wurde gelöscht" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Beenden" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "in der Abfrage" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Zeige Datensätze" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" 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/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Die Abfrage dauerte %01.4f Sekunden" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Druckansicht (vollständige Textfelder)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Diagramm anzeigen" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Visualisiere GIS Daten" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Erzeuge View" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Der Verweis wurde nicht gefunden" @@ -5965,7 +6058,7 @@ msgstr "" "komprimiert wird." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Port" @@ -6318,7 +6411,7 @@ msgstr "MIME-Typen anzeigen" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6536,7 +6629,7 @@ msgstr "Export-Inhalte" msgid "Open new phpMyAdmin window" msgstr "Neues phpMyAdmin-Fenster" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "Keine Daten für die GIS-Darstellung gefunden." @@ -6548,52 +6641,52 @@ msgstr "SQL-Abfrageergebnis" msgid "Generated by" msgstr "Erstellt von" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" "Zum Ändern der Struktur auf den entsprechenden \"Struktur\"-Link klicken" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Gehe zur Datenbank" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "Einstellung für %s bearbeiten" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Gehe zur Tabelle" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, php-format msgid "Structure of %s" msgstr "Struktur von %s" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Gehe zum View" @@ -6651,7 +6744,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Tabellenname" @@ -6674,6 +6767,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Währungen importieren (z.B. $5.00 zu 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Diese Seite enthält keine Tabellen!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "SQL-Kompatibilitätsmodus:" @@ -6721,7 +6840,7 @@ msgstr "Tabellen-Prefix hinzufügen" msgid "Add prefix" msgstr "Prefix hinzufügen" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Keine Änderung" @@ -6730,7 +6849,7 @@ msgid "Charset" msgstr "Zeichensatz" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binär" @@ -7044,7 +7163,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Benutzername" @@ -7062,9 +7181,9 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Wert" @@ -7092,7 +7211,7 @@ msgstr "Jeder Benutzer" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Textfeld verwenden" @@ -7272,7 +7391,7 @@ msgid "Returns" msgstr "Rückgabe-Wert" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Zeit" @@ -7419,8 +7538,8 @@ msgstr "Führe Prozedur aus" msgid "Routine parameters" msgstr "Prozeduren-Parameter" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funktion" @@ -7707,8 +7826,8 @@ msgstr "Unbekannte Sprache: %1$s." msgid "Current Server" msgstr "Aktueller Server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Gleiche ab" @@ -7731,7 +7850,7 @@ msgid "Engines" msgstr "Formate" # source != search / Source != Suche -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Quell-Datenbank" @@ -7749,7 +7868,7 @@ msgstr "Entfernter Server" msgid "Difference" msgstr "Unterschied" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Ziel-Datenbank" @@ -7772,11 +7891,11 @@ msgstr "Werte löschen" msgid "Columns" msgstr "Spalten" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "SQL-Abfrage speichern" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" @@ -7804,7 +7923,7 @@ msgstr "Nur zeigen" msgid "Location of the text file" msgstr "Datei" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "Upload-Verzeichnis auf dem Webserver" @@ -8002,23 +8121,29 @@ msgid "+ Add a value" msgstr "+ Wert hinzufügen" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Fremdschlüsselwerte ansehen" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operator" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Suche" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Einfügen" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8191,8 +8316,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Keine Dateien im ZIP-Archiv gefunden!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Fehler im ZIP-Archiv:" @@ -8216,8 +8341,8 @@ msgstr "Weitere Einstellungen" msgid "Protocol version" msgstr "Protokoll-Version" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Benutzer" @@ -8370,7 +8495,7 @@ msgstr "" "Der Server läuft mit Suhosin. Bitte lesen Sie die %sDokumentation%s wegen " "möglicher Probleme." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Keine Datenbanken" @@ -8395,7 +8520,7 @@ msgstr "Zeige/Verstecke linkes Menü" msgid "Save position" msgstr "Speichere Position" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Erzeuge Tabelle" @@ -8737,81 +8862,81 @@ msgstr "Tabellenformate" msgid "View dump (schema) of databases" msgstr "Dump (Schema) der Datenbanken anzeigen" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Enthält alle Rechte bis auf GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Erlaubt das Verändern der Struktur bestehender Tabellen." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Erlaubt das Verändern und Löschen von Routinen." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Erlaubt das Erstellen neuer Datenbanken und Tabellen." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Erlaubt das Erstellen von gespeicherten Routinen." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Erlaubt das Erstellen neuer Tabellen." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Erlaubt das Erstellen temporärer Tabellen." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Erlaubt das Erstellen, Löschen und Umbenennen von Benutzern." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Erlaubt das Erstellen von Views." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Erlaubt das Löschen von Daten." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Erlaubt das Löschen ganzer Datenbanken und Tabellen." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Erlaubt das Löschen ganzer Tabellen." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Erlaubt das Anlegen von Events für den Event-Scheduler" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Erlaubt das Ausführen von Routinen." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" "Erlaubt das Importieren von Daten aus und das Exportieren in externe Dateien." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8819,17 +8944,17 @@ msgstr "" "Benutzerprofile neu laden zu müssen." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Erlaubt das Erstellen und Löschen von Indizes." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Erlaubt das Hinzufügen und Ersetzen von Daten." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Erlaubt die Sperrung bestimmter Tabellen." @@ -8862,56 +8987,56 @@ msgstr "" "Beschränkt die Anzahl der gleichzeitigen Verbindungen für diesen Benutzer." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Erlaubt die Anzeige der Prozesse aller Benutzer" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Hat keinen Effekt in dieser MySQL-Version." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Erlaubt das erneute Laden von Servereinstellungen und das Leeren der " "Zwischenspeicher zur Laufzeit." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Erlaubt dem Benutzer zu fragen, wo sich die Master- bzw. Slave-Systeme " "befinden." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Wird für die Replication-Slave-Systeme benötigt." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Erlaubt das Auslesen von Daten." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Gewährt Zugang zur vollständigen Datenbankliste." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Erlaubt das Ausführen von SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Erlaubt das Beenden des Servers." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8922,43 +9047,43 @@ msgstr "" "Setzen globaler Variables oder das Beenden fremder Prozesse, vorausgesetzt." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Erlaubt das Erzeugen und Löschen Triggern" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Erlaubt das Verändern von gespeicherten Daten." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Keine Rechte." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Kein(e)" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Tabellenspezifische Rechte" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Hinweis: MySQL-Rechte werden auf Englisch angegeben " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administration" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globale Rechte" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Datenbankspezifische Rechte" @@ -8978,7 +9103,7 @@ msgstr "Anmelde-Informationen" msgid "Do not change the password" msgstr "Passwort nicht verändert" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Es wurde kein Benutzer gefunden." @@ -9027,7 +9152,7 @@ msgstr "Die gewählten Benutzer wurden gelöscht." msgid "The privileges were reloaded successfully." msgstr "Die Benutzerprofile wurden neu geladen." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Rechte ändern" @@ -9035,36 +9160,36 @@ msgstr "Rechte ändern" msgid "Revoke" msgstr "Entfernen" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Jeder" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Benutzerübersicht" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Die ausgewählten Benutzer löschen" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Den Benutzern alle Rechte entziehen und sie anschließend aus den " "Benutzertabellen löschen." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Die gleichnamigen Datenbanken löschen." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9078,97 +9203,97 @@ msgstr "" "vorgenommen wurden. In diesem Fall sollten Sie %sdie Benutzerprofile neu " "laden%s bevor Sie fortfahren." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Spaltenspezifische Rechte" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Rechte zu folgender Datenbank hinzufügen" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Platzhalter _ und % sollten mit einem \\ escaped werden, um das gewünschte " "Sonderzeichen einzubinden" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Rechte zu folgender Tabelle hinzufügen" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Anmelde-Information ändern / Benutzer kopieren" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Erstelle einen neuen Benutzer mit identischen Rechten und ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... behalte den alten bei." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... lösche den alten von den Benutzertabellen." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... entziehe dem alten alle Rechte und lösche ihn anschließend." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... lösche den alten und lade anschließend die Benutzertabellen neu." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Datenbank für Benutzer" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Kein(e)" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Erstelle eine Datenbank mit gleichem Namen und gewähre alle Rechte" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Gewähre alle Rechte auf Datenbanken die mit dem Benuterznamen beginnen " "(username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gewähre alle Rechte auf die Datenbank "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Benutzer mit Zugriff auf "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "datenbankspezifisch" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "Platzhalter" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "Benutzer wurde hinzugefügt." @@ -10553,113 +10678,113 @@ msgid_plural "%d minutes" msgstr[0] "%d Minute" msgstr[1] "%d Minuten" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Es konnte keine Verbindung zu Quell-Datenbank hergestellt werden" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Es konnte keine Verbindung zu Ziel-Datenbank hergestellt werden" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Datenbank '%s' existiert nicht." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Strukturabgleich" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Datenabgleich" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "nicht vorhanden" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Struktur-Unterschied" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Datenunterschied" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Spalte(n) hinzufügen" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Spalte(n) entfernen" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Spalte(n) ändern" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Index/Indices entfernen" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Index/Indices anwenden" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Zeile(n) aktualisieren" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Zeile(n) einfügen" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" "Möchten Sie alle vorhergehenden Datensätze aus den Ziel-Tabellen löschen?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Ausgewählte Änderungen anwenden" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Datenbanken abgleichen" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Ausgewählte Ziel-Tabellen wurden mit Quell-Tabellen abgeglichen." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Ziel-Tabelle wurde mit Quell-Tabelle abgeglichen" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Ausgelöste SQL-Befehle" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Manuell eingeben" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Aktuelle Verbindung" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Konfiguration: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11013,34 +11138,34 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "Schlüssel sollte Buchstaben, Ziffern [em]und[/em] Sonderzeichen enthalten." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet." -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Ansicht als PHP Code" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Geprüftes SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Warnungen bei den Indizes der Tabelle `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Titel" @@ -11049,62 +11174,62 @@ msgstr "Titel" msgid "Table %1$s has been altered successfully" msgstr "Die Tabelle %1$s wurde erfolgreich geändert" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "Wegen seiner Länge ist dieses
Feld vielleicht nicht editierbar " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "BLOB-Referenz entfernen" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binär - nicht editierbar" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Zu BLOB-Repository hochladen" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Als neuen Datensatz speichern" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Als neue Zeile einfügen und Fehler ignorieren" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Zeige insert Abfrage" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "und dann" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "zurück" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "anschließend einen weiteren Datensatz einfügen" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Zurück zu dieser Seite" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "nächste Zeile bearbeiten" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten " "beliebig bewegen" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Einfügen mit %s Datensätzen fortfahren" @@ -11175,43 +11300,39 @@ msgstr "Die Tabelle %1$s wurde erzeugt." msgid "View dump (schema) of table" msgstr "Dump (Schema) der Tabelle anzeigen" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "GIS-Darstellung anzeigen" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Breite" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Höhe" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Spaltenbeschriftung" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- Kein --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "Räumliche Spalte" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Verwende OpenStreetMaps als Basis-Layer" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Neu zeichnen" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "In Datei speichern" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Dateiname" @@ -11440,23 +11561,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "Beschränkung für auswärtige Schlüssel" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Spalten auswählen (min. eines):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Eigenes Filterkriterium (Argumente für den \"WHERE\"-Ausdruck):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Einträge pro Seite" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Sortierung nach:" @@ -13187,9 +13308,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Erzeuge Benutzer" -#~ msgid "Add a new User" -#~ msgstr "Neuen Benutzer hinzufügen" - #~ msgid "Show table row links on left side" #~ msgstr "Links zu Tabellenzeilen auf der linken Seite anzeigen" diff --git a/po/el.po b/po/el.po index 6dfd1fbf44..5f9bc2fd93 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-07-29 14:17+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: greek \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Εμφάνιση όλων" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "κλείσατε το μητρικό παράθυρο ή ο φυλλομετρητής σας δεν επιτρέπει τις " "ανανεώσεις μεταξύ παραθύρων λόγω ρυθμίσεων ασφαλείας." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Αναζήτηση" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Αναζήτηση" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Σχόλια πίνακα" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Στήλη" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Τύπος" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Σχόλια" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Όχι" @@ -232,9 +233,9 @@ msgstr "Όχι" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομέν #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματ #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Πίνακας" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -428,19 +429,19 @@ msgstr "Ταξινόμηση" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Αύξουσα" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Φθίνουσα" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Εμφάνιση" @@ -461,8 +462,8 @@ msgid "Del" msgstr "Διαγραφή" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Ενωση" @@ -491,7 +492,7 @@ msgstr "Χρήση Πινάκων" msgid "SQL query on database %s:" msgstr "Εντολή SQL στη βάση δεδομένων %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Υποβολή ερωτήματος" @@ -530,8 +531,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s απατέλεσμα στον πίνακα %s" msgstr[1] "%s αποτελέσματα στον πίνακα %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Περιήγηση" @@ -542,7 +543,7 @@ msgid "Delete the matches for the %s table?" msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -611,7 +612,7 @@ msgstr "Η παρακολούθηση είναι ενεργοποιημένη." msgid "Tracking is not active." msgstr "Η παρακολούθηση δεν είναι ενεργοποιημένη." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -642,22 +643,22 @@ msgstr "" "Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Με τους επιλεγμένους:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Επιλογή όλων" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Απεπιλογή όλων" @@ -665,10 +666,10 @@ msgstr "Απεπιλογή όλων" msgid "Check tables having overhead" msgstr "Επιλογή πινάκων με περίσσεια" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -676,17 +677,17 @@ msgid "Export" msgstr "Εξαγωγή" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Άδειασμα" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -734,9 +735,9 @@ msgstr "Παρακολουθούμενοι πίνακες" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Βάση" @@ -755,15 +756,15 @@ msgstr "Ενημερώθηκε" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Κατάσταση" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Ενέργεια" @@ -816,7 +817,7 @@ msgstr "Εισαγωγή κάθε τιμής σε διαφορετικό πεδ msgid "+ Restart insertion and add a new value" msgstr "+ Επανεκκίνηση εισαγωγής και προσθήκη μιας νέας τιμής" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Εξαγόμενο" @@ -851,6 +852,95 @@ msgstr "Ο διακομιστής δεν έχει δικαιώματα αποθ msgid "Dump has been saved to file %s." msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Τιμές για τη στήλη «%s»" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Χρήση του OpenStreetMaps ως Βασικό Επίπεδο" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Γεωμετρία" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Προσθήκη ρουτίνας" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Γραμμές που τελειώνουν σε" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Προσθήκη νέου Χρήστη" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Προσθήκη νέου Χρήστη" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Προσθήκη στήλης" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Γεωμετρία" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -901,7 +991,7 @@ msgstr "Η ετικέτα διεγράφη." msgid "Showing bookmark" msgstr "Εμφάνιση σελιδοδείκτη" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε" @@ -929,7 +1019,7 @@ msgstr "" "και αν αυξήσετε τα χρονικά όρια της php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -955,15 +1045,15 @@ msgstr "Πατήστε για επιλογή" msgid "Click to unselect" msgstr "Πατήστε για απεπιλογή" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Θέλετε να εκτελέσετε την εντολή " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Πρόκειται να DESTROY μια ολόκληρη βάση δεδομένων!" @@ -1026,8 +1116,8 @@ msgstr "Ο κωδικός πρόσβασης είναι κενός!" msgid "The passwords aren't the same!" msgstr "Οι κωδικοί πρόσβασης δεν είναι ίδιοι!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Προσθήκη χρήστη" @@ -1045,8 +1135,8 @@ msgid "Close" msgstr "Κλείσιμο" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1082,12 +1172,12 @@ msgid "Other" msgstr "Άλλα" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1174,12 +1264,12 @@ msgid "System swap" msgstr "Αδράνεια συστήματος" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1286,7 +1376,7 @@ msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στι #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Καμία" @@ -1685,8 +1775,8 @@ msgstr "Προβολή παραθύρου ερωτήματος" msgid "No rows selected" msgstr "Δεν επιλέχθηκαν γραμμές" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Αλλαγή" @@ -1698,8 +1788,8 @@ msgstr "Χρόνος εκτέλεσης ερωτήματος" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Αποθήκευση" @@ -1711,7 +1801,7 @@ msgstr "Απόκρυψη κριτηρίων αναζήτησης" msgid "Show search criteria" msgstr "Προβολή κριτηρίων αναζήτησης" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1755,32 +1845,40 @@ msgstr "Προσθήκη/Αφαίρεση Στηλών" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Αντιγραφή" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "Προσθήκη στηλών" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Επιλέξτε αναφερθέν κλειδί" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Επιλέξτε Μη Διακριτό Κλειδί" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Επιλέξτε στήλη για εμφάνιση" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1788,70 +1886,70 @@ msgstr "" "Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. " "Θέλετε να συνεχίσετε;" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Προσθήκη επιλογής για τη στήλη " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Σύρτε για ανακατανομή" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Πατήστε για ταξινόμηση" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Πατήστε για εναλλαγή επισήμανσης" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Πατήστε το προς τα κάτω βέλος
για εναλλαγή της εμφάνισης στηλών" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Μετάβαση στην προβολή" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Δημιουργία κωδικού πρόσβασης" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Παραγωγή" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Αλλαγή Κωδικού Πρόσβασης" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Περισσότερα" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1861,27 +1959,27 @@ msgstr "" "εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", τελευταία έκδοση:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "ενημερωμένο" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Ολοκληρώθηκε" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Προηγούμενο" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1889,149 +1987,149 @@ msgid "Next" msgstr "Επόμενο" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Σήμερα" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Ιανουαρίου" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Φεβρουαρίου" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Μαρτίου" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Απριλίου" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Μαΐου" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Ιουνίου" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Ιουλίου" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Αυγούστου" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Σεπτεμβρίου" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Οκτωβρίου" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Νοεμβρίου" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Δεκεμβρίου" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Νοε" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Δεκ" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Κυριακή" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Δευτέρα" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Τρίτη" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Τετάρτη" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Πέμπτη" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Παρασκευή" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Σάββατο" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2039,87 +2137,92 @@ msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Σάβ" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Κυ" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Δε" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Τρ" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Τε" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Πε" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Πα" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Σα" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Wiki" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Ώρα" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Λεπτό" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Δευτερόλεπτο" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" @@ -2231,13 +2334,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Βάσεις δεδομένων" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Λάθος" @@ -2366,7 +2469,7 @@ msgstr "Το θέμα %s δεν βρέθηκε!" msgid "Theme path not found for theme %s!" msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θέμα %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Θέμα" @@ -2545,7 +2648,7 @@ msgstr "Πίνακες" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Δεδομένα" @@ -2615,7 +2718,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Διακομιστής" @@ -2680,99 +2783,99 @@ msgstr "Εντολή SQL" msgid "MySQL said: " msgstr "Η MySQL επέστρεψε το μήνυμα: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Αδύνατη η σύνδεση στο εγκυροποιητή SQL!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Ανάλυση SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Χωρίς ανάλυση SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "χωρίς κώδικα PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Δημιουργία κώδικα PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Ανανέωση" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Παράβλεψη επικύρωσης SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Επικύρωση SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Εσωτερική επεξεργασία αυτού του ερωτήματος" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Εσωτερικό" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Δημιουργία προφίλ" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Κυρ" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y στις %H:%M:%S" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s μέρες, %s ώρες, %s λεπτά %s δευτερόλεπτα" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "Απολεσθείσα παράμετρος:" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2780,7 +2883,7 @@ msgctxt "First page" msgid "Begin" msgstr "Κορυφή" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2789,7 +2892,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Προηγούμενο" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2798,7 +2901,7 @@ msgctxt "Next page" msgid "Next" msgstr "Επόμενο" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2806,35 +2909,35 @@ msgctxt "Last page" msgid "End" msgstr "Τέλος" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Μεταπήδηση στην βάση «%s»." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Η λειτουργία %s έχει επηρρεαστεί από ένα γνωστό σφάλμα, για αυτό δείτε %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Πατήστε για εναλλαγή" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Δομή" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2842,38 +2945,38 @@ msgstr "Δομή" msgid "SQL" msgstr "Κώδικας SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Προσθήκη" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Λειτουργίες" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Περιηγηθείτε στον υπολογιστή σας:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Επιλογή από το φάκελο αποστολής του διακοιμίστή ιστού %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "" "Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Δεν υπάρχουν αρχεία προς αποστολή" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Εκτέλεση" @@ -3042,7 +3145,7 @@ msgstr "Επιτρέπεται στους χρήστες να προσαρμόσ #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Επαναφορά" @@ -3313,7 +3416,7 @@ msgid "Character set of the file" msgstr "Σύνολο χαρακτήρων αρχείου" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Μορφοποίηση" @@ -5009,7 +5112,7 @@ msgstr "Απαιτεί την ενεργοποίηση του Εγκυροποι #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Κωδικός πρόσβασης" @@ -5318,8 +5421,8 @@ msgid "Designer" msgstr "Σχεδιαστής" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Δικαιώματα" @@ -5338,7 +5441,7 @@ msgstr "Συμβάντα" msgid "Triggers" msgstr "Δείκτες" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5397,7 +5500,7 @@ msgid "Create" msgstr "Δημιουργία" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Χωρίς Δικαιώματα" @@ -5718,12 +5821,12 @@ msgstr "Ταξινόμηση ανά κλειδί" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Επιλογές" @@ -5751,8 +5854,8 @@ msgstr "Εμφάνιση δυαδικών περιεχομένων" msgid "Show BLOB contents" msgstr "Εμφάνιση περιεχομένων BLOB" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Απόκρυψη" @@ -5761,10 +5864,6 @@ msgstr "Απόκρυψη" msgid "Browser transformation" msgstr "Μετατροπή περιηγητή" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Γεωμετρία" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "Καλά Γνωστό Κείμενο" @@ -5773,57 +5872,53 @@ msgstr "Καλά Γνωστό Κείμενο" msgid "Well Known Binary" msgstr "Καλά Γνωστό Δυαδικό" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Αντιγραφή" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Η εγγραφή έχει διαγραφεί" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Τερματισμός" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "στην εντολή" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Εμφάνιση εγγραφών" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "συνολικά" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Εμφάνιση διαγράμματος" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Οπτικοποίηση δεδομένων GIS" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Δημιουργία προβολής" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Δεν βρέθηκε η σύνδεση" @@ -6025,7 +6120,7 @@ msgstr "" "Το ποσοστό των σκουπιδιών στο αρχείο καταγραφής δεδομένων πριν συμπιεστεί." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Θύρα" @@ -6381,7 +6476,7 @@ msgstr "Διαθέσιμοι τύποι MIME" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Φιλοξενητής" @@ -6600,7 +6695,7 @@ msgstr "Εξαγωγή περιεχομένων" msgid "Open new phpMyAdmin window" msgstr "Άνοιγμα νέου παραθύρου phpMyAdmin" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "Δεν βρέθηκαν δεδομένα για την οπτικοποίηση GIS." @@ -6612,51 +6707,51 @@ msgstr "αποτέλεσμα SQL" msgid "Generated by" msgstr "Δημιουργήθηκε από" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "Προβολή των περιεχομένων δομής πατώντας στο όνομά της" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "Επεξεργαστείτε τη δομή πατώντας τον σύνδεσμο «Δομή»" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Μετάβαση στη βάση δεδομένων" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Απολεσθέντα δεδομένα για %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Μετάβαση στον πίνακα" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Μόνο η δομή" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Μετάβαση στην προβολή" @@ -6712,7 +6807,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Ονομασία πίνακας" @@ -6733,6 +6828,32 @@ msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Εισαγωγή νομισμάτων (π.χ. €5,00 αντί 5,00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Αυτή η σελίδα δεν περιέχει κανένα πίνακα!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "Κατάσταση συμβατότητας SQL:" @@ -6780,7 +6901,7 @@ msgstr "Προσθήκη προθέματος πίνακα" msgid "Add prefix" msgstr "Προσθήκη προθέματος" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Χωρίς αλλαγή" @@ -6789,7 +6910,7 @@ msgid "Charset" msgstr "Σύνολο χαρακτήρων" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Δυαδικό" @@ -7103,7 +7224,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Όνομα χρήστη" @@ -7121,9 +7242,9 @@ msgid "Variable" msgstr "Μεταβλητή" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Τιμή" @@ -7151,7 +7272,7 @@ msgstr "Οποιοσδήποτε χρήστης" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Χρησιμοποιήστε το πεδίο κειμένου" @@ -7331,7 +7452,7 @@ msgid "Returns" msgstr "Επιστροφές" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Χρόνος" @@ -7476,8 +7597,8 @@ msgstr "Εκτέλεση ρουτίνας" msgid "Routine parameters" msgstr "Παράμετροι ρουτίνας" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Συνάρτηση" @@ -7761,8 +7882,8 @@ msgstr "Άγνωστη γλώσσα: %1$s." msgid "Current Server" msgstr "Τρέχων διακομιστής" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Συγχρονισμός" @@ -7784,7 +7905,7 @@ msgstr "Σύνολο χαρακτήρων" msgid "Engines" msgstr "Μηχανές" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Βάση δεδομένων προέλευσης" @@ -7802,7 +7923,7 @@ msgstr "Απομακρυσμένος διακομιστής" msgid "Difference" msgstr "Διαφορά" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Βάση δεδομένων προορισμού" @@ -7825,11 +7946,11 @@ msgstr "Καθάρισμα" msgid "Columns" msgstr "Στήλες" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Αποθήκευση αυτού του ερωτήματος SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" @@ -7857,7 +7978,7 @@ msgstr "Μόνο ανάγνωση" msgid "Location of the text file" msgstr "Τοποθεσία του αρχείου κειμένου" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "κατάλογος αποθήκευσης αρχείων διακομιστή" @@ -8052,23 +8173,29 @@ msgid "+ Add a value" msgstr "+ Προσθήκη μιας τιμής" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Τελεστής" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Αναζήτηση" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Προσθήκη" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8237,8 +8364,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Δεν βρέθηκαν αρχεία στο συμπιεσμένο αρχείο ZIP!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Σφάλμα στο συμπιεσμένο αρχείο ZIP:" @@ -8262,8 +8389,8 @@ msgstr "Περισσότερες ρυθμίσεις" msgid "Protocol version" msgstr "Έκδοση πρωτοκόλλου" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Χρήστης" @@ -8417,7 +8544,7 @@ msgstr "" "Ο διακομιστής εκτελείται με Suhosin. Αναφερθείτε στην %sτεκμηρίωση%s για " "πιθανά ζητήματα." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Δεν υπάρχουν βάσεις δεδομένων" @@ -8444,7 +8571,7 @@ msgstr "Εμφάνιση/Απόκρυψη αριστερού μενού" msgid "Save position" msgstr "Αποθήκευση θέσης" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Δημιουργία πίνακα" @@ -8786,80 +8913,80 @@ msgstr "Μηχανές αποθήκευσης" msgid "View dump (schema) of databases" msgstr "Εμφάνισης σκαριφήματος (σχήματος) βάσεων δεδομένων" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Περιλαμβάνει όλα τα δικαιώματα εκτός από το GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Επιτρέπει την αλλαγή δομής των υπαρχόντων πινάκων." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Επιτρέπει την αλλαγή και διαγραφή αποθηκευμένων εργασιών." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Επιτρέπει τη δημιουργία νέων βάσεων και πινάκων." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Επιτρέπει τη δημιουργία αποθηκευμένων εργασιών." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Επιτρέπει τη δημιουργία νέων πινάκων." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Επιτρέπει τη δημιουργία προσωρινών πινάκων." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Επιτρέπει τη δημιουργία, διαγραφή και μετονομασία λογαριασμών χρηστών." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Επιτρέπει τη δημιουργία νέων προβολών." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Επιτρέπει τη διαγραφή δεδομένων." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Επιτρέπει τη διαγραφή βάσεων και πινάκων." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Επιτρέπει τη διαγραφή πινάκων." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Επιτρέπει τον ορισμό συμβάντων για τον προγραμματιστή συμβάντων" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Επιτρέπει την εκτέλεση αποθηκευμένων εργασιών." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Επιτρέπει την εισαγωγή και εξαγωγή δεδομένων από και σε αρχεία." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8867,17 +8994,17 @@ msgstr "" "πίνακες δικαιωμάτων." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Επιτρέπει την δημιουργία και την διαγραφή ευρετηρίων." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Επιτρέπει την εισαγωγή και την αντικατάσταση δεδομένων." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Επιτρέπει το κλείδωμα πινάκων για την τρέχουσα λειτουργία." @@ -8911,56 +9038,56 @@ msgstr "" "Περιορίζει τον αριθμό των ταυτόχρονων συνδέσεων που μπορεί να έχει ο χρήστης." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Επιτρέπει την προβολή διεργασιών όλων των χρηστών" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Δεν έχει χρήση σε αυτήν την έκδοση MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Επιτρέπει την επανεκκίνηση του διακομιστή και τον καθαρισμό των προσωρινών " "αρχείων του." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Δίνει το δικαίωμα στον χρήστη να βρει που είναι οι κύριοι / δευτερεύοντες " "διακομιστές." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Απαιτείται για τους δευτερευόντες διακομιστές αναπαραγωγής." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Επιτρέπει την ανάγνωση δεδομένων." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Δίνει πρόσβαση στην πλήρη λίστα των βάσεων δεδομένων." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Επιτρέπει την εκτέλεση ερωτημάτων της μορφής SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Επιτρέπει την διακοπή λειτουργίας του διακομιστή." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8971,43 +9098,43 @@ msgstr "" "όπως ο ορισμός γενικών μεταβλητών ή τη διακοπή λειτουργιών άλλων χρηστών." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Επιτρέπει τη δημιουργία και διαγραφή υποδείξεων" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Επιτρέπει την αλλαγή δεδομένων." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Χωρίς δικαιώματα." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Κανένα" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Δικαιώματα πινάκων" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Σημείωση: Τα ονόματα δικαιωμάτων της MySQL εκφράζονται στα Αγγλικά " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Διαχείριση" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Γενικά δικαιώματα" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Δικαιώματα βάσης δεδομένων" @@ -9028,7 +9155,7 @@ msgstr "Πληροφορίες Σύνδεσης" msgid "Do not change the password" msgstr "Διατήρηση κωδικού πρόσβασης" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Δεν βρέθηκαν χρήστες." @@ -9077,7 +9204,7 @@ msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επι msgid "The privileges were reloaded successfully." msgstr "Τα δικαιώματα επαναφορτώθηκαν επιτυχώς." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Επεξεργασία Δικαιωμάτων" @@ -9085,35 +9212,35 @@ msgstr "Επεξεργασία Δικαιωμάτων" msgid "Revoke" msgstr "Ανάκληση" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Οποιοδήποτε" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Περίληψη χρηστών" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Χορήγηση" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Ανάκληση όλων των ενεργών δικαιώματα από τους χρήστες και διαγραφή τους." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9127,50 +9254,50 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " "τα δικαιώματα%s πριν συνεχίσετε." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Δικαιώματα πεδίων" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη βάση δεδομένων" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Οι χαρακτήρες μπαλαντέρ _ και % πρέπει να γραφούν μπροστά με \\ για να " "χρησιμοποιηθούν" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Αλλαγή Στοιχείων Πρόσβασης / Αντιγραφή Χρήστη" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Δημιουργία νέου χρήστη με τα ίδια δικαιώματα και ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... διατήρηση του παλιού χρήστη." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... ανάκληση των δικαιωμάτων του παλιού χρήστη και διαγραφή του." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9178,47 +9305,47 @@ msgstr "" " ... διαγραφή του παλιού χρήστη από τους πίνακες χρηστών και επαναφόρτωση " "των δικαιωμάτων." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Βάση δεδομένων για χρήστη" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Καμία" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" "Δημιουργία βάσης δεδομένων με το ίδιο όνομα και με πλήρη δικαιώματα χρήσης" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Πλήρη δικαιώματα σε όνομα μπαλαντέρ (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Χρήστες με πρόσβαση στη βάση «%s»" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "γενικός" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "σχετιζόμενος με βάση δεδομένων" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "μπαλαντέρ" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "Ο χρήστης προστέθηκε." @@ -10652,117 +10779,117 @@ msgid_plural "%d minutes" msgstr[0] "%d λεπτά" msgstr[1] "%d λεπτά" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Αδύνατη η σύνδεση με την προέλευση" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Αδύνατη η σύνδεση με τον προορισμό" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Η βάση δεδομένων «%s» δεν υπάρχει." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Συγχρονισμός δομής" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Συγχρονισμός Δεδομένων" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "δεν υφίσταται" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Διαφορά δομής" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Διαφορά Δεδομένων" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Προσθήκη στήλης(ών)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Απομάκρυνση στήλης(ών)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Αλλαγή στήλης(ών)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Απομάκρυνση ευρετηρίου(ων)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Εφαρμογή ευρετηρίου(ων)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Ενημέρωση γραμμής(ών)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Εισαγωγή γραμμής(ών)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" "Θέλετε να διαγράψετε όλες τις προηγούμενες γραμμές από τους πίνακες " "προορισμού;" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Εφαρμογή Επιλεγμένων Αλλαγών" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Συγχρονισμός Βάσεων δεδομένων" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Οι επιλεγμένοι πίνακες προορισμου έχουν συγχρονιστεί με τους πίνακες " "προέλευσης." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" "Η βάση δεδομένων προορισμού συγχρονίστηκε με τη βάση δεδομένων προέλευσης" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Δωθέντα ερωτήματα" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Εισάγετε χειροκίνητα" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Τρέχουσα σύνδεση" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Ρύθμιση: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Υποδοχή" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11116,34 +11243,34 @@ msgstr "" "Το κλειδί πρέπει να περιέχει γράμματα, αριθμούς [em]και[/em] ειδικούς " "χαρακτήρες." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλεγμένο ερώτημα φυλλομετρητή." -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Εμφάνιση ως κώδικά PHP" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Επικυρωμένη SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Ετικέτα" @@ -11152,64 +11279,64 @@ msgstr "Ετικέτα" msgid "Table %1$s has been altered successfully" msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" " Εξαιτίας του μεγέθος του,
αυτό το πεδίο ίσως να μη μπορεί να " "διορθωθεί " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Απομάκρυνση της Αναφοράς Αποθήκης BLOB" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασίας" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Μεταφορά στην αποθήκη BLOB" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Εισαγωγή ως νέα εγγραφή" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Εμφάνιση ερωτήματος εισαγωγής" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "και μετά" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Επιστροφή" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Εισαγωγή νέας εγγραφής" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Επιστροφή σε αυτή τη σελίδα" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Επεξεργασία επόμενης γραμμής" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Συνέχιση εισαγωγής με %s εγγραφές" @@ -11280,43 +11407,39 @@ msgstr "Ο πίνακας %1$s έχει δημιουργηθεί." msgid "View dump (schema) of table" msgstr "Εμφάνιση σκαριφήματος (σχήματος) του πίνακα" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "Εμφάνιση Οπτικοποίησης GIS" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Πλάτος" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Ύψος" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Στήλη ετικέτας" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- Τίποτα --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "Χωρική στήλη" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Χρήση του OpenStreetMaps ως Βασικό Επίπεδο" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Επανασχεδίαση" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Αποθήκευση σε αρχείο" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Ονομασία αρχείου" @@ -11543,23 +11666,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "Όριο μη διακριτού κλειδιού" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Εκτέλεσε ένα «επερώτημα κατά παράδειγμα» (χαρακτήρας μπαλαντέρ «%»)" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Επιλογή πεδίων (τουλάχιστον ένα):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Προσθήκη νέου όρου (σώμα της πρότασης «where» πρότασης):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Εγγραφές ανά σελίδα" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Σειρά εμφάνισης:" @@ -13261,9 +13384,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Δημιουργία Χρήστη" -#~ msgid "Add a new User" -#~ msgstr "Προσθήκη νέου Χρήστη" - #~ msgid "Show table row links on left side" #~ msgstr "Προβολή συνδέσμων γραμμής πίνακα στην αριστερή πλευρά" diff --git a/po/en_GB.po b/po/en_GB.po index 2b1abcb7f0..c85eaa077b 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-04 21:47+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: english-gb \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Show all" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Search" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Search" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Table comments" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Column" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Type" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Comments" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "No" @@ -232,9 +233,9 @@ msgstr "No" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Switch to copied database" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Edit or export relational schema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Table" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -428,19 +429,19 @@ msgstr "Sort" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Ascending" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Descending" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Show" @@ -461,8 +462,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Or" @@ -491,7 +492,7 @@ msgstr "Use Tables" msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Submit Query" @@ -530,8 +531,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match inside table %s" msgstr[1] "%s matches inside table %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Browse" @@ -542,7 +543,7 @@ msgid "Delete the matches for the %s table?" msgstr "Delete the matches for the %s table?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -611,7 +612,7 @@ msgstr "Tracking is active." msgid "Tracking is not active." msgstr "Tracking is not active." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -641,22 +642,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Check All" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Uncheck All" @@ -664,10 +665,10 @@ msgstr "Uncheck All" msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -675,17 +676,17 @@ msgid "Export" msgstr "Export" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Print view" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Empty" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -733,9 +734,9 @@ msgstr "Tracked tables" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Database" @@ -754,15 +755,15 @@ msgstr "Updated" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Action" @@ -815,7 +816,7 @@ msgstr "Enter each value in a separate field." msgid "+ Restart insertion and add a new value" msgstr "+ Restart insertion and add a new value" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Output" @@ -849,6 +850,95 @@ msgstr "The web server does not have permission to save the file %s." msgid "Dump has been saved to file %s." msgstr "Dump has been saved to file %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Values for the column \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Use OpenStreetMaps as Base Layer" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Geometry" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Add routine" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Lines terminated by" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Add a new User" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Add a new User" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Add column" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Geometry" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -896,7 +986,7 @@ msgstr "The bookmark has been deleted." msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" @@ -923,7 +1013,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -947,15 +1037,15 @@ msgstr "Click to select" msgid "Click to unselect" msgstr "Click to unselect" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Do you really want to " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -1017,8 +1107,8 @@ msgstr "The password is empty!" msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Add user" @@ -1036,8 +1126,8 @@ msgid "Close" msgstr "Close" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1073,12 +1163,12 @@ msgid "Other" msgstr "Other" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1165,12 +1255,12 @@ msgid "System swap" msgstr "System swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1259,7 +1349,7 @@ msgstr "Please add at least one variable to the series" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "None" @@ -1645,8 +1735,8 @@ msgstr "Show query box" msgid "No rows selected" msgstr "No rows selected" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Change" @@ -1658,8 +1748,8 @@ msgstr "Query execution time" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Save" @@ -1671,7 +1761,7 @@ msgstr "Hide search criteria" msgid "Show search criteria" msgstr "Show search criteria" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1715,32 +1805,40 @@ msgstr "Add/Delete columns" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Copy" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "Add columns" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Choose column to display" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1748,70 +1846,70 @@ msgstr "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Add an option for column " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Drag to reorder" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Click to sort" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Click to mark/unmark" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Click the drop-down arrow
to toggle column's visibility" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Go to view" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Generate password" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generate" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Change Password" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "More" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1821,27 +1919,27 @@ msgstr "" "upgrading. The newest version is %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", latest stable version:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "up to date" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Done" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Prev" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1849,149 +1947,149 @@ msgid "Next" msgstr "Next" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Today" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "January" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "February" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "March" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "April" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "May" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "June" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "July" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "August" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "September" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "October" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "November" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dec" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Sunday" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Monday" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Tuesday" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Wednesday" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Thursday" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Friday" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -1999,87 +2097,92 @@ msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Tu" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "We" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Th" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Wk" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Hour" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minute" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Second" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Font size" @@ -2190,13 +2293,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Databases" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Error" @@ -2324,7 +2427,7 @@ msgstr "Theme %s not found!" msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Theme" @@ -2497,7 +2600,7 @@ msgstr "Tables" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Data" @@ -2565,7 +2668,7 @@ msgstr "Invalid hostname for server %1$s. Please review your configuration." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2630,99 +2733,99 @@ msgstr "SQL query" msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Failed to connect to SQL validator!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Explain SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Without PHP Code" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Create PHP Code" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Refresh" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Inline edit of this query" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profiling" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Sun" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "Missing parameter:" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2730,7 +2833,7 @@ msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2739,7 +2842,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Previous" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2748,7 +2851,7 @@ msgctxt "Next page" msgid "Next" msgstr "Next" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2756,34 +2859,34 @@ msgctxt "Last page" msgid "End" msgstr "End" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Click to toggle" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Structure" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2791,37 +2894,37 @@ msgstr "Structure" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insert" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operations" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Browse your computer:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Select from the web server upload directory %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "There are no files to upload" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Execute" @@ -2987,7 +3090,7 @@ msgstr "Allow users to customise this value" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Reset" @@ -3255,7 +3358,7 @@ msgid "Character set of the file" msgstr "Character set of the file" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -4911,7 +5014,7 @@ msgstr "Requires SQL Validator to be enabled" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Password" @@ -5209,8 +5312,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privileges" @@ -5229,7 +5332,7 @@ msgstr "Events" msgid "Triggers" msgstr "Triggers" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5288,7 +5391,7 @@ msgid "Create" msgstr "Create" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "No Privileges" @@ -5605,12 +5708,12 @@ msgstr "Sort by key" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Options" @@ -5638,8 +5741,8 @@ msgstr "Show binary contents" msgid "Show BLOB contents" msgstr "Show BLOB contents" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Hide" @@ -5648,10 +5751,6 @@ msgstr "Hide" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Geometry" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "Well Known Text" @@ -5660,57 +5759,53 @@ msgstr "Well Known Text" msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Copy" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "The row has been deleted" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Display chart" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Visualize GIS data" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Create view" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Link not found" @@ -5907,7 +6002,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "The percentage of garbage in a repository file before it is compacted." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Port" @@ -6256,7 +6351,7 @@ msgstr "Display MIME types" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6473,7 +6568,7 @@ msgstr "Export contents" msgid "Open new phpMyAdmin window" msgstr "Open new phpMyAdmin window" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "No data found for GIS visualisation." @@ -6485,52 +6580,52 @@ msgstr "SQL result" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "Edit structure by following the \"Structure\" link" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Go to database" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Missing data for %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Go to table" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Structure only" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Go to view" @@ -6586,7 +6681,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Table name" @@ -6607,6 +6702,32 @@ msgstr "Import percentages as proper decimals (ex. 12.00% to .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Import currencies (ex. $5.00 to 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "This page does not contain any tables!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "SQL compatibility mode:" @@ -6654,7 +6775,7 @@ msgstr "Add table prefix" msgid "Add prefix" msgstr "Add prefix" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "No change" @@ -6663,7 +6784,7 @@ msgid "Charset" msgstr "Charset" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binary" @@ -6972,7 +7093,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "User name" @@ -6990,9 +7111,9 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Value" @@ -7020,7 +7141,7 @@ msgstr "Any user" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Use text field" @@ -7198,7 +7319,7 @@ msgid "Returns" msgstr "Returns" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Time" @@ -7340,8 +7461,8 @@ msgstr "Execute routine" msgid "Routine parameters" msgstr "Routine parameters" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Function" @@ -7624,8 +7745,8 @@ msgstr "Unknown language: %1$s." msgid "Current Server" msgstr "Current server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Synchronise" @@ -7647,7 +7768,7 @@ msgstr "Charsets" msgid "Engines" msgstr "Engines" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Source database" @@ -7665,7 +7786,7 @@ msgstr "Remote server" msgid "Difference" msgstr "Difference" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Target database" @@ -7688,11 +7809,11 @@ msgstr "Clear" msgid "Columns" msgstr "Columns" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -7720,7 +7841,7 @@ msgstr "View only" msgid "Location of the text file" msgstr "Location of the text file" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "web server upload directory" @@ -7914,23 +8035,29 @@ msgid "+ Add a value" msgstr "+ Add a value" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Browse foreign values" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operator" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Search" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Insert" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8095,8 +8222,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "No files found inside ZIP archive!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Error in ZIP archive:" @@ -8120,8 +8247,8 @@ msgstr "More settings" msgid "Protocol version" msgstr "Protocol version" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "User" @@ -8270,7 +8397,7 @@ msgstr "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "No databases" @@ -8297,7 +8424,7 @@ msgstr "Show/Hide left menu" msgid "Save position" msgstr "Save position" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Create table" @@ -8635,97 +8762,97 @@ msgstr "Storage Engines" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Allows creating new tables." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Allows creating new views." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Allows deleting data." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Allows dropping tables." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Allows to set up events for the event scheduler" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." @@ -8754,52 +8881,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Allows viewing processes of all users" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Allows reading data." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8810,43 +8937,43 @@ msgstr "" "killing threads of other users." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping triggers" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "No privileges." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "None" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Note: MySQL privilege names are expressed in English" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administration" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Global privileges" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Database-specific privileges" @@ -8866,7 +8993,7 @@ msgstr "Login Information" msgid "Do not change the password" msgstr "Do not change the password" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "No user found." @@ -8915,7 +9042,7 @@ msgstr "The selected users have been deleted successfully." msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Edit Privileges" @@ -8923,35 +9050,35 @@ msgstr "Edit Privileges" msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Any" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8964,49 +9091,49 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Add privileges on the following database" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Add privileges on the following table" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Create a new user with the same privileges and ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... keep the old one." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... delete the old one from the user tables." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" "... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9014,46 +9141,46 @@ msgstr "" "... delete the old one from the user tables and reload the privileges " "afterwards." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Database for user" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "None" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Create database with same name and grant all privileges" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Grant all privileges on database "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "database-specific" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "User has been added." @@ -10408,112 +10535,112 @@ msgid_plural "%d minutes" msgstr[0] "%d minute" msgstr[1] "%d minutes" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Could not connect to the source" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Could not connect to the target" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database does not exist." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Structure Synchronisation" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Data Synchronisation" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "not present" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Structure Difference" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Data Difference" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Add column(s)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Remove column(s)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Alter column(s)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Remove index(s)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Apply index(s)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Update row(s)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Insert row(s)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Would you like to delete all the previous rows from target tables?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Apply Selected Changes" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Synchronise Databases" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Selected target tables have been synchronised with source tables." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Target database has been synchronised with source database" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Issued queries" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Enter manually" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Current connection" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Configuration: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10852,34 +10979,34 @@ msgstr "Key is too short, it should have at least 8 characters." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Key should contain letters, numbers [em]and[/em] special characters." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Using bookmark \"%s\" as default browse query." -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Showing as PHP code" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Showing SQL query" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Validated SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Label" @@ -10888,61 +11015,61 @@ msgstr "Label" msgid "Table %1$s has been altered successfully" msgstr "Table %1$s has been altered successfully" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "Because of its length,
this column might not be editable" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Remove BLOB Repository Reference" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Upload to BLOB repository" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Insert as new row" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Insert as new row and ignore errors" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Show insert query" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "and then" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Go back to previous page" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Insert another new row" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Go back to this page" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Edit next row" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Continue insertion with %s rows" @@ -11013,43 +11140,39 @@ msgstr "Table %1$s has been created." msgid "View dump (schema) of table" msgstr "View dump (schema) of table" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "Display GIS Visualisation" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Width" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Height" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Label column" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- None --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "Spatial column" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Use OpenStreetMaps as Base Layer" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Redraw" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Save to file" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "File name" @@ -11273,23 +11396,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "Foreign key constraint" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Select columns (at least one):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Add search conditions (body of the \"where\" clause):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Number of rows per page" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Display order:" @@ -12986,9 +13109,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Create User" -#~ msgid "Add a new User" -#~ msgstr "Add a new User" - #~ msgid "Show table row links on left side" #~ msgstr "Show table row links on left side" diff --git a/po/es.po b/po/es.po index ffeddfc144..394a791071 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-16 21:46+0200\n" "Last-Translator: Matías Bellone \n" "Language-Team: spanish \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Mostrar todo" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "principal o su navegador está bloqueando las actualizaciones en ventanas " "múltiples debido a sus parámetros de seguridad." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Buscar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Buscar" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Comentarios de la tabla" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Columna" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Tipo" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Comentarios" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "No" @@ -232,9 +233,9 @@ msgstr "No" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Seleccionar la base de datos copiada" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Editar o exportar esquema relacional" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabla" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -429,19 +430,19 @@ msgstr "Ordenar" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Ascendente" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Descendente" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Mostrar" @@ -462,8 +463,8 @@ msgid "Del" msgstr "Borrar" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "O" @@ -492,7 +493,7 @@ msgstr "Usar tablas" msgid "SQL query on database %s:" msgstr "Consulta a la base de datos %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Ejecutar la consulta" @@ -533,8 +534,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultado en la tabla %s" msgstr[1] "%s resultados en la tabla %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Examinar" @@ -545,7 +546,7 @@ msgid "Delete the matches for the %s table?" msgstr "¿Eliminar las coincidencias para la tabla %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -614,7 +615,7 @@ msgstr "El seguimiento está activo." msgid "Tracking is not active." msgstr "El seguimiento no está activo." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -645,22 +646,22 @@ msgstr "" "%s es el motor de almacenamiento predeterminado en este servidor MySQL." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Para los elementos que están marcados:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Desmarcar todos" @@ -668,10 +669,10 @@ msgstr "Desmarcar todos" msgid "Check tables having overhead" msgstr "Marcar las tablas con residuo a depurar" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -679,17 +680,17 @@ msgid "Export" msgstr "Exportar" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Vista de impresión" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Vaciar" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -737,9 +738,9 @@ msgstr "Tablas con seguimiento" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Base de datos" @@ -758,15 +759,15 @@ msgstr "Actualizado" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Estado actual" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Acción" @@ -819,7 +820,7 @@ msgstr "Insertar cada valor en un campo separado." msgid "+ Restart insertion and add a new value" msgstr "+ Reiniciar inserción e insertar un nuevo valor" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Salida" @@ -854,6 +855,95 @@ msgstr "El servidor web no tiene permiso para guardar el archivo %s." msgid "Dump has been saved to file %s." msgstr "El volcado ha sido guardado al archivo %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Valores para la columna \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Utilizar OpenStreetMaps como capa base" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Geometría" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Agregar rutina" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Líneas terminadas en" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Agregar un nuevo usuario" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Agregar un nuevo usuario" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Añadir columna" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Geometría" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -905,7 +995,7 @@ msgstr "El favorito ha sido borrado." msgid "Showing bookmark" msgstr "Mostrando el favorito" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "El favorito %s fue creado" @@ -933,7 +1023,7 @@ msgstr "" "importación a menos que usted incremente el tiempo de ejecución de php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -957,15 +1047,15 @@ msgstr "Clic para seleccionar" msgid "Click to unselect" msgstr "Clic para deseleccionar" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Realmente desea " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "¡Está a punto de DESTRUIR una base de datos completa!" @@ -1029,8 +1119,8 @@ msgstr "¡La contraseña está vacía!" msgid "The passwords aren't the same!" msgstr "¡Las contraseñas no coinciden!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Agregar usuario" @@ -1048,8 +1138,8 @@ msgid "Close" msgstr "Cerrar" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1085,12 +1175,12 @@ msgid "Other" msgstr "Otro" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1176,12 +1266,12 @@ msgid "System swap" msgstr "Intercambio de sistema" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1271,7 +1361,7 @@ msgstr "Por favor agregue al menos una variable a la serie" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Ninguna" @@ -1655,8 +1745,8 @@ msgstr "Mostrar ventana de consultas SQL" msgid "No rows selected" msgstr "No se seleccionaron filas" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Cambiar" @@ -1668,8 +1758,8 @@ msgstr "Tiempo de ejecución de la consulta" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Guardar" @@ -1681,7 +1771,7 @@ msgstr "Ocultar criterio de búsqueda" msgid "Show search criteria" msgstr "Mostrar criterio de búsqueda" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 msgid "Zoom Search" msgstr "Ampliar búsqueda" @@ -1724,32 +1814,40 @@ msgstr "Seleccionar dos columnas" msgid "Select two different columns" msgstr "Seleccionar dos columnas distintas" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Copiar" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "Agregar columnas" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Seleccione la clave referenciada" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Seleccione la clave foránea" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Por favor seleccione la clave primaria o una clave única" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Elegir la columna a mostrar" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1757,15 +1855,15 @@ msgstr "" "No se guardaron los cambios en la disposición. Serán perdidos si no los " "guardas. ¿Deseas continuar?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Añadir una opción para la columna" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "Presion la tecla de escape para cancelar la edición" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -1773,25 +1871,25 @@ msgstr "" "Editó datos que no fueron guardados. ¿Está seguro que desea abandonar esta " "página sin guardar los datos?" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Arrastrar para reordenar" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Pulsar para ordenar" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Pulsar para marcar/desmarcar" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" "Pulsa la flecha de la lista desplegable
para conmutar la visibilidad " "de la columna" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -1800,34 +1898,34 @@ msgstr "" "la edición de la grilla y los enlaces de copiado, eliminación y edición " "pueden no funcionar luego de guardar." -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Puede editar la mayoría de las columnas pulsando directamente en su " "contenido." -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "Ir al enlace" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Generar contraseña" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generar" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Cambar contraseña" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Más" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1837,258 +1935,263 @@ msgstr "" "la obtenga. La versión más reciente es %s, y existe desde el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", versión estable más reciente:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "actualizada" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Terminado" -#: js/messages.php:344 +#: js/messages.php:356 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:349 +#: js/messages.php:361 msgctxt "Next month" msgid "Next" msgstr "Siguiente" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Hoy" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Enero" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Febrero" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Marzo" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Abril" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mayo" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Junio" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Julio" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Agosto" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Septiembre" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Octubre" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Noviembre" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Diciembre" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dic" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Lunes" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Miércoles" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Jueves" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Viernes" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Ju" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Sem" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Hora" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minuto" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Segundo" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Tamaño de fuente" @@ -2200,13 +2303,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Bases de datos" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Error" @@ -2334,7 +2437,7 @@ msgstr "¡No se halló el tema %s!" msgid "Theme path not found for theme %s!" msgstr "¡No se halló la ruta del tema %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2511,7 +2614,7 @@ msgstr "Tablas" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Datos" @@ -2581,7 +2684,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Servidor" @@ -2646,152 +2749,152 @@ msgstr "consulta SQL" msgid "MySQL said: " msgstr "MySQL ha dicho: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "No pudo conectarse a un validador de SQL!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Omitir la explicación del SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Sin código PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Actualizar" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Saltar la validación de SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Edición en linea de esta consulta" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "En línea" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Perfilando" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%m-%Y a las %H:%M:%S" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos y %s segundos" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "Parámetro faltante:" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 msgctxt "First page" msgid "Begin" msgstr "Comenzar" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 msgctxt "Next page" msgid "Next" msgstr "Siguiente" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Saltar a la base de datos "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Pulse para conmutar" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Estructura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2799,39 +2902,39 @@ msgstr "Estructura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insertar" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operaciones" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Buscar en su ordenador:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Seleccionar directorio en el servidor web para subir los archivos %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 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/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "No hay archivos para subir" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Ejecutar" @@ -3002,7 +3105,7 @@ msgstr "Permitir a los usuarios personalizar este valor" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Reiniciar" @@ -3277,7 +3380,7 @@ msgid "Character set of the file" msgstr "Conjunto de caracteres del archivo" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formato" @@ -4968,7 +5071,7 @@ msgstr "Requiere que el Validador SQL esté habilitado" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Contraseña" @@ -5281,8 +5384,8 @@ msgid "Designer" msgstr "Diseñador" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilegios" @@ -5301,7 +5404,7 @@ msgstr "Eventos" msgid "Triggers" msgstr "Disparadores" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5363,7 +5466,7 @@ msgid "Create" msgstr "Crear" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Sin privilegios" @@ -5683,12 +5786,12 @@ msgstr "Ordenar según la clave" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Opciones" @@ -5718,8 +5821,8 @@ msgstr "Mostrar contenido binario" msgid "Show BLOB contents" msgstr "Mostrar contenido BLOB" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Ocultar" @@ -5728,10 +5831,6 @@ msgstr "Ocultar" msgid "Browser transformation" msgstr "Transformación del navegador" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Geometría" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "Texto muy conocido" @@ -5740,57 +5839,53 @@ msgstr "Texto muy conocido" msgid "Well Known Binary" msgstr "Binario muy conocido" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Copiar" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "La fila se ha borrado" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Matar el proceso" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "en la consulta" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Mostrando registros" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tardó %01.4f seg" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Previsualización para imprimir (documento completo)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Visualizar datos GIS" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Crear vista" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "No se encontró el enlace" @@ -5997,7 +6092,7 @@ msgstr "" "compactado." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Puerto" @@ -6356,7 +6451,7 @@ msgstr "Tipos MIME disponibles" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Servidor" @@ -6573,7 +6668,7 @@ msgstr "Exportar contenidos" msgid "Open new phpMyAdmin window" msgstr "Abrir nueva ventana de phpMyAdmin" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "No se encontraron datos para la visualización GIS." @@ -6585,51 +6680,51 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Generado por" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "MySQL ha devuelto un conjunto de valores vacío (es decir: cero columnas)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "Edite la estructura siguiendo el enlace \"Estructura\"" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Ir a la base de datos" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "Editar configuración de %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Ir a la tabla" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, php-format msgid "Structure of %s" msgstr "Estructura de %s" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Ir a la vista" @@ -6687,7 +6782,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Nombre de la tabla" @@ -6710,6 +6805,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importar monedas (por ejemplo: $5.00 como 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Esta página no contiene ninguna tabla" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "Modalidad SQL compatible:" @@ -6760,7 +6881,7 @@ msgstr "Agregar prefijo a la tabla" msgid "Add prefix" msgstr "Agregar prefijo" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Sin cambios" @@ -6769,7 +6890,7 @@ msgid "Charset" msgstr "Juego de caracteres" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binario" @@ -7080,7 +7201,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Nombre de usuario" @@ -7098,9 +7219,9 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valor" @@ -7128,7 +7249,7 @@ msgstr "Cualquier usuario" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Use el campo de texto" @@ -7302,7 +7423,7 @@ msgid "Returns" msgstr "Retorna" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Tiempo" @@ -7445,8 +7566,8 @@ msgstr "Ejecutar rutina" msgid "Routine parameters" msgstr "Parámetros de rutina" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Función" @@ -7730,8 +7851,8 @@ msgstr "Idioma desconocido: %1$s." msgid "Current Server" msgstr "Servidor actual" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Sincronizar" @@ -7753,7 +7874,7 @@ msgstr "Juegos de caracteres" msgid "Engines" msgstr "Motores" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Base de datos de origen" @@ -7771,7 +7892,7 @@ msgstr "Servidor remoto" msgid "Difference" msgstr "Diferencia" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Base de datos objetivo" @@ -7794,11 +7915,11 @@ msgstr "Limpiar" msgid "Columns" msgstr "Columnas" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Guardar esta consulta en favoritos" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Permitir que todo usuario pueda acceder a este favorito" @@ -7826,7 +7947,7 @@ msgstr "Solamente ver" msgid "Location of the text file" msgstr "Localización del archivo de texto" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "directorio en el servidor web para subir los archivos" @@ -8026,21 +8147,27 @@ msgid "+ Add a value" msgstr "+ Agregar un valor" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Mostrar los valores foráneos" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operador" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 msgid "Table Search" msgstr "Búsqueda de tablas" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Insertar" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8210,8 +8337,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "¡No se hallaron archivos dentro del archivo ZIP!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Error en el archivo ZIP:" @@ -8235,8 +8362,8 @@ msgstr "Más configuraciones" msgid "Protocol version" msgstr "Versión del protocolo" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Usuario" @@ -8391,7 +8518,7 @@ msgstr "" "El servidor está utilizando Suhosin. Por favor refiérase a la %sdocumentación" "%s para posibles ajustes." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "No hay bases de datos" @@ -8416,7 +8543,7 @@ msgstr "Ocultar/mostrar menú izquierdo" msgid "Save position" msgstr "Guardar posición" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Crear tabla" @@ -8763,80 +8890,80 @@ msgstr "Motores de almacenamiento" msgid "View dump (schema) of databases" msgstr "Ver el volcado (schema) de la base de datos" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Incluye todos los privilegios excepto GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar la estructura de las tablas existentes." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar y eliminar las rutinas almacenadas." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Permite crear nuevas bases de datos y tablas." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Permite crear el almacenamiento de rutinas." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Permite la creación de tablas nuevas." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Permite la creación de tablas temporales." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar y cambiar el nombre de las cuentas de usuario." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Permite crear nuevas vistas." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Permite borrar datos." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos y tablas." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Permite eliminar tablas." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Permite organizar los eventos para el gestor de eventos" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Permite ejecutar las rutinas almacenadas." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar y exportar datos de y hacia archivos." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8844,17 +8971,17 @@ msgstr "" "de privilegios." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Permite crear y eliminar índices." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Permite insertar y reemplazar datos." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Permite poner candados a las tablas para el proceso actual." @@ -8886,55 +9013,55 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita el número de conexiones simultáneas que el usuario pueda tener." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Permite ver los procesos de todos los usuarios" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "No tiene efecto en esta versión de MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite volver a cargar los parámetros del servidor y depurar los cachés del " "servidor." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da el derecho al usuario para preguntar dónde están los esclavos / maestros." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Necesario para los esclavos de replicación." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Permite leer los datos." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Concede acceso a la lista completa de bases de datos." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite llevar a cabo las consultas SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Permite desconectar el servidor." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8946,44 +9073,44 @@ msgstr "" "usuarios." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Permite crear y eliminar un disparador" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Permite cambiar los datos." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Sin privilegios." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Ninguno" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Privilegios específicos para la tabla" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "" " Nota: Los nombres de los privilegios de MySQL están expresados en inglés " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administración" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Privilegios globales" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Privilegios específicos para la base de datos" @@ -9006,7 +9133,7 @@ msgstr "Información de la cuenta" msgid "Do not change the password" msgstr "No cambiar la contraseña" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Usuario(s) no encontrado(s)." @@ -9055,7 +9182,7 @@ msgstr "Los usuarios seleccionados fueron borrados exitosamente." msgid "The privileges were reloaded successfully." msgstr "Los privilegios fueron cargados nuevamente de manera exitosa." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Editar los privilegios" @@ -9063,36 +9190,36 @@ msgstr "Editar los privilegios" msgid "Revoke" msgstr "Revocar" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "cualquiera" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Vista global de usuarios" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Conceder" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Eliminar a los usuarios seleccionados" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocar todos los privilegios activos de los usuarios y borrarlos después." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" "Eliminar las bases de datos que tienen los mismos nombres que los usuarios." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9106,52 +9233,52 @@ msgstr "" "manuales en él. En este caso, nuevamente deberá %scargar la página de " "privilegios%s antes de continuar." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "El usuario que seleccionó no se halló en la tabla de privilegios." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Privilegios específicos para la columna" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Añadir privilegios a esta base de datos" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Los comodines _ y % deben acompañarse del caracter de escape \\ para usarlos " "de manera literal" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Añadir privilegios a esta tabla" # Login refers to the user account not the act of logging in -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Cambiar la información de la cuenta / Copiar el usuario" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Crear un nuevo usuario con los mismos privilegios y..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "...mantener el anterior." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "...borrar el viejo de las tablas de usuario." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ...revocar todos los privilegios activos del viejo y eliminarlo después." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9159,48 +9286,48 @@ msgstr "" " ...borrar el viejo de las tablas de usuario y luego volver a cargar los " "privilegios." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Base de datos para el usuario" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Ninguna" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" "Crear base de datos con el mismo nombre y otorgar todos los privilegios" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Otorgar todos los privilegios al nombre que contiene comodín (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Otorgar todos los privilegios para la base de datos "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios con acceso a "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "específico para la base de datos" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "comodín" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "Se agregó el usuario." @@ -10468,7 +10595,6 @@ msgstr "" "que ya no se necesite monitorizar. " #: server_status.php:1533 -#| msgid "Remove chart" msgid "Preset chart" msgstr "Gráfico predefinido" @@ -10554,111 +10680,111 @@ msgid_plural "%d minutes" msgstr[0] "%d minuto" msgstr[1] "%d minutes" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "No pudo conectarse a la fuente" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "No pudo conectarse al objetivo" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "la base de datos '%s' no existe." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Sincronización de estructura" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Sincronización de datos" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "ausente" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Diferencia de estructura" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Diferencia de datos" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Agregar columna(s)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Eliminar columna(s)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Modificar columna(s)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Eliminar índice(s)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Aplicar índice(s)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Actualizar fila(s)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Agregar fila(s)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "¿Desea eliminar todas las filas existentes en las tablas objetivo?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Aplicar los cambios seleccionados" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Sincronizar bases de datos" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Las tablas objetivo seleccionadas fueron sincronizadas con las tablas fuente." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "La base de datos objetivo fue sincronizada con la base de datos fuente" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 msgid "Executed queries" msgstr "Consultas ejecutadas" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Ingresar manualmente" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Conexión actual" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Configuración: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Zócalo" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11008,35 +11134,35 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "La clave debe contener letras, números [em]y[/em] caracteres especiales." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" "Utilizando el favorito \"%s\" como consulta predeterminada para examinar." -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas con los índices de la tabla `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Etiqueta" @@ -11045,62 +11171,62 @@ msgstr "Etiqueta" msgid "Table %1$s has been altered successfully" msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "Debido a su longitud,
esta columna podría no ser editable" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Eliminar referencia al repositorio BLOB" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binario - no editar" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Cargar al repositorio BLOB" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Insertar como una nueva fila" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Agregar como nueva fila e ignorar errores" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Mostrar consulta de inserción" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "y luego" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Volver" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Insertar un nuevo registro" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Volver a esta página" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Editar la siguiente fila" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use la tecla TAB para saltar de un valor a otro, o CTRL+flechas para moverse " "a cualquier parte" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuar inserción con %s filas" @@ -11171,43 +11297,39 @@ msgstr "La Tabla %1$s se creó." msgid "View dump (schema) of table" msgstr "Mostrar volcado (esquema) de la tabla" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "Mostrar visualización GIS" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Anchura" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Altura" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Etiqueta de columna" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- ninguno --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "Columna espacial" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Utilizar OpenStreetMaps como capa base" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Redibujar" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Guardar a un archivo" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Nombre del archivo" @@ -11433,24 +11555,24 @@ msgstr "" msgid "Foreign key constraint" msgstr "Restricción de clave foránea" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Hacer una \"consulta basada en ejemplo\" (comodín: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Seleccionar campos (al menos uno):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" "Insertar las condiciones de búsqueda (cuerpo de la cláusula \"where\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "registros por página" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Mostrar en este orden:" @@ -11876,17 +11998,14 @@ msgstr "" #: po/advisory_rules.php:28 #, 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á configurado a %ds." #: po/advisory_rules.php:30 -#| msgid "Show query box" msgid "Slow query logging" msgstr "Registros de consultas lentas" #: po/advisory_rules.php:31 -#| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." msgstr "El registro de consultas lentas está desactivado." @@ -11903,7 +12022,6 @@ msgid "log_slow_queries is set to 'OFF'" msgstr "«slow_query_log» está definido como 'OFF'" #: po/advisory_rules.php:35 -#| msgid "Clear series" msgid "Release Series" msgstr "Serie de versiones" @@ -11921,12 +12039,10 @@ msgstr "" #: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48 #, php-format -#| msgid "Create version" msgid "Current version: %s" msgstr "Versión actual: %s" #: po/advisory_rules.php:40 po/advisory_rules.php:45 -#| msgid "Version" msgid "Minor Version" msgstr "Versión menor:" @@ -11949,12 +12065,10 @@ msgstr "" "Versión menor a 5.5.8 (la primer versión de 5.5 disponible públicamente)." #: po/advisory_rules.php:47 -#| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Debería actualizar a una versión estable de MySQL 5.5" #: po/advisory_rules.php:50 po/advisory_rules.php:55 -#| msgid "Description" msgid "Distribution" msgstr "Distribución" @@ -11986,8 +12100,7 @@ msgstr "El manual MySQL sólo es preciso para los ejecutables MySQL oficiales." #: po/advisory_rules.php:57 msgid "Percona documentation is at http://www.percona.com/docs/wiki/" msgstr "" -"La documentación de Percona se encuentra en " -"http://www.percona.com/docs/wiki/" +"La documentación de Percona se encuentra en http://www.percona.com/docs/wiki/" #: po/advisory_rules.php:58 msgid "'percona' found in version_comment" @@ -11995,7 +12108,6 @@ msgstr "" "se encontró 'percona' en el comentario de la versión («version_comment»)" #: po/advisory_rules.php:60 -#| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "Arquitectura MySQL" @@ -12020,12 +12132,10 @@ msgid "Available memory on this host: %s" msgstr "Memoria disponible en este equipo: %s" #: po/advisory_rules.php:65 -#| msgid "Query cache" msgid "Query cache disabled" msgstr "Caché de consultas desactivado" #: po/advisory_rules.php:66 -#| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "El caché de consultas no está habilitado." @@ -12059,10 +12169,9 @@ msgid "" "cache, especially if you have multiple slaves." msgstr "" "Está utilizando el caché de consultas MySQL en una base de datos de bastante " -"tráfico. Probablemente quiera considerar utilizar memcached en lugar del caché de consultas de MySQL, " -"especialmente si tiene muchos esclavos." +"tráfico. Probablemente quiera considerar utilizar memcached en lugar del " +"caché de consultas de MySQL, especialmente si tiene muchos esclavos." #: po/advisory_rules.php:73 #, php-format @@ -12093,7 +12202,6 @@ msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "La tasa de aciertos actual del caché de consultas %s%% es menor a 20%%" #: po/advisory_rules.php:80 -#| msgid "Query cache" msgid "Query Cache usage" msgstr "Uso del caché de consultas" @@ -12120,7 +12228,6 @@ msgstr "" "total es %s%%. Debería ser mayor al 80%%" #: po/advisory_rules.php:85 -#| msgid "Query cache" msgid "Query cache fragmentation" msgstr "Fragmentación del caché de consultas" @@ -12147,8 +12254,9 @@ msgstr "" "tiempo). Ajustar cuidadosamente «query_cache_min_res_unit» a un valor menor " "podría ayudar también; por ejemplo, podría definirlo como el tamaño promedio " "de las consultas en el caché utilizando la siguiente fórmula: " -"(«query_cache_size» - «qcache_free_memory») / «qcache_queries_in_cache» " -"((tamaño_caché - memoria_libre_caché) / cantidad_consultas_en_caché)." +"(«query_cache_size» - «qcache_free_memory») / " +"«qcache_queries_in_cache» ((tamaño_caché - memoria_libre_caché) / " +"cantidad_consultas_en_caché)." #: po/advisory_rules.php:88 #, php-format @@ -13223,9 +13331,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Crear usuario" -#~ msgid "Add a new User" -#~ msgstr "Agregar un nuevo usuario" - #~ msgid "Show table row links on left side" #~ msgstr "Mostrar enlaces a la izquierda de filas de tabla" diff --git a/po/et.po b/po/et.po index 396c611373..699dd49ee3 100644 --- a/po/et.po +++ b/po/et.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: estonian \n" @@ -13,13 +13,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Näita kõiki" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "sulgenud või Teie sirvija ei luba akendevahelist suhtlist tänu " "turvaseadetele." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Otsi" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "Otsi" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -136,8 +137,8 @@ msgstr "Tabeli kommentaarid" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -154,8 +155,8 @@ msgstr "Väljade nimed" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -166,7 +167,7 @@ msgstr "Tüüp" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -209,10 +210,10 @@ msgstr "Kommentaarid" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Ei" @@ -231,9 +232,9 @@ msgstr "Ei" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -337,7 +338,7 @@ msgstr "Mine kopeeritud andmebaasile" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -367,15 +368,15 @@ msgstr "Seoseskeem" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabel" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -436,19 +437,19 @@ msgstr "Sorteeri" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Kasvav" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Kahanev" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Näita" @@ -469,8 +470,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "või" @@ -503,7 +504,7 @@ msgstr "Kasuta tabeleid" msgid "SQL query on database %s:" msgstr "SQL-päring andmebaasist %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Lae päring" @@ -543,8 +544,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s vaste(t) tabelis %s" msgstr[1] "%s vaste(t) tabelis %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Vaata" @@ -556,7 +557,7 @@ msgid "Delete the matches for the %s table?" msgstr "Tabeli andmete salvestamine" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -634,7 +635,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -662,22 +663,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s on vaikimisi varundusmootor sellele MySQL serverile." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Valitud:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Märgista kõik" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Puhasta kõik" @@ -685,10 +686,10 @@ msgstr "Puhasta kõik" msgid "Check tables having overhead" msgstr "Kontrolli ülekulusid" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -696,17 +697,17 @@ msgid "Export" msgstr "Ekspordi" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Trükivaade" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Tühjenda" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -760,9 +761,9 @@ msgstr "Kontrolli tabelit" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Andmebaas" @@ -783,15 +784,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Staatus" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Tegevus" @@ -849,7 +850,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -884,6 +885,93 @@ msgstr "Webiserver ei oma õigusi , et salvestada fail %s." msgid "Dump has been saved to file %s." msgstr "Väljavõte salvestati faili %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "Lisa uus väli" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Read lõpetatud" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Lisa uus kasutaja" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Lisa uus kasutaja" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "Lisa %s väli(jad)" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Lisa uus kasutaja" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -931,7 +1019,7 @@ msgstr "Järjehodja kustutati." msgid "Showing bookmark" msgstr "Näitan järjehoidjat" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Järjehoidja %s loodud" @@ -959,7 +1047,7 @@ msgstr "" "pikenda." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -983,15 +1071,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" käsud keelatud." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Kas te tõesti tahate " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Tähelepanu! Te HÄVITATE kogu andmebaasi!" @@ -1061,8 +1149,8 @@ msgstr "Parool on tühi!" msgid "The passwords aren't the same!" msgstr "Paroolid ei ühti!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1086,8 +1174,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1126,12 +1214,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1223,12 +1311,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1332,7 +1420,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Pole" @@ -1746,8 +1834,8 @@ msgstr "SQL-päring" msgid "No rows selected" msgstr "Ridu pole valitud" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Muuda" @@ -1759,8 +1847,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Salvesta" @@ -1774,7 +1862,7 @@ msgstr "SQL-päring" msgid "Show search criteria" msgstr "SQL-päring" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1818,110 +1906,118 @@ msgstr "Lisa/Kustuta välja veerud" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Kopeeri" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Lisa %s väli(jad)" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Vali eelistus võti (referenced key)" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Vali võõrvõti(Foreign Key)" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Palun vali primaarne või unkaalne võti" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Vali väli mida kuvada" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy msgid "Go to link" msgstr "Pole andmebaase" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Genereeri parool" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Genereeri" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Muuda parooli" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Esm" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1929,30 +2025,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy msgid ", latest stable version:" msgstr "Suhte loomine (relation)" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Pole andmebaase" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy msgid "Done" msgstr "Andmed" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Eelmine" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1960,96 +2056,96 @@ msgid "Next" msgstr "Järgmine" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kokku" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binaarne" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mär" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mai" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Veb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mär" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2057,78 +2153,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Det" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Püh" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Esm" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Tei" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ree" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2136,105 +2232,110 @@ msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Lau" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Püh" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Esm" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Tei" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Kol" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Nel" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ree" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lau" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "kasutusel" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundis" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Fondi suurus" @@ -2340,13 +2441,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Andmebaasid" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Viga" @@ -2479,7 +2580,7 @@ msgstr "Ei leia teemat %s!" msgid "Theme path not found for theme %s!" msgstr "Ei leia kataloogi teemale %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2651,7 +2752,7 @@ msgstr "Tabelid" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Andmed" @@ -2724,7 +2825,7 @@ msgstr "Vigane hostname serverile %1$s. Palun kontrolli seadeid." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2789,103 +2890,103 @@ msgstr "SQL-päring" msgid "MySQL said: " msgstr "MySQL ütles: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Seleta SQL-i" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Jäta SQL-i seletamine vahele" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "ilma PHP koodita" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Loo PHP kood" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Uuenda" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Jäta SQL-i kontroll vahele" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Kontrolli SQL-i" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Mootor" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Baiti" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Püh" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y kell %H:%M:%S" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päeva, %s tundi, %s minutit ja %s sekundit" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Lisa uus väli" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2893,7 +2994,7 @@ msgctxt "First page" msgid "Begin" msgstr "Algus" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2902,7 +3003,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Eelmine" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2911,7 +3012,7 @@ msgctxt "Next page" msgid "Next" msgstr "Järgmine" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2919,34 +3020,34 @@ msgctxt "Last page" msgid "End" msgstr "Lõpp" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Hüppa andmebaasile "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "See %s funktionaalsus on mõjutatud tuntud viga, vaata %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktuur" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2954,38 +3055,38 @@ msgstr "Struktuur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Lisa" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Tegevused" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "webiserveri üleslaadimiskataloogi" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Kataloog mille Te üleslaadimiseks sättisite ei ole ligipääsetav" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3163,7 +3264,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Tühista" @@ -3423,7 +3524,7 @@ msgid "Character set of the file" msgstr "Faili tähetabel:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formaat" @@ -5057,7 +5158,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Parool" @@ -5339,8 +5440,8 @@ msgid "Designer" msgstr "Kujundaja" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privileegid" @@ -5360,7 +5461,7 @@ msgstr "Saadetud" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5421,7 +5522,7 @@ msgid "Create" msgstr "Loo" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Ei oma ühtegi privileegi" @@ -5789,12 +5890,12 @@ msgstr "Sorteeri võtme järgi" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Tegevused" @@ -5830,8 +5931,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Peida" @@ -5840,10 +5941,6 @@ msgstr "Peida" msgid "Browser transformation" msgstr "Browseri transformatsioon" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5852,60 +5949,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Kopeeri" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Rida kustutatud" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Tapa" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "päringus" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Näita ridu" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "kokku" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Päring kestis %01.4f sek" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Trükivaade (täispikkade tekstidega)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Näita PDF skeemi" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Suhte loomine (relation)" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Linki ei leitud" @@ -6102,7 +6195,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Sorteeri" @@ -6439,7 +6532,7 @@ msgstr "Olemasolevad MIME-tüübid" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Masin" @@ -6643,7 +6736,7 @@ msgstr "Ekspordi tüüp" msgid "Open new phpMyAdmin window" msgstr "Ava uus phpMyAdmin aken" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6655,51 +6748,51 @@ msgstr "SQL tulemus" msgid "Generated by" msgstr "Genereerija " -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t. null rida)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Pole andmebaase" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 #, fuzzy msgid "Go to table" msgstr "Pole andmebaase" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Ainult struktuur" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6751,7 +6844,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Tabeli nimi" @@ -6772,6 +6865,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6825,7 +6942,7 @@ msgstr "" msgid "Add prefix" msgstr "Lisa uus väli" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Ei muudetud" @@ -6834,7 +6951,7 @@ msgid "Charset" msgstr "Tähetabel" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binaarne" @@ -7139,7 +7256,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Kasutajanimi" @@ -7159,9 +7276,9 @@ msgid "Variable" msgstr "Muutuja" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Väärtus" @@ -7187,7 +7304,7 @@ msgstr "Kõik kasutajad" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Kasutage tekstivälja" @@ -7377,7 +7494,7 @@ msgid "Returns" msgstr "Tabeli seaded" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Aeg" @@ -7532,8 +7649,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funktsioon" @@ -7857,8 +7974,8 @@ msgstr "Tundmatu keel: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7880,7 +7997,7 @@ msgstr "Tähetabelid" msgid "Engines" msgstr "Mootor" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Otsi andmebaasist" @@ -7899,7 +8016,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Otsi andmebaasist" @@ -7926,11 +8043,11 @@ msgstr "Kalender" msgid "Columns" msgstr "Väljade nimed" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Lisa see SQL päring järjehoidjasse" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale" @@ -7958,7 +8075,7 @@ msgstr "Vaata ainult" msgid "Location of the text file" msgstr "tekstifaili asukoht" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "webiserveri üleslaadimiskataloogi" @@ -8166,23 +8283,29 @@ msgid "+ Add a value" msgstr "Lisa uus kasutaja" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Vaata väliseid väärtuseid" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operaator" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Otsi" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Lisa" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8386,8 +8509,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Ei leidnud ühtegi faili ZIP arhiivist!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Viga ZIP arhiivis:" @@ -8415,8 +8538,8 @@ msgstr "Peamised seoste võimalused" msgid "Protocol version" msgstr "Protokolli versioon" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Kasutaja" @@ -8555,7 +8678,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Pole andmebaase" @@ -8584,7 +8707,7 @@ msgstr "Näita/Peida vasak menüü" msgid "Save position" msgstr "Salvesta positsioon" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Loo tabel" @@ -8950,80 +9073,80 @@ msgstr "Varundusmootorid" msgid "View dump (schema) of databases" msgstr "Näita andmebaaside sisu (skeemi)" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Sisaldab kõiki privileege peale GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Lubab muuta olemasolevate tabelite struktuure." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Lubabu salvestatud rutiinide muutmise ja kustutamise." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Lubab luua uusi andmebaase ja tabeleid." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Lubab salvestatud rutiinide loomise." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Lubab luua uusi tabeleid." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Lubab luua ajutisi tabeleid." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Lubab kasutajakontode loomise, kustutamise ja muutmise." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Lubab uute vaadete loomist." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Lubab kustutada infot." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Lubab kustuada andmebaase ja tabeleid." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Lubab kustutada tabeleid.." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Lubab salvestatud rutiinide käivituse." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Lubab andmete eksportimist faili ja andmete importimist failidest." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -9031,17 +9154,17 @@ msgstr "" "taaskäivitamata." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Lubab luua ja kustutada indekseid." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Lubab lisada ja muuta infot." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Lubab lukustada tabeleid aktiivse päringu tarbeks." @@ -9070,52 +9193,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Piirab ühenduste arvu mida kasutajal võib korraga olla." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Ei oma antud MySQL versioonis mingit effekti." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Lubab taaslaadida serveri seadmeid ja puhastada serveri cachet." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Lubab kasutajal küsida kus on slaved/masterid." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Vajalik slavede paljundamiseks." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Lubab lugeda infot." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Annab ligipääsu kogu andmebaasilistingule." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Lubab SHOW CREATE VIEW päringute käivitamise." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Lubab serverit maha lasta." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9126,46 +9249,46 @@ msgstr "" "seadmine või teiste kasutajate ühenduste tapmine." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Lubab luua ja kustutada indekseid." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Lubab muuta infot." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Mitte ühtegi privileegi." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Pole" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Tabel-spetsiifilised privileegid" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Märkus: MySQL privileegide nimed on ingliskeelsed " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administreerimine" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globaalsed privileegid" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Andmebaas-spetsiifilised privileegid" @@ -9185,7 +9308,7 @@ msgstr "Logimise informatsioon" msgid "Do not change the password" msgstr "Ärge muutke parooli" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9236,7 +9359,7 @@ msgstr "Valitud kasutajad on õnnestunult kustutatud." msgid "The privileges were reloaded successfully." msgstr "Privileegid taaslaeti edukalt." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Muuda privileege" @@ -9244,35 +9367,35 @@ msgstr "Muuda privileege" msgid "Revoke" msgstr "Võta tagasi" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "kõik" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Kasutaja ülevaade" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Õigused" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Eemalda valitud kasutajad" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Eemalda kõik aktiivsed privileegid kasutajatelt ning kustuta nad pärast seda." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9285,99 +9408,99 @@ msgstr "" "juhul kui olete käsitsi muudatusi teinud. Sellisel juhul peaksite te " "privileegid %staaslaadima%s enne jätkamist." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Valitud kasutajat ei leitud privileegide tabelist." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Väli-spetsiifilised privileegid" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Lisa privileegid antud andmebaasile" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Metamärgid _ ja % peaksid olema varjestatud märgiga \\, kui soovite neid " "sisestada" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Lisa privileegid antud tabelile" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Vaheta logimisinformatsiooni / Kopeeri kasutaja" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Loo uus kasutaja samade privileegidega ja ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... hoia vana alles." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... kustuta vana kasutajate tabelist." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... kanna kõik aktiivsed privileegid üle vanast ja kustuta see pärast." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... kustuta vana kasutajate tabelist ja taaslae privileegid pärast seda." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Andmebaas kasutajale" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Pole" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Loo sama nimega andmebaas ja anna kõik õigused" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Anna kõik õigused Metanimele (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Kontrolli privileege andmebaasile "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Kasutajad kellel on ligipääs "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globaalne" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "andmebaasipõhine" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "metamärk" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10666,115 +10789,115 @@ msgid_plural "%d minutes" msgstr[0] "kasutusel" msgstr[1] "kasutusel" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 #, fuzzy msgid "Structure Difference" msgstr "Vaate (view) struktuur" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 #, fuzzy msgid "Data Difference" msgstr "Vaate (view) struktuur" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL-päring" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "maks. parallel ühendusi" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11071,36 +11194,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Näitan PHP koodina" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Kontrolli SQL-i" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleemid tabeli `%s` indeksitega" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Nimetus" @@ -11109,65 +11232,65 @@ msgstr "Nimetus" msgid "Table %1$s has been altered successfully" msgstr "Valitud kasutajad on õnnestunult kustutatud." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Oma suuruse tõttu
võib see väli olla mittemuudetav " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binaarne - ärge muutke" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Lisa uue reana" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 #, fuzzy msgid "Show insert query" msgstr "Näitan SQL päringut" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "ja siis" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Mine eelmisele lehele tagasi" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Lisa järgmine uus rida" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Mine tagasi sellele lehele" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Muuda järgmist rida" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Kasutage TAB klahvi, et liikuda ühelt väärtuselt teisele või CTRL+nool, et " "liikuda noole suunas" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -11253,49 +11376,45 @@ msgstr "Tabel %s kustutatud" msgid "View dump (schema) of table" msgstr "Vaata tabeli väljundit (skeemi)" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Lisa/Kustuta välja veerud" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Kokku" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Salvesta failina" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11529,25 +11648,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Tee \"päring näite järgi\" (lühend: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Vali väljad (vähemalt üks):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Lisa otsinguparameetrid (\"WHERE\" lause sisu):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Ridade arv lehel" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Näitamise järjekord:" @@ -13167,9 +13286,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Suhte loomine (relation)" -#~ msgid "Add a new User" -#~ msgstr "Lisa uus kasutaja" - #, fuzzy #~ msgid "Delete the matches for the " #~ msgstr "Tabeli andmete salvestamine" diff --git a/po/eu.po b/po/eu.po index b876a7dd6e..adb31d0d00 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-07-21 14:53+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: basque \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Dena erakutsi" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "parent window or your browser is blocking cross-window updates of your " "security settings" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Bilatu" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Bilatu" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -137,8 +138,8 @@ msgstr "Taularen iruzkinak" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -155,8 +156,8 @@ msgstr "Zutabe izenak" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Mota" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Iruzkinak" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Ez" @@ -232,9 +233,9 @@ msgstr "Ez" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -341,7 +342,7 @@ msgstr "Kopiatutako taulara aldatu" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -371,15 +372,15 @@ msgstr "Erlazio-eskema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Taula" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -440,19 +441,19 @@ msgstr "Ordenatu" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Goranzko" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Beherantz" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Erakutsi" @@ -473,8 +474,8 @@ msgid "Del" msgstr "Ezabatu" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Edo" @@ -507,7 +508,7 @@ msgstr "Taulak erabili" msgid "SQL query on database %s:" msgstr "SQL-kontsulta %s datu-basean:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Kontsulta bidali" @@ -547,8 +548,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s emaitza(k) %s taulan" msgstr[1] "%s emaitza(k) %s taulan" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Arakatu" @@ -560,7 +561,7 @@ msgid "Delete the matches for the %s table?" msgstr "Taula honen datuak irauli" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -638,7 +639,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -667,22 +668,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Ikurdunak:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Guztiak egiaztatu" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Desautatu dena" @@ -690,10 +691,10 @@ msgstr "Desautatu dena" msgid "Check tables having overhead" msgstr "Arazteko hondakinak egiaztatu" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -701,17 +702,17 @@ msgid "Export" msgstr "Esportatu" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Hutsik" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -763,9 +764,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Datu-basea" @@ -785,15 +786,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Egoera" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Ekintza" @@ -850,7 +851,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -885,6 +886,93 @@ msgstr "Web-zerbitzariak dio %s fitxategia gordetzeko baimenik ez duzula." msgid "Dump has been saved to file %s." msgstr "Iraulketa %s fitxategian gorde da." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a point" +msgstr "Gehitu %s zutabe" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Honetan bukatutako lerroak: " + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Erabiltzaile berria gehitu" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Erabiltzaile berria gehitu" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "Gehitu %s zutabe" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Erabiltzaile berria gehitu" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -925,7 +1013,7 @@ msgstr "Gordetako kontsulta ezabatu da." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -948,7 +1036,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -974,15 +1062,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" sententziak ezgaituta daude." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Benetan nahi al duzu " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1048,8 +1136,8 @@ msgstr "Pasahitza hutsik dago!" msgid "The passwords aren't the same!" msgstr "Pasahitzek ez dute bat egiten!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1073,8 +1161,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1113,12 +1201,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1205,12 +1293,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1309,7 +1397,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Batez" @@ -1718,8 +1806,8 @@ msgstr "SQL kontsulta" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Aldatu" @@ -1731,8 +1819,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Gorde" @@ -1746,7 +1834,7 @@ msgstr "SQL kontsulta" msgid "Show search criteria" msgstr "SQL kontsulta" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1790,110 +1878,118 @@ msgstr "Gehitu/ezabatu irizpide-zutabea" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ezikusi" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Gehitu %s zutabe" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Aukeratu erakutsi beharreko eremua" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Pasahitza aldatu" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 #, fuzzy msgid "Generate" msgstr "Egilea:" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Pasahitza aldatu" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Astel" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1901,30 +1997,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Datu-baserik ez" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "Batez" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Aurrekoa" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1932,96 +2028,96 @@ msgid "Next" msgstr "Hurrengoa" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gutira" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarioa " -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Api" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mai" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Eka" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Uzt" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Abu" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Urr" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2029,78 +2125,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Abe" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Iga" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Astel" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Astea" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Osti" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2108,105 +2204,110 @@ msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Lar" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Iga" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Astel" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Astea" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Astez" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Oste" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Osti" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lar" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lanean" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "segunduko" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2311,13 +2412,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Datu-baseak" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Errorea" @@ -2443,7 +2544,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2611,7 +2712,7 @@ msgstr "Taulak" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Datuak" @@ -2679,7 +2780,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Zerbitzaria" @@ -2744,99 +2845,99 @@ msgstr "SQL kontsulta" msgid "MySQL said: " msgstr "MySQL-ek zera dio: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL-a azaldu" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "SQL-ren azalpena saltatu" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP Koderik gabe" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP kodea sortu" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL-ren balidapena saltatu" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL balidatu" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Byte" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Iga" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y-%m-%d, %H:%M:%S" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s egun, %s ordu, %s minutu eta %s segundu" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2844,7 +2945,7 @@ msgctxt "First page" msgid "Begin" msgstr "Hasi" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2853,7 +2954,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Aurrekoa" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2862,7 +2963,7 @@ msgctxt "Next page" msgid "Next" msgstr "Hurrengoa" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2870,34 +2971,34 @@ msgctxt "Last page" msgid "End" msgstr "Amaiera" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr ""%s" datu-basera joan." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Egitura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2905,38 +3006,38 @@ msgstr "Egitura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Txertatu" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Eragiketak" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3115,7 +3216,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Reset egin" @@ -3372,7 +3473,7 @@ msgid "Character set of the file" msgstr "Fitxategiaren karaktereen kodeketa:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formatoa" @@ -4978,7 +5079,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Pasahitza" @@ -5260,8 +5361,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Pribilegioak" @@ -5280,7 +5381,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5339,7 +5440,7 @@ msgid "Create" msgstr "Sortu" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Pribilegiorik gabe" @@ -5685,12 +5786,12 @@ msgstr "Gakoaren arabera ordenatu" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Eragiketak" @@ -5726,8 +5827,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5736,10 +5837,6 @@ msgstr "" msgid "Browser transformation" msgstr "Nabigatzailearen eraldaketa" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5748,60 +5845,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Hil" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "kontsultan" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Errenkadak erakusten" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "guztira" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Inprimatzeko ikuspena (testu osoak)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF eskema erakutsi" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Zerbitzariaren bertsioa" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Esteka aurkitugabea" @@ -5983,7 +6076,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Ordenatu" @@ -6312,7 +6405,7 @@ msgstr "MIME-mota erabilgarriak" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Zerbitzaria" @@ -6514,7 +6607,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6526,50 +6619,50 @@ msgstr "SQL emaitza" msgid "Generated by" msgstr "Egilea:" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Datu-baserik ez" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Egitura soilik" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6620,7 +6713,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6641,6 +6734,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6690,7 +6807,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Aldaketarik ez" @@ -6699,7 +6816,7 @@ msgid "Charset" msgstr "Karaktere-jokoa" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binarioa " @@ -7010,7 +7127,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Erabiltzaile-izena" @@ -7028,9 +7145,9 @@ msgid "Variable" msgstr "Aldagaia" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "balioa" @@ -7057,7 +7174,7 @@ msgstr "Edozein erabiltzaile" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Testu-eremua erabili" @@ -7247,7 +7364,7 @@ msgid "Returns" msgstr "Taularen hobespenak" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Denbora" @@ -7397,8 +7514,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funtzioak" @@ -7716,8 +7833,8 @@ msgstr "" msgid "Current Server" msgstr "Zerbitzaria" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7740,7 +7857,7 @@ msgstr "Karaktere-multzoa" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Datu-basean bilatu" @@ -7759,7 +7876,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Datu-basean bilatu" @@ -7785,11 +7902,11 @@ msgstr "" msgid "Columns" msgstr "Zutabe izenak" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri " @@ -7817,7 +7934,7 @@ msgstr "Soilik ikusi" msgid "Location of the text file" msgstr "Testu-fitxategiaren kokapena" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" @@ -8026,24 +8143,30 @@ msgid "+ Add a value" msgstr "Erabiltzaile berria gehitu" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 #, fuzzy msgid "Operator" msgstr "Eragiketak" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Bilatu" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Txertatu" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8218,8 +8341,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8247,8 +8370,8 @@ msgstr "Erlazioen ezaaugarri orokorrak" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Erabiltzailea" @@ -8384,7 +8507,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Datu-baserik ez" @@ -8412,7 +8535,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "Orri berri bat sortu" @@ -8778,85 +8901,85 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Ikusi datu-baseen iraulketa (eskema)" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Pribilegio guztiak, GRANT(baimendu) izanezik, dauzka." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Uneko taulen egiturak aldatzea baimentzen du." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Indizeak sortu eta ezabatzea baimentzen du." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Datu-base eta taula berriak sortzea baimentzen du." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 #, fuzzy msgid "Allows creating stored routines." msgstr "Taula berriak sortzea baimentzen du." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Taula berriak sortzea baimentzen du." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Aldi baterako taulak sortzea baimentzen du." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 #, fuzzy msgid "Allows creating new views." msgstr "Taula berriak sortzea baimentzen du." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Datuak ezabatzea baimentzen du." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Datu-base eta taulak ezabatzea baimentzen du." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Taulak ezabatzea baimentzen du." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" "Datuak fitxategietatik inportatzea eta fitxategietara esportatzea baimentzen " "du." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8864,17 +8987,17 @@ msgstr "" "berkargatu gabe." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Indizeak sortu eta ezabatzea baimentzen du." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Datuak txertatu eta ordezkatzea baimentzen du." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Momentuko harian taulak blokeatzea baimentzen du." @@ -8908,54 +9031,54 @@ msgstr "" "Erabiltzaileak orduko ireki dezakeen konexio berrien kopurua mugatzen du." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Ez du eraginik MySQL bertsio honetan." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Zerbitzariaren hobespenak berkargatu eta beraren cacheak hustea baimentzen " "du." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Erabiltzailea baimentzen du morroiak / nagusiak non dauden galdetzeko." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Erreplikazio morroientzat beharrezkoa." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Datuak irakurtzea baimentzen du." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Datu-base zenrrenda osorako sarrera ahalbidetzen du." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Zerbitzaria amatatzea baimentzen du." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8966,46 +9089,46 @@ msgstr "" "bezalako kudeaketa-eragiketa gehienentzat beharrezkoa da." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Indizeak sortu eta ezabatzea baimentzen du." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Datuak aldatzea baimentzen du." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Pribilegiorik ez." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Batez" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Taularen pribilegio espezifikoak" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Oharra: MySQL-ren pribilegioen izenak ingelesez adierazita daude" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Kudeaketa" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Pribilegio orokorrak" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Datu-basearen pribilegio espezifikoak" @@ -9025,7 +9148,7 @@ msgstr "Saioa hasteko informazioa" msgid "Do not change the password" msgstr "Pasahitza ez aldatu" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9076,7 +9199,7 @@ msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." msgid "The privileges were reloaded successfully." msgstr "Pribilegioak arrakastaz berkargatu dira." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Editatu Pribilegioak" @@ -9084,35 +9207,35 @@ msgstr "Editatu Pribilegioak" msgid "Revoke" msgstr "Ezeztatu" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Edozein" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Erabiltzailearen info orokorra" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Baimendu" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Hautatutako erabiltzaileak baztertu" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Erabiltzaileen pribilegio aktibo guztiak ezeztatu eta ondoren denak ezabatu." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9126,49 +9249,49 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Zutabearen pribilegio espezifikoak" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Pribilegioak gehitu datu-base honetan" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Pribilegioak gehitu taula honetan " -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Aldatu saioa hasteko informazioa / Erabiltzailea kopiatu" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Erabiltzaile berri bat sortu pribilegio berdinekin eta ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... mantendu aurrekoa." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... zaharra ezabatu erabiltzaileen tauletatik." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... zaharraren pribilegio aktibo guztiak errebokatu eta ondoren ezabatu." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9176,48 +9299,48 @@ msgstr "" " ... zaharra ezabatu erabiltzaileen tauletatik eta ondoren berkargatu " "pribilegioak." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Batez" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" datu-basearen pribilegioak egiaztatu." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "orokorra" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "Datubasearentzat espezifikoa" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "komodina" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy msgid "User has been added." msgstr "%s eremua ezabatu da" @@ -10396,113 +10519,113 @@ msgid_plural "%d minutes" msgstr[0] "lanean" msgstr[1] "lanean" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Aplikatu aukeratutako aldaketak" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL kontsulta" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Konexioak" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10798,36 +10921,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL balidatu" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Etiketa" @@ -10836,62 +10959,62 @@ msgstr "Etiketa" msgid "Table %1$s has been altered successfully" msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Bere luzeragatik,
eremu hau ez da editagarria " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binarioa - ez editatu! " -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Txertatu errenkada berri batean" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "eta orduan" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Itzuli" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Erregistro berria gehitu" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Egin atzera orri honetara" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Editatu hurrengo lerroa" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10975,49 +11098,45 @@ msgstr "%s taula ezabatu egin da" msgid "View dump (schema) of table" msgstr "Ikusi taularen iraulketa (eskema)" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Gehitu/ezabatu irizpide-zutabea" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Gutira" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Bidali" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11252,25 +11371,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Eremuak hautatu (bat gutxienez):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Bilatzeko baldintzak txertatu (\"where\" klausularen gorputza):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Errenkada kopurua orriko" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Ordena erakutsi:" @@ -12806,9 +12925,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Zerbitzariaren bertsioa" -#~ msgid "Add a new User" -#~ msgstr "Erabiltzaile berria gehitu" - #~ msgid "Delete the matches for the " #~ msgstr "Taula honen datuak irauli" diff --git a/po/fa.po b/po/fa.po index fbf44146a8..2a731792d0 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-05-19 03:54+0200\n" "Last-Translator: \n" "Language-Team: persian \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "نمايش همه" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -35,19 +35,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "جستجو" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -65,14 +66,14 @@ msgstr "جستجو" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -136,8 +137,8 @@ msgstr "توضيحات جدول" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -152,8 +153,8 @@ msgstr "ستون" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -164,7 +165,7 @@ msgstr "نوع" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -207,10 +208,10 @@ msgstr "توضيحات" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "خير" @@ -229,9 +230,9 @@ msgstr "خير" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -332,7 +333,7 @@ msgstr "تعویض به پایگاه داده ی کپی شده" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "ویرایش یا صدور نمای رابطه ای" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "جدول" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -427,19 +428,19 @@ msgstr "ترتيب" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "صعودي" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "نزولي" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "نمايش" @@ -460,8 +461,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "يا" @@ -492,7 +493,7 @@ msgstr "بكارگيري جدولها" msgid "SQL query on database %s:" msgstr "پرس و جوي SQL از پايگاه داده %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Submit Query" @@ -530,8 +531,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s عبارت همتا در جدول %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "مشاهده" @@ -542,7 +543,7 @@ msgid "Delete the matches for the %s table?" msgstr "داده های همتا در جدول %s حذف شوند؟" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -614,7 +615,7 @@ msgstr "پیگردی فعال می باشد." msgid "Tracking is not active." msgstr "پیگردی فعال نمی باشد." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -644,22 +645,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "موارد انتخاب‌شده :" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "انتخاب همه" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "عدم انتخاب همه" @@ -667,10 +668,10 @@ msgstr "عدم انتخاب همه" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -678,17 +679,17 @@ msgid "Export" msgstr "صدور" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "نماي چاپ" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "خالي كردن" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -740,9 +741,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "پايگاه داده" @@ -761,15 +762,15 @@ msgstr "به روز شده" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "عمل" @@ -826,7 +827,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -859,6 +860,91 @@ msgstr "" msgid "Dump has been saved to file %s." msgstr "" +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +msgid "Add a point" +msgstr "افزودن ستون جديد" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "خطوط منتهي به" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "افزودن يك كاربر جديد" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "افزودن يك كاربر جديد" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +msgid "Add a polygon" +msgstr "افزودن ستون جديد" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "افزودن يك كاربر جديد" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -900,7 +986,7 @@ msgstr "سطر حذف گرديد ." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -923,7 +1009,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -947,15 +1033,15 @@ msgstr "برای انتخاب کلیک کنبد" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "دستور \"DROP DATABASE\" غيرفعال مي‌باشد." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "آيا مطمئن هستيد " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1019,8 +1105,8 @@ msgstr "اسم رمز خالي است!" msgid "The passwords aren't the same!" msgstr "اسم رمزها مانند هم نمي‌باشد!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1042,8 +1128,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1082,12 +1168,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1175,12 +1261,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "مگا بايت" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "كيلوبايت" @@ -1278,7 +1364,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "خير" @@ -1681,8 +1767,8 @@ msgstr "پرس و جوي SQL" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "تغيير" @@ -1694,8 +1780,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "ذخيره" @@ -1709,7 +1795,7 @@ msgstr "پرس و جوي SQL" msgid "Show search criteria" msgstr "پرس و جوي SQL" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1753,111 +1839,119 @@ msgstr "اضافه/حذف ستون ها" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy msgid "Add columns" msgstr "افزودن ستون جديد" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "ستون را براي نمايش انتخاب نماييد" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "برای انتخاب کلیک کنبد" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "تغيير اسم رمز" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 #, fuzzy msgid "Generate" msgstr "توليد‌شده توسط" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "تغيير اسم رمز" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "دوشنبه" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1865,32 +1959,32 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "نسخه قبلی" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "No databases" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "خير" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "قبل" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1898,96 +1992,96 @@ msgid "Next" msgstr "بعد" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "جمع كل" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "دودويي" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "مارس" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "آوريل" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "مي" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ژوئن" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "جولاي" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "آگوست" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "اكتبر" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1995,78 +2089,78 @@ msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "دسامبر" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "يكشنبه" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "دوشنبه" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "سه‌شنبه" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "چهارشنبه" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "پنجشنبه" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "جمعه" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2074,101 +2168,106 @@ msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "شنبه" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "يكشنبه" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "دوشنبه" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "سه‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "چهارشنبه" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "پنج‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "جمعه" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "شنبه" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "هفته" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "ساعت" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "دقیقه" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "ثانیه" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "اندازه حروف" @@ -2273,13 +2372,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "پايگاههاي داده" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "خطا" @@ -2403,7 +2502,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2568,7 +2667,7 @@ msgstr "جدولها" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "داده" @@ -2634,7 +2733,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "سرور" @@ -2699,103 +2798,103 @@ msgstr "پرس و جوي SQL" msgid "MySQL said: " msgstr "پيغام MySQL :" -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "شرح دادن SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 #, fuzzy msgid "Skip Explain SQL" msgstr "شرح دادن SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "بدون كد PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "ساخت كد PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 #, fuzzy msgid "Skip Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "معتبرسازي SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "موتور" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "بايت" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "گيگا بايت" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "ترابايت" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "پتا بايت" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "اگزا بايت" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "يكشنبه" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ساعت %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s days, %s hours, %s minutes and %s seconds" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2803,7 +2902,7 @@ msgctxt "First page" msgid "Begin" msgstr "شروع" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2812,7 +2911,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "قبل" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2821,7 +2920,7 @@ msgctxt "Next page" msgid "Next" msgstr "بعد" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2829,36 +2928,36 @@ msgctxt "Last page" msgid "End" msgstr "انتها" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "برای انتخاب کلیک کنبد" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "ساختار" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2866,37 +2965,37 @@ msgstr "ساختار" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "درج" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "عمليات" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "پوشه‌اي را كه براي انتقال فايل انتخاب كرده‌ايد قابل دسترسي نيست." -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3073,7 +3172,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Reset" @@ -3329,7 +3428,7 @@ msgid "Character set of the file" msgstr "مجموعه كاراكترهاي پرونده:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "قالب" @@ -4911,7 +5010,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "اسم رمز" @@ -5194,8 +5293,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "امتيازات" @@ -5214,7 +5313,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5273,7 +5372,7 @@ msgid "Create" msgstr "ساختن" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 #, fuzzy msgid "No Privileges" msgstr "امتيازات" @@ -5611,12 +5710,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "عمليات" @@ -5648,8 +5747,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5658,10 +5757,6 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5670,60 +5765,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "سطر حذف گرديد ." -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "جمع كل" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "نمايش توضيحات ستون" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "نسخه سرور" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "پيوند پيدا نشد" @@ -5904,7 +5995,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "ترتيب" @@ -6227,7 +6318,7 @@ msgstr "نمايش خصوصيات" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "ميزبان" @@ -6427,7 +6518,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6439,50 +6530,50 @@ msgstr "نتيجه SQL" msgid "Generated by" msgstr "توليد‌شده توسط" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "No databases" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "فقط ساختار" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6533,7 +6624,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6554,6 +6645,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6603,7 +6718,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "" @@ -6612,7 +6727,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "دودويي" @@ -6918,7 +7033,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "نام كاربر" @@ -6936,9 +7051,9 @@ msgid "Variable" msgstr "متغییر" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "مقدار" @@ -6965,7 +7080,7 @@ msgstr "همه كاربران" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "" @@ -7151,7 +7266,7 @@ msgid "Returns" msgstr "آمار پايگاههاي داده" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "" @@ -7297,8 +7412,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "تابع" @@ -7603,8 +7718,8 @@ msgstr "زبانِ ناشناس : %1$s." msgid "Current Server" msgstr "سرور" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7628,7 +7743,7 @@ msgstr "" msgid "Engines" msgstr "موتور" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "جستجو در پايگاه‌داده" @@ -7647,7 +7762,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "جستجو در پايگاه‌داده" @@ -7674,11 +7789,11 @@ msgstr "تقویم" msgid "Columns" msgstr "نام ستونها" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7706,7 +7821,7 @@ msgstr "" msgid "Location of the text file" msgstr "محل پرونده متني" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "" @@ -7895,24 +8010,30 @@ msgid "+ Add a value" msgstr "افزودن يك كاربر جديد" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 #, fuzzy msgid "Operator" msgstr "عمليات" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "جستجو" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "درج" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8034,8 +8155,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8059,8 +8180,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "كاربر" @@ -8191,7 +8312,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "No databases" @@ -8219,7 +8340,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "ساخت يك صفحه جديد" @@ -8577,96 +8698,96 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "نمايش الگوي پايگاه داده" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8693,52 +8814,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8746,46 +8867,46 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 #, fuzzy msgid "No privileges." msgstr "امتيازات" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "خير" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "نكته : نام امتيازات MySQL به زبان انگليسي بيان مي‌شود ." -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "مدیریت" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "" @@ -8805,7 +8926,7 @@ msgstr "اطلاعات ورود" msgid "Do not change the password" msgstr "عدم تغيير اسم رمز" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -8856,7 +8977,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "ويرايش امتيازات" @@ -8864,35 +8985,35 @@ msgstr "ويرايش امتيازات" msgid "Revoke" msgstr "ابطال" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "همه" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 #, fuzzy msgid "Grant" msgstr "چاپ" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8901,95 +9022,95 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "خير" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10159,111 +10280,111 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "دقیقه" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "پرس و جوي SQL" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10559,36 +10680,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "معتبرسازي SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "" @@ -10597,60 +10718,60 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "درج به عنوان يك سطر جديد" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "و سپس" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "برو به صفحه قبل" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "درج يك سطر جديد ديگر" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "برگرد به این صفحه" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "ویرایش کردن ردیف بعدی" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10735,49 +10856,45 @@ msgstr "جدول %s حذف گرديد" msgid "View dump (schema) of table" msgstr "نمايش الگوي جدول" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "اضافه يا حذف ستونها" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "جمع كل" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "ذخيره به صورت پرونده" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11008,25 +11125,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "ستونها را انتخاب نماييد (حداقل يكي)" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "افزودن شرايط جستجو (بدنه شرط \"where\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "تعداد سطرها در هر صفحه" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "ترتيب نمايش:" @@ -12519,9 +12636,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "نسخه سرور" -#~ msgid "Add a new User" -#~ msgstr "افزودن يك كاربر جديد" - #~ msgid "Delete the matches for the " #~ msgstr "داده های همتا در جدول %s حذف شوند؟" diff --git a/po/fi.po b/po/fi.po index 7a70ec3be6..d6163127a2 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-11-26 21:29+0200\n" "Last-Translator: \n" "Language-Team: finnish \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Näytä kaikki" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "isäntäikkuna on suljettu tai että selaimen tietoturva-asetukset estävät " "ikkunoiden väliset päivitystoiminnot." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Etsi" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Etsi" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Taulun kommentit" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Sarake" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Tyyppi" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Kommentit" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Ei" @@ -232,9 +233,9 @@ msgstr "Ei" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Siirry kopioituun tietokantaan" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Relaatioskeeman muokkaus tai vienti" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Taulu" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -428,19 +429,19 @@ msgstr "Järjestys" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Nouseva" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Laskeva" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Näytä" @@ -461,8 +462,8 @@ msgid "Del" msgstr "Poista" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Tai" @@ -491,7 +492,7 @@ msgstr "Käytä tauluja" msgid "SQL query on database %s:" msgstr "Suorita SQL-kysely tietokannassa %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Suorita" @@ -530,8 +531,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s hakutulosta taulussa %s" msgstr[1] "%s hakutulosta taulussa %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Selaa" @@ -542,7 +543,7 @@ msgid "Delete the matches for the %s table?" msgstr "Poista taulusta %s löytyneet tulokset?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -615,7 +616,7 @@ msgstr "Seuranta on käytössä." msgid "Tracking is not active." msgstr "Seuranta ei ole käytössä." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -645,22 +646,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Valitut:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Valitse kaikki" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Poista valinta kaikista" @@ -668,10 +669,10 @@ msgstr "Poista valinta kaikista" msgid "Check tables having overhead" msgstr "Valitse taulut, joissa on ylijäämää" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -679,17 +680,17 @@ msgid "Export" msgstr "Vienti" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Tulostusversio" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Tyhjennä" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -743,9 +744,9 @@ msgstr "Seurattavat taulut" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Tietokanta" @@ -764,15 +765,15 @@ msgstr "Päivitetty" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Tila" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Toiminnot" @@ -825,7 +826,7 @@ msgstr "Syötä arvot omiin kenttiinsä." msgid "+ Restart insertion and add a new value" msgstr "+ Aloita lisääminen alusta ja lisää uusi arvo" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Tulos" @@ -860,6 +861,95 @@ msgstr "Palvelimella ei ole lupaa tallentaa tiedostoa %s." msgid "Dump has been saved to file %s." msgstr "Vedos tallennettiin tiedostoon %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Sarakkeen \"%s\" arvot" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add a point" +msgstr "Käytä indeksiä/indeksejä" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Rivien erotinmerkki" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Lisää uusi käyttäjä" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Lisää uusi käyttäjä" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column(s)" +msgid "Add a polygon" +msgstr "Lisää sarake/sarakkeita" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "Lisää uusi palvelin" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -907,7 +997,7 @@ msgstr "Kirjanmerkki on poistettu." msgid "Showing bookmark" msgstr "Näytetään kirjanmerkki" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Kirjanmerkki %s luotu" @@ -935,7 +1025,7 @@ msgstr "" "asti ellei PHP:n suoritusaikarajaa nosteta." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -959,15 +1049,15 @@ msgstr "Valitse painamalla" msgid "Click to unselect" msgstr "Poista valinta painamalla" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" -kyselyjen käyttö on estetty." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Haluatko varmasti " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Olet aikeissasi HÄVITTÄÄ kokonaisen tietokannan!" @@ -1034,8 +1124,8 @@ msgstr "Salasana puuttuu!" msgid "The passwords aren't the same!" msgstr "Salasanat eivät ole samat!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Lisää käyttäjä" @@ -1053,8 +1143,8 @@ msgid "Close" msgstr "Sulje" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1094,12 +1184,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1190,12 +1280,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "Mt" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "kt" @@ -1300,7 +1390,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Ei mitään" @@ -1704,8 +1794,8 @@ msgstr "Näytä kyselykenttä" msgid "No rows selected" msgstr "Ei yhtään riviä valittu" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Muokkaa" @@ -1719,8 +1809,8 @@ msgstr "Suorituksen enimmäiskesto" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Tallenna" @@ -1732,7 +1822,7 @@ msgstr "Piilota hakusanat" msgid "Show search criteria" msgstr "Näytä hakusanat" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1776,105 +1866,113 @@ msgstr "Lisää tai poista sarakkeita" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Älä huomioi" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column(s)" msgid "Add columns" msgstr "Lisää sarake/sarakkeita" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Valitse viitattava avain" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Valitse liiteavain" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Valitse perusavain tai uniikki avain" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Valitse näytettävä sarake" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Lisää asetus sarakkeelle" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Valitse painamalla" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Siirry näkymään" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Keksi salasana" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Keksi" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Vaihda salasana" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Lisää" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1884,29 +1982,29 @@ msgstr "" "Uusin versio on %s, ja se on julkaistu %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "Viimeisin vakaa versio" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Siirry tietokantaan" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Valmis" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Edellinen" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1914,149 +2012,149 @@ msgid "Next" msgstr "Seuraava" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Tänään" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Tammi" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Helmi" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Maalis" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Huhti" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Touko" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Kesä" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Heinä" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Elo" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Syys" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Loka" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Marras" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Joulu" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Joulu" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Su" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Ma" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Ti" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Ke" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "To" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Pe" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "La" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2064,87 +2162,92 @@ msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "La" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "La" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Vko" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Tunti" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minuutti" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Sekunti" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Fonttikoko" @@ -2256,13 +2359,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Tietokannat" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Virhe" @@ -2396,7 +2499,7 @@ msgstr "Teemaa %s ei löydy!" msgid "Theme path not found for theme %s!" msgstr "Teeman %s polkua ei löydy!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2575,7 +2678,7 @@ msgstr "Taulut" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Tietoa" @@ -2641,7 +2744,7 @@ msgstr "Palvelimella %1$s virheellinen nimi. Tarkista asetukset." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Palvelin" @@ -2706,101 +2809,101 @@ msgstr "SQL-kysely" msgid "MySQL said: " msgstr "MySQL ilmoittaa: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "SQL-validaattoriin ei voitu yhdistää" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Selitä SQL-kysely" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Älä selitä SQL-kyselyä" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Kätke PHP-koodi" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Näytä PHP-koodi" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Päivitä" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Älä tarkista SQL-kyselyä" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Tarkista SQL-lause" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Tämän kyselyn muokkaus" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Muokkaus" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profilointi" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "tavua" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "Gt" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "Tt" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "Pt" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "Et" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Su" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y klo %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s päivää, %s tuntia, %s minuuttia ja %s sekuntia" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutiinit" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2808,7 +2911,7 @@ msgctxt "First page" msgid "Begin" msgstr "Alkuun" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2817,7 +2920,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Edellinen" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2826,7 +2929,7 @@ msgctxt "Next page" msgid "Next" msgstr "Seuraava" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2834,36 +2937,36 @@ msgctxt "Last page" msgid "End" msgstr "Loppu" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Siirry tietokantaan "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Valitse painamalla" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Rakenne" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2871,37 +2974,37 @@ msgstr "Rakenne" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Lisää rivi" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Toiminnot" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Selaa tietokonettasi:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Lähetettäviä tiedostoja ei ole" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3067,7 +3170,7 @@ msgstr "Anna käyttäjien mukauttaa tätä arvoa" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Nollaa" @@ -3350,7 +3453,7 @@ msgid "Character set of the file" msgstr "Tiedoston merkistö" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Muoto" @@ -5109,7 +5212,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Salasana" @@ -5415,8 +5518,8 @@ msgid "Designer" msgstr "Suunnittelija" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Käyttöoikeudet" @@ -5435,7 +5538,7 @@ msgstr "Tapahtumat" msgid "Triggers" msgstr "Herättimet" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5497,7 +5600,7 @@ msgid "Create" msgstr "Luo" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Ei käyttöoikeuksia" @@ -5875,12 +5978,12 @@ msgstr "Lajittele avaimen mukaan" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Valinnat" @@ -5914,8 +6017,8 @@ msgstr "Näytä binäärisisältö" msgid "Show BLOB contents" msgstr "Näytä BLOB-sisältö" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Kätke" @@ -5924,10 +6027,6 @@ msgstr "Kätke" msgid "Browser transformation" msgstr "Selaimen muunnos (transformation)" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5936,57 +6035,53 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Rivi on poistettu" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Lopeta" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "lauseessa" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Näkyvillä rivit " -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "yhteensä" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "kysely kesti %01.4f sek." -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Tulostusversio (kokonaisin tekstein)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Näytä kaavio" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Luo näkymä" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Linkkiä ei löydy" @@ -6190,7 +6285,7 @@ msgstr "" "tiivistetään. Tämän arvon on oltava väliltä 1 - 99. Oletusarvo on 50." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Port" @@ -6553,7 +6648,7 @@ msgstr "Näytä MIME-tyypit" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Palvelin" @@ -6754,7 +6849,7 @@ msgstr "Vie sisällöt" msgid "Open new phpMyAdmin window" msgstr "Avaa uusi phpMyAdmin-ikkuna" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6768,55 +6863,55 @@ msgstr "SQL-kyselyn tulos" msgid "Generated by" msgstr "Luontiympäristö" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 #, 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 #, 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:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Siirry tietokantaan" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Kohteesta %s puuttuu tiedot" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Siirry tauluun" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Vain rakenne" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Siirry näkymään" @@ -6868,7 +6963,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Taulun nimi" @@ -6893,6 +6988,32 @@ msgstr "Tuo prosenttiyksiköt sopivin desimaaliluvuin (12.00% muotoon .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Tuo valuutta-arvot ($5.00 muotoon 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "Tiedosto %s ei sisällä avaintunnusta" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6950,7 +7071,7 @@ msgstr "" msgid "Add prefix" msgstr "Käytä indeksiä/indeksejä" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Ei muutoksia" @@ -6959,7 +7080,7 @@ msgid "Charset" msgstr "Merkistökoodaus" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binääritietoa" @@ -7269,7 +7390,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Käyttäjänimi" @@ -7287,9 +7408,9 @@ msgid "Variable" msgstr "Muuttuja" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Arvo" @@ -7317,7 +7438,7 @@ msgstr "Kuka tahansa käyttäjä" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Käytä tekstikenttää" @@ -7515,7 +7636,7 @@ msgid "Returns" msgstr "Paluutyyppi" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Aika" @@ -7674,8 +7795,8 @@ msgstr "" msgid "Routine parameters" msgstr "Rutiinit" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funktio" @@ -8008,8 +8129,8 @@ msgstr "Tuntematon kieli: %1$s." msgid "Current Server" msgstr "Nykyinen palvelin" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Yhtenäistä" @@ -8031,7 +8152,7 @@ msgstr "Merkistöt" msgid "Engines" msgstr "Moottorit" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Lähdetietokanta" @@ -8049,7 +8170,7 @@ msgstr "Etäpalvelin" msgid "Difference" msgstr "Ero" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Kohdetietokanta" @@ -8072,11 +8193,11 @@ msgstr "Tyhjennä" msgid "Columns" msgstr "Sarakkeet" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" @@ -8104,7 +8225,7 @@ msgstr "Näytä" msgid "Location of the text file" msgstr "Tiedoston sijainti" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "palvelimen lähetyshakemisto" @@ -8309,23 +8430,29 @@ msgid "+ Add a value" msgstr "Lisää uusi palvelin" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Selaa viitearvoja" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operaattori" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Etsi" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Lisää rivi" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8534,8 +8661,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "ZIP-paketista ei löytynyt yhtään tiedostoa!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Virhe ZIP-paketissa:" @@ -8565,8 +8692,8 @@ msgstr "asetukset" msgid "Protocol version" msgstr "Protokollan versio" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Käyttäjä" @@ -8721,7 +8848,7 @@ msgstr "" "Palvelin käyttää Suhosin-suojausjärjestelmää. Lue %sohjeista%s tietoja " "mahdollisista ongelmista." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Ei tietokantoja" @@ -8750,7 +8877,7 @@ msgstr "Näytä/kätke vasen valikko" msgid "Save position" msgstr "Tallenna sijainti" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Luo taulu" @@ -9126,80 +9253,80 @@ msgstr "Tallennusmoottorit" msgid "View dump (schema) of databases" msgstr "Näytä tietokannoista vedos (skeema)" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Sisältää kaikki käyttöoikeudet GRANT-oikeutta lukuun ottamatta." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Sallii muuttaa olemassa olevien taulujen rakennetta." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Sallii talletettujen rutiinien muuntamisen ja poistamisen." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Sallii uusien tietokantojen ja taulujen luomisen." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Sallii talletettujen rutiinien luomisen." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Sallii uusien taulujen luomisen." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Sallii tilapäisten taulujen luomisen." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Sallii käyttäjätilien luomisen, poistamisen ja uudelleennimeämisen." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Sallii uusien näkymien luomisen." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Sallii tietojen poistamisen." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Sallii tietokantojen ja taulujen poistamisen." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Sallii taulujen poistamisen." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Sallii luoda tapahtuma-ajastimelle tapahtumia" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Sallii talletettujen rutiinien suorittamisen." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Sallii tietojen tuomisen ja viemisen." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -9207,17 +9334,17 @@ msgstr "" "käyttöoikeustauluja uudestaan." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Sallii indeksien luomisen ja poistamisen." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Sallii tietojen lisäämisen ja korvaamisen." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Sallii taulujen lukitsemisen nykyiselle säikeelle." @@ -9247,54 +9374,54 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Rajoittaa käyttäjän yhtäaikaisten yhteyksien määrän." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Sallii kaikkien käyttäjien prosessien näyttämisen" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Ei vaikutusta tässä MySQL-palvelimen versiossa." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sallii palvelinasetusten uudelleenlataamisen ja palvelimen välimuistin " "tyhjentämisen." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Sallii käyttäjän kysyä, missä ali- ja pääpalvelimet sijaitsevat." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Tarvitaan kahdennusta käyttävissä alipalvelimissa." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Sallii tietojen lukemisen." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Sallii koko tietokantaluettelon käytön." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Sallii SHOW CREATE VIEW -kyselyjen suorittamisen." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Sallii palvelimen sammuttamisen." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9305,45 +9432,45 @@ msgstr "" "muuttujien asettamisessa ja muitten käyttäjien säikeiden lopettamisessa." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Sallii herättimien eli laukaisinten luomisen ja poistamisen" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Sallii tietojen muuttamisen." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Ei käyttöoikeuksia." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ei mitään" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Taulukohtaiset käyttöoikeudet" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Huom! MySQL-käyttöoikeuksien nimet ovat englanniksi! " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Hallinta" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globaalit käyttöoikeudet" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Tietokantakohtaiset käyttöoikeudet" @@ -9363,7 +9490,7 @@ msgstr "Kirjautumistiedot" msgid "Do not change the password" msgstr "Älä vaihda salasanaa" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9414,7 +9541,7 @@ msgstr "Valitsemiesi käyttäjien poisto onnistui." msgid "The privileges were reloaded successfully." msgstr "Käyttöoikeuksien uudelleenlataus onnistui." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Muokkaa käyttöoikeuksia" @@ -9422,35 +9549,35 @@ msgstr "Muokkaa käyttöoikeuksia" msgid "Revoke" msgstr "Pura käyttöoikeudet" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Mikä tahansa" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Käyttäjien yleiskatsaus" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Valtuudet (GRANT)" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Poista valitut käyttäjät" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Pura kaikki käyttäjän aktiiviset käyttöoikeudet, ja poista ne sen jälkeen." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9463,52 +9590,52 @@ msgstr "" "käyttämistä käyttöoikeuksista, jos tauluihin on tehty muutoksia käsin. " "Tällöin %skäyttöoikeudet on ladattava uudestaan%s ennen jatkamista." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Sarakekohtaiset käyttöoikeudet" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Korvausmerkkien _ ja % eteen on lisättävä \\-merkki, jotta ne näkyisivät " "oikein" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Lisää käyttöoikeudet seuraavaan tauluun" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Vaihda kirjautumistietoja / Kopioi käyttäjä" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Luo uusi käyttäjä samoilla käyttöoikeuksilla ja ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... säilytä vanha käyttäjä." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... poista vanha käyttäjä käyttäjätauluista." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... peruuta kaikki vanhan käyttäjän aktiiviset käyttöoikeudet ja tuhoa " "käyttäjä sen jälkeen." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9516,49 +9643,49 @@ msgstr "" " ... poista vanha käyttäjä käyttäjätauluista ja lataa käyttöoikeudet sen " "jälkeen uudelleen." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Tietokanta käyttäjälle" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ei mitään" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Luo samanniminen tietokanta ja anna kaikki oikeudet" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Anna kaikki oikeudet tietokannalle käyttäen korvausmerkkiä (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Anna tietokannalle "%s" kaikki oikeudet" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globaali" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "tietokantakohtainen" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "korvausmerkki" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10909,112 +11036,112 @@ msgid_plural "%d minutes" msgstr[0] "Minuutti" msgstr[1] "Minuutti" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Lähteeseen ei voida muodostaa yhteyttä" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Kohteeseen ei voida muodostaa yhteyttä" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Tietokantaa '%s' ei ole olemassa." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Rakenteen yhtenäistäminen" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Tietojen yhtenäistäminen" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "ei käytössä" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Rakenne-erot" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Tietojen erot" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Lisää sarake/sarakkeita" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Poista sarake/sarakkeet" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Muuta saraketta/sarakkeita" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Poista indeksi(t)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Käytä indeksiä/indeksejä" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Päivitä rivi(t)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Lisää rivi/rivejä" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Haluatko poistaa kaikki edelliset rivit kohdetauluista?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Tee valitut muutokset" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Yhtenäistä tietokannat" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Valitut kohdetaulut on yhtenäistetty lähdetaulujen kanssa." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Kohdetietokanta on yhtenäistetty lähdetietokannan kanssa" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL-kyselyt" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Syötä käsin" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Nykyinen yhteys" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Asetustiedosto" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Pistoke" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11418,36 +11545,36 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "Avaimen tulisi sisältää merkkejä, numeroita [em]ja[/em] erikoismerkkejä" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Näytetään PHP-koodina" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Tarkista SQL-lause" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Tunniste" @@ -11456,65 +11583,65 @@ msgstr "Tunniste" msgid "Table %1$s has been altered successfully" msgstr "Taulun %1$s muuttaminen onnistui." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Pituudestaan johtuen
tätä saraketta ei voine muokata " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Poista BLOB-tietokantaviittaus" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binääritietoa - älä muokkaa" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Lähetä BLOB-tietokantaan" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Lisää uutena rivinä" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 #, fuzzy msgid "Show insert query" msgstr "Näytetään SQL-kysely" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "ja sen jälkeen" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Takaisin" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Lisää uusi rivi" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Palaa tälle sivulle" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Muokkaa seuraavaa riviä" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Käytä arvojen välillä siirtymiseen sarkainta. Ctrl- ja nuolinäppäimillä voi " "siirtyä mihin tahansa kohtaan." -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11604,55 +11731,51 @@ msgstr "Taulu %1$s on luotu." msgid "View dump (schema) of table" msgstr "Tee vedos taulusta" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Näytä palvelinten valinta" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Right" msgid "Height" msgstr "Oikea" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "CHAR-tekstikentän sarakkeet" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- ei mitään -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Lokitiedostojen määrä" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Tallenna tiedostoon" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11887,25 +12010,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "Viiteavaimen rajoitus" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Suorita mallin mukainen kysely (jokerimerkki: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Valitse sarakkeet (vähintään yksi):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Lisää hakuehtoja (\"WHERE\"-lauseen sisältö):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Rivejä sivulla" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Lajittelujärjestys:" @@ -13564,9 +13687,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Luo käyttäjä" -#~ msgid "Add a new User" -#~ msgstr "Lisää uusi käyttäjä" - #~ msgid "Show table row links on left side" #~ msgstr "Näytä vasemmassa kehyksessä logo" diff --git a/po/fr.po b/po/fr.po index 76a4d2e7d9..219b06398c 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-04 21:49+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: french \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Tout afficher" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgstr "" "navigateur bloque les mises à jour entre fenêtres pour des raisons de " "sécurité." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Rechercher" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "Rechercher" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "Commentaires sur la table" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -156,8 +157,8 @@ msgstr "Colonne" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -168,7 +169,7 @@ msgstr "Type" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -211,10 +212,10 @@ msgstr "Commentaires" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Non" @@ -233,9 +234,9 @@ msgstr "Non" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -336,7 +337,7 @@ msgstr "Aller à la base de données copiée" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -361,15 +362,15 @@ msgstr "Éditer ou exporter un schéma relationnel" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Table" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -429,19 +430,19 @@ msgstr "Tri" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Croissant" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Décroissant" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Afficher" @@ -462,8 +463,8 @@ msgid "Del" msgstr "Effacer" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Ou" @@ -492,7 +493,7 @@ msgstr "Utiliser les tables" msgid "SQL query on database %s:" msgstr "Requête SQL sur la base %s: " -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Exécuter la requête" @@ -531,8 +532,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s occurence dans la table %s" msgstr[1] "%s occurences dans la table %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Afficher" @@ -543,7 +544,7 @@ msgid "Delete the matches for the %s table?" msgstr "Supprimer de la table %s les occurences?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -612,7 +613,7 @@ msgstr "Le suivi est actif." msgid "Tracking is not active." msgstr "Le suivi n'est pas activé." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -642,22 +643,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Pour la sélection :" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Tout cocher" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Tout décocher" @@ -665,10 +666,10 @@ msgstr "Tout décocher" msgid "Check tables having overhead" msgstr "Cocher tables avec pertes" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -676,17 +677,17 @@ msgid "Export" msgstr "Exporter" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Version imprimable" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Vider" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -734,9 +735,9 @@ msgstr "Tables faisant l'objet d'un suivi" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Base de données" @@ -755,15 +756,15 @@ msgstr "Mis à jour" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "État" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Action" @@ -816,7 +817,7 @@ msgstr "Saisir chaque valeur dans un champ séparé." msgid "+ Restart insertion and add a new value" msgstr "+ Recommencer l'insertion et ajouter une valeur" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Résultat" @@ -853,6 +854,95 @@ msgstr "" msgid "Dump has been saved to file %s." msgstr "Le fichier d'exportation a été sauvegardé sous %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Valeurs pour la colonne «%s»" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Utiliser OpenStreetMaps comme couche de base" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Géométrie" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Ajouter une procédure" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Lignes terminées par" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Ajouter un utilisateur" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Ajouter un utilisateur" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Ajouter une colonne" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Géométrie" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -904,7 +994,7 @@ msgstr "Le signet a été effacé." msgid "Showing bookmark" msgstr "Affichage du signet" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Signet %s créé" @@ -932,7 +1022,7 @@ msgstr "" "limite de temps de PHP ne soit augmentée." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -958,15 +1048,15 @@ msgstr "Cliquer pour sélectionner" msgid "Click to unselect" msgstr "Cliquer pour désélectionner" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "La commande «DROP DATABASE» est désactivée." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Voulez-vous vraiment effectuer " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !" @@ -1030,8 +1120,8 @@ msgstr "Le mot de passe est vide !" msgid "The passwords aren't the same!" msgstr "Les mots de passe doivent être identiques !" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Ajouter un utilisateur" @@ -1049,8 +1139,8 @@ msgid "Close" msgstr "Fermer" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1086,12 +1176,12 @@ msgid "Other" msgstr "Autres" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "  " #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1178,12 +1268,12 @@ msgid "System swap" msgstr "Zone d'échange (swap)" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "Mio" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "Kio" @@ -1272,7 +1362,7 @@ msgstr "Veuillez ajouter au moins une variable à la série" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Aucune" @@ -1658,8 +1748,8 @@ msgstr "Montrer zone SQL" msgid "No rows selected" msgstr "Aucune ligne n'a été sélectionnée" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Modifier" @@ -1671,8 +1761,8 @@ msgstr "Durée d'exécution de la requête" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Sauvegarder" @@ -1684,7 +1774,7 @@ msgstr "Cacher les critères de recherche" msgid "Show search criteria" msgstr "Afficher les critères de recherche" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1728,32 +1818,40 @@ msgstr "Ajouter/effacer des colonnes" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Copier" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "Ajouter des colonnes" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Sélectionnez la clé référencée" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Choisissez la clé étrangère" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Veuillez choisir la clé primaire ou un index unique" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Colonne descriptive" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1761,70 +1859,70 @@ msgstr "" "Vous n'avez pas sauvegardé les changements. Ils seront perdus si vous ne les " "sauvegardez pas. Voulez-vous continuer?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Ajouter une option pour la colonne" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Faire glisser pour réordonner" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Cliquer pour trier" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Cliquer pour marquer/enlever les marques" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Cliquer sur la flèche
pour gérer l'affichage des colonnes" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Aller à la vue" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Générer un mot de passe" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Générer" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Modifier le mot de passe" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "plus" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1834,27 +1932,27 @@ msgstr "" "une mise à niveau. La version la plus récente est %s, publiée le %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", dernière version stable :" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "à jour" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Fermer" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Précédent" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1862,149 +1960,149 @@ msgid "Next" msgstr "Suivant" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Aujourd'hui" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Janvier" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Février" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Mars" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Avril" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mai" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Juin" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Juillet" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Août" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Septembre" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Octobre" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Novembre" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Décembre" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Dimanche" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Lundi" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Mardi" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Mercredi" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Jeudi" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Vendredi" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2012,87 +2110,92 @@ msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sam" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Je" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Sem" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Heure" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minute" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Seconde" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Taille du texte" @@ -2204,13 +2307,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Bases de données" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Erreur" @@ -2339,7 +2442,7 @@ msgstr "Thème %s inexistant !" msgid "Theme path not found for theme %s!" msgstr "Chemin non trouvé pour le thème %s !" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Thème" @@ -2515,7 +2618,7 @@ msgstr "Tables" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Données" @@ -2586,7 +2689,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Serveur" @@ -2652,99 +2755,99 @@ msgstr "Requête SQL" msgid "MySQL said: " msgstr "MySQL a répondu: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Connexion au validateur SQL impossible" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Expliquer SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Ne pas expliquer SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Sans source PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Créer source PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Actualiser" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Ne pas valider SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Valider SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Éditer cette requête en place" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "En ligne" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profilage" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "o" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "Gio" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "Tio" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "Pio" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "Eio" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Dim" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%A %d %B %Y à %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s jours, %s heures, %s minutes et %s secondes" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "Paramètre manquant :" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2752,7 +2855,7 @@ msgctxt "First page" msgid "Begin" msgstr "Début" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2761,7 +2864,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Précédent" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2770,7 +2873,7 @@ msgctxt "Next page" msgid "Next" msgstr "Suivant" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2778,34 +2881,34 @@ msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Aller à la base de données "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Cliquer pour basculer" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Structure" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2813,38 +2916,38 @@ msgstr "Structure" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insérer" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Opérations" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Parcourir :" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, 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/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Le répertoire de transfert est inaccessible" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Aucun fichier n'est disponible pour le transfert" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Exécuter" @@ -3011,7 +3114,7 @@ msgstr "Permettre aux utilisateurs de personnaliser cette valeur" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Réinitialiser" @@ -3282,7 +3385,7 @@ msgid "Character set of the file" msgstr "Jeu de caractères du fichier" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -4959,7 +5062,7 @@ msgstr "Requiert que le validateur SQL soit activé" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Mot de passe" @@ -5261,8 +5364,8 @@ msgid "Designer" msgstr "Concepteur" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilèges" @@ -5281,7 +5384,7 @@ msgstr "Événements" msgid "Triggers" msgstr "Déclencheurs" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5343,7 +5446,7 @@ msgid "Create" msgstr "Créer" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Aucun privilège" @@ -5663,12 +5766,12 @@ msgstr "Trier sur l'index" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Options" @@ -5696,8 +5799,8 @@ msgstr "Montrer le contenu binaire" msgid "Show BLOB contents" msgstr "Montrer le contenu BLOB" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Cacher" @@ -5706,10 +5809,6 @@ msgstr "Cacher" msgid "Browser transformation" msgstr "Transformation" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Géométrie" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "Well Known Text" @@ -5718,57 +5817,53 @@ msgstr "Well Known Text" msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Copier" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "La ligne a été effacée" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Supprimer" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "dans la requête" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Affichage des lignes" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Traitement en %01.4f sec" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Version imprimable (avec textes complets)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Afficher le graphique" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Visualiser les données GIS" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Créer une vue" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Lien absent" @@ -5971,7 +6066,7 @@ msgstr "" "duquel il est comprimé." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Port" @@ -6327,7 +6422,7 @@ msgstr "Afficher les types MIME" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Client" @@ -6547,7 +6642,7 @@ msgstr "Exporter le contenu" msgid "Open new phpMyAdmin window" msgstr "Ouvrir une nouvelle fenêtre phpMyAdmin" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "Données non disponibles pour visualisation GIS." @@ -6559,52 +6654,52 @@ msgstr "Résultat de la requête SQL" msgid "Generated by" msgstr "Généré par" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a retourné un résultat vide (aucune ligne)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "Modifier sa structure via le lien «Structure»" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Aller à la base de données" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Données manquantes pour %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Aller à la table" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Structure seule" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Aller à la vue" @@ -6662,7 +6757,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Nom de la table" @@ -6684,6 +6779,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importer les valeurs de monnaie ($5.00 devient 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Cette page ne contient aucune table!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "Mode de compatibilité SQL :" @@ -6731,7 +6852,7 @@ msgstr "Ajouter un préfixe de table" msgid "Add prefix" msgstr "Ajouter un préfixe" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Pas de modifications" @@ -6740,7 +6861,7 @@ msgid "Charset" msgstr "Jeu de caractères" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binaire" @@ -7053,7 +7174,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Nom d'utilisateur" @@ -7071,9 +7192,9 @@ msgid "Variable" msgstr "Variable" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valeur" @@ -7101,7 +7222,7 @@ msgstr "Tout utilisateur" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Entrez une valeur" @@ -7280,7 +7401,7 @@ msgid "Returns" msgstr "Retourne" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Moment" @@ -7422,8 +7543,8 @@ msgstr "Exécuter la procédure" msgid "Routine parameters" msgstr "Paramètres de procédure" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Fonction" @@ -7709,8 +7830,8 @@ msgstr "Langue inconnue: %1$s." msgid "Current Server" msgstr "Serveur actuel" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Synchroniser" @@ -7732,7 +7853,7 @@ msgstr "Jeux de caractères" msgid "Engines" msgstr "Moteurs" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Base de données source" @@ -7750,7 +7871,7 @@ msgstr "Serveur distant" msgid "Difference" msgstr "Différence" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Base de données cible" @@ -7773,11 +7894,11 @@ msgstr "Vider" msgid "Columns" msgstr "Colonnes" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Conserver cette requête SQL dans les signets" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Signet visible pour les autres utilisateurs" @@ -7805,7 +7926,7 @@ msgstr "Voir uniquement" msgid "Location of the text file" msgstr "Emplacement du fichier texte" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "répertoire de transfert du serveur web" @@ -8000,23 +8121,29 @@ msgid "+ Add a value" msgstr "+ Ajouter une valeur" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Opérateur" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Rechercher" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Insérer" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8185,8 +8312,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Aucun fichier présent dans l'archive ZIP !" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Erreur rencontrée dans l'archive ZIP :" @@ -8210,8 +8337,8 @@ msgstr "Plus de paramètres" msgid "Protocol version" msgstr "Version du protocole" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Utilisateur" @@ -8364,7 +8491,7 @@ msgstr "" "Ce serveur utilise Suhosin. Veuillez vous référer à la %sdocumentation%s " "pour en connaître les conséquences possibles." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Aucune base de données" @@ -8391,7 +8518,7 @@ msgstr "Montrer/cacher le menu de gauche" msgid "Save position" msgstr "Sauvegarder la position" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Nouvelle table" @@ -8735,84 +8862,84 @@ msgstr "Moteurs de stockage" msgid "View dump (schema) of databases" msgstr "Schéma et/ou contenu des bases de données" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Tous les privilèges sauf GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Permission de modifier la structure des tables existantes." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Permission de modifier et de supprimer des procédures stockées." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Permission de créer des bases de données et des tables." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Permission de créer des procédures stockées." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Permission de créer des tables." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Permission de créer des tables temporaires." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permission de créer, supprimer et renommer des comptes utilisateurs." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Permission de créer des vues." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Permission de détruire des données." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Permission d'effacer des bases de données et des tables." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Permission d'effacer des tables." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" "Permission de mettre en place des événements pour le programmateur " "d'événements" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Permission d'exécuter des procédures stockées." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" "Permission d'importer et d'exporter des données à partir de / dans des " "fichiers." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8820,17 +8947,17 @@ msgstr "" "recharger les privilèges." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Permission de créer et d'effacer des index." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Permission d'ajouter et de remplacer des données." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" "Permission de verrouiller des enregistrements dans le fil courant (unité " @@ -8866,56 +8993,56 @@ msgstr "" "Limite le nombre de connexions simultanées autorisées pour un utilisateur." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Permission de voir les processus de tous les utilisateurs" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Non effectif dans cette version de MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permission de recharger les paramètres du serveur, et de vidanger la mémoire " "cache." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Permission de demander où sont les maîtres et les esclaves (système de " "duplication)." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Nécessaire pour les esclaves (système de duplication)." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Permission de lire des données." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Permission de voir la liste complète des noms de bases de données." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permission d'exécuter SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Permission d'arrêter le serveur." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8927,43 +9054,43 @@ msgstr "" "destruction de processus." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Permission de créer et de supprimer des déclencheurs" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Permission de changer des données." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Pas de privilèges." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Aucun" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Privilèges spécifiques à une table" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Veuillez noter que les noms de privilèges sont exprimés en anglais" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administration" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Privilèges globaux" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Privilèges spécifiques à une base de données" @@ -8983,7 +9110,7 @@ msgstr "Information pour la connexion" msgid "Do not change the password" msgstr "Conserver le mot de passe" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Aucun utilisateur n'a été trouvé." @@ -9032,7 +9159,7 @@ msgstr "Les utilisateurs sélectionnés ont été effacés." msgid "The privileges were reloaded successfully." msgstr "Les privilèges ont été rechargés." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Changer les privilèges" @@ -9040,35 +9167,35 @@ msgstr "Changer les privilèges" msgid "Revoke" msgstr "Révoquer" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "N'importe quel" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Vue d'ensemble des utilisateurs" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "«Grant »" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Effacer les utilisateurs sélectionnés" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Effacer tous les privilèges de ces utilisateurs, puis les effacer." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" "Supprimer les bases de données portant le même nom que les utilisateurs." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9081,49 +9208,49 @@ msgstr "" "effectifs, si des changements manuels ont été apportés. Dans ce cas, vous " "devriez %srecharger les privilèges%s avant de continuer." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Privilèges de colonnes" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Ajouter des privilèges sur cette base de données" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Préfixer avec \\ les passepartouts _ et % pour un usage littéral" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Ajouter des privilèges sur cette table" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Changement des informations de connexion / Copie d'utilisateur" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Créer un nouvel utilisateur avec les mêmes privilèges et ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... conserver intact l'ancien utilisateur." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... supprimer l'ancien utilisateur." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... effacer tous les privilèges de l'ancien utilisateur, puis l'effacer." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9131,48 +9258,48 @@ msgstr "" " ... supprimer l'ancien utilisateur, puis recharger les privilèges au " "serveur." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Base de données pour cet utilisateur" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Aucune" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" "Créer une base portant son nom et donner à cet utilisateur tous les " "privilèges sur cette base" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Donner les privilèges passepartout (utilisateur\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Donner tous les privilèges sur la base de données "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Utilisateurs ayant accès à "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "spécifique à cette base de données" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "passepartout" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "La vue %s a été supprimée" @@ -10544,112 +10671,112 @@ msgid_plural "%d minutes" msgstr[0] "%d minute" msgstr[1] "%d minutes" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Connexion à la source impossible" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Connexion à la cible impossible" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "La base de données «%s» n'existe pas." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Synchronisation de structure" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Synchronisation des données" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "non présent" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Différence dans la structure" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Différence dans les données" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Ajouter des colonnes" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Supprimer des colonnes" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Modifier des colonnes" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Supprimer des index" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Appliquer des index" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Modifier des lignes" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Insérer des lignes" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Voulez-vous supprimer toutes les lignes des tables cible ?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Appliquer les changements sélectionnés" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Synchroniser les bases de données" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Les tables sélectionnées ont été synchronisées." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "La base cible a été synchronizée avec la base source" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Requêtes reçues" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Saisir manuellement" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Connexion actuelle" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Configuration : %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Interface de connexion (socket)" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10994,34 +11121,34 @@ msgstr "" "La clé devrait contenir des lettres, des nombres [em]et[/em] des caractères " "spéciaux." -#: sql.php:203 +#: sql.php:213 #, 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:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de la ligne insérée : %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Affichage du code PHP" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "SQL validé" -#: sql.php:918 +#: sql.php:928 #, 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:949 +#: sql.php:959 msgid "Label" msgstr "Intitulé" @@ -11030,64 +11157,64 @@ msgstr "Intitulé" msgid "Table %1$s has been altered successfully" msgstr "La table %1$s a été modifiée avec succès." -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" "Il est possible que cette colonne
ne soit pas éditable
en raison " "de sa longueur" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Supprimer les références au dépôt BLOB" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binaire - ne pas éditer" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Télécharger vers le dépôt BLOB" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Sauvegarder une nouvelle ligne" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Sauvegarder une nouvelle ligne en ignorant les erreurs" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Afficher l'énoncé d'insertion" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "et ensuite" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Retourner à la page précédente" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Insérer une nouvelle ligne" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Demeurer sur cette page" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Modifier la ligne suivante" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Utilisez la tabulation pour aller d'une valeur à l'autre, ou CTRL+flèches " "pour aller n'importe où" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Continuer l'insertion avec %s lignes" @@ -11158,43 +11285,39 @@ msgstr "La table %1$s a été créée." msgid "View dump (schema) of table" msgstr "Afficher le schéma de la table" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "Visualiser en GIS" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Largeur" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Hauteur" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Colonne pour étiquette" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- Aucun --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "Colonne pour donnée spatiale" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Utiliser OpenStreetMaps comme couche de base" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Dessiner à nouveau" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Sauvegarder dans un fichier" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Nom du fichier" @@ -11419,23 +11542,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "Contrainte de clé étrangère" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Recherche «par valeur» (passepartout: «% ») " -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Choisir les colonnes (au moins une)" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Critères de recherche (pour l'énoncé «where») :" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Nombre de lignes par page" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Ordre d'affichage :" @@ -13132,9 +13255,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Créer un compte d'utilisateur" -#~ msgid "Add a new User" -#~ msgstr "Ajouter un utilisateur" - #~ msgid "Show table row links on left side" #~ msgstr "Montrer les liens des lignes de données du côté gauche" diff --git a/po/gl.po b/po/gl.po index 211a4cc00a..c92051db76 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-07-21 14:50+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: galician \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Ver todos os rexistros" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgstr "" "actualizacións entre xanelas xa que así o pediu na configuración de " "seguranza do navegador." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Procurar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "Procurar" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "Comentarios da táboa" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -158,8 +159,8 @@ msgstr "Nomes das columnas" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -170,7 +171,7 @@ msgstr "Tipo" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -213,10 +214,10 @@ msgstr "Comentarios" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Non" @@ -235,9 +236,9 @@ msgstr "Non" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -342,7 +343,7 @@ msgstr "Pasar á base de datos copiada" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -372,15 +373,15 @@ msgstr "Esquema relacional" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Táboa" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -441,19 +442,19 @@ msgstr "Ordenar" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Ascendente" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Descendente" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Mostrar" @@ -474,8 +475,8 @@ msgid "Del" msgstr "Eliminar" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "ou" @@ -508,7 +509,7 @@ msgstr "Usar as táboas" msgid "SQL query on database %s:" msgstr "Procura tipo SQL na base de datos %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Enviar esta procura" @@ -548,8 +549,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s ocorrencias(s) dentro da táboa %s" msgstr[1] "%s ocorrencias(s) dentro da táboa %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Visualizar" @@ -561,7 +562,7 @@ msgid "Delete the matches for the %s table?" msgstr "A extraer datos da táboa" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -639,7 +640,7 @@ msgstr "O seguemento está activado." msgid "Tracking is not active." msgstr "O seguemento non está activado." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -669,22 +670,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Todos os marcados" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Marcalos todos" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Quitarlles as marcas a todos" @@ -692,10 +693,10 @@ msgstr "Quitarlles as marcas a todos" msgid "Check tables having overhead" msgstr "Exceso na comprobación" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -703,17 +704,17 @@ msgid "Export" msgstr "Exportar" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Visualización previa da impresión" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Borrar" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -767,9 +768,9 @@ msgstr "Táboas seguidas" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Base de datos" @@ -788,15 +789,15 @@ msgstr "Actualizada" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Estado" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Acción" @@ -849,7 +850,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -884,6 +885,94 @@ msgstr "O servidor web non ten permiso para gardar o ficheiro %s." msgid "Dump has been saved to file %s." msgstr "Gardouse o volcado no ficheiro %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add a point" +msgstr "Aplicar índice(s)" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "As liñas rematan por" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Engadir un usuario novo" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Engadir un usuario novo" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column(s)" +msgid "Add a polygon" +msgstr "Engadir columna(s)" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "Engadir un servidor novo" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -931,7 +1020,7 @@ msgstr "Eliminouse o marcador." msgid "Showing bookmark" msgstr "A mostrar o marcador" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Creouse o marcador %s" @@ -959,7 +1048,7 @@ msgstr "" "non ser que lle incrementen os limites de tempo de php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -983,15 +1072,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Non se permiten as ordes \"Eliminar a base de datos\"." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Seguro? " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Está a piques de DESTRUÍR unha base de datos enteira!" @@ -1063,8 +1152,8 @@ msgstr "O contrasinal está vacío!" msgid "The passwords aren't the same!" msgstr "Os contrasinais non son os mesmos." -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1088,8 +1177,8 @@ msgid "Close" msgstr "Fechar" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1129,12 +1218,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1227,12 +1316,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1339,7 +1428,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Ningunha" @@ -1765,8 +1854,8 @@ msgstr "Caixa de Procuras SQL" msgid "No rows selected" msgstr "Non hai ningunha fileira seleccionada" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Mudar" @@ -1780,8 +1869,8 @@ msgstr "Tempo máximo de execución" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Gardar" @@ -1797,7 +1886,7 @@ msgstr "Caixa de Procuras SQL" msgid "Show search criteria" msgstr "Caixa de Procuras SQL" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1841,111 +1930,119 @@ msgstr "Engadir/Eliminar columnas de campo" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column(s)" msgid "Add columns" msgstr "Engadir columna(s)" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Seleccionar a chave referida" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Escoller unha chave externa" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Escolla a chave primaria ou unha chave única" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolla o campo que quere que se mostre" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Ir á vista" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Xerar un contrasinal" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Xerar" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Trocar o contrasinal" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Lu" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1955,33 +2052,33 @@ msgstr "" "actualizala. A versión máis recente é %s, publicada o %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Comprobar cal é a última versión" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ir á base de datos" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Doar" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1989,96 +2086,96 @@ msgid "Next" msgstr "Seguinte" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binario " -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Maio" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Xuño" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Xullo" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Out" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2086,78 +2183,78 @@ msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dec" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Do" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Lu" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ma" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ve" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2165,107 +2262,112 @@ msgid "Sun" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sá" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mé" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Xo" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sá" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "en uso" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "por segundo" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Tamaño da letra" @@ -2377,13 +2479,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Bases de datos" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Houbo un erro" @@ -2521,7 +2623,7 @@ msgstr "Non se atopou o tema %s!" msgid "Theme path not found for theme %s!" msgstr "Non se atopou o camiño do tema para o tema %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2702,7 +2804,7 @@ msgstr "Táboas" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Datos" @@ -2779,7 +2881,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Servidor" @@ -2844,105 +2946,105 @@ msgstr "orde SQL" msgid "MySQL said: " msgstr "Mensaxes do MySQL: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Non se puido conectar co servidor de MySQL" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Saltar a explicacion de SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "sen código PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Crear código PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Refrescar" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Omitir a validacion de" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Validar o SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Motores" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Análise do desempeño" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Do" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d de %B de %Y ás %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s días, %s horas, %s minutos e %s segundos" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutinas" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2950,7 +3052,7 @@ msgctxt "First page" msgid "Begin" msgstr "Inicio" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2959,7 +3061,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2968,7 +3070,7 @@ msgctxt "Next page" msgid "Next" msgstr "Seguinte" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2976,34 +3078,34 @@ msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Saltar à base de datos "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A función %s vese afectada por un erro descoñecido; consulte %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Estrutura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -3011,38 +3113,38 @@ msgstr "Estrutura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserir" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operacións" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "directorio de recepción do servidor web" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Non se pode acceder ao directorio que designou para os envíos" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3221,7 +3323,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Reiniciar" @@ -3512,7 +3614,7 @@ msgid "Character set of the file" msgstr "Conxunto de caracteres do ficheiro" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formato" @@ -5301,7 +5403,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Contrasinal" @@ -5613,8 +5715,8 @@ msgid "Designer" msgstr "Deseñador" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilexios" @@ -5633,7 +5735,7 @@ msgstr "Acontecementos" msgid "Triggers" msgstr "Lanza" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5696,7 +5798,7 @@ msgid "Create" msgstr "Crear" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Sen privilexios" @@ -6079,12 +6181,12 @@ msgstr "Ordenar pola chave" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Opcións" @@ -6118,8 +6220,8 @@ msgstr "Mostrar os contidos binarios" msgid "Show BLOB contents" msgstr "Mostrar os contidos BLOB" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Agochar" @@ -6128,10 +6230,6 @@ msgstr "Agochar" msgid "Browser transformation" msgstr "Transformación do navegador" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -6140,61 +6238,57 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Eliminouse o rexistro" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Matar (kill)" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "a procurar" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "A mostrar rexistros " -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "a pesquisa levou %01.4f segundos" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operacións de resultados da procura" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Vista previa da impresión (con textos completos)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostrar o esquema PDF" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crear unha versión" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Non se atopou o vínculo" @@ -6402,7 +6496,7 @@ msgstr "" "entre 1 e 99. Por omisión é 50." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Porto" @@ -6767,7 +6861,7 @@ msgstr "Tipos MIME dispoñíbeis" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Servidor" @@ -6970,7 +7064,7 @@ msgstr "Exportar o contido" msgid "Open new phpMyAdmin window" msgstr "Abrir unha xanela nova co phpMyAdmin" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6982,55 +7076,55 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Xerado por" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou un conxunto vacío (ex. cero rexistros)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" 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:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "Mude calqueraa destas opcións premendo a ligazón \"Opcións\" correspondente" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Modificar a súa estrutura seguindo a ligazón \"Estrutura\"" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Ir á base de datos" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Faltan datos de %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Ir á táboa" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Só a estrutura" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Ir á vista" @@ -7082,7 +7176,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Nome da táboa" @@ -7107,6 +7201,32 @@ msgstr "Importar as porcentaxes como decimais correctos (12.00% a .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importar as moedas ($5.00 a 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "O ficheiro %s non contén ningún identificador de chave" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -7164,7 +7284,7 @@ msgstr "" msgid "Add prefix" msgstr "Aplicar índice(s)" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Sen cambios" @@ -7173,7 +7293,7 @@ msgid "Charset" msgstr "Conxunto de caracteres" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binario " @@ -7485,7 +7605,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Nome do usuario" @@ -7503,9 +7623,9 @@ msgid "Variable" msgstr "Variábel" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valor" @@ -7533,7 +7653,7 @@ msgstr "Calquera usuario" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Use campo de texto" @@ -7731,7 +7851,7 @@ msgid "Returns" msgstr "Tipo de retorno" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Tempo" @@ -7890,8 +8010,8 @@ msgstr "" msgid "Routine parameters" msgstr "Rutinas" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Función" @@ -8228,8 +8348,8 @@ msgstr "Linguaxe descoñecida: %1$s." msgid "Current Server" msgstr "Servidor actual" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Sincronizar" @@ -8251,7 +8371,7 @@ msgstr "Conxuntos de caracteres" msgid "Engines" msgstr "Motores" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Base de datos de orixe" @@ -8269,7 +8389,7 @@ msgstr "Servidor remoto" msgid "Difference" msgstr "Diferenza" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Base de datos de destino" @@ -8294,11 +8414,11 @@ msgstr "Limpar" msgid "Columns" msgstr "Nomes das columnas" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Gardar esta procura de SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Permitir que calquera usuario poida acceder a este marcador" @@ -8326,7 +8446,7 @@ msgstr "Só visualizar" msgid "Location of the text file" msgstr "Localización do arquivo de texto" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "directorio de recepción do servidor web" @@ -8535,23 +8655,29 @@ msgid "+ Add a value" msgstr "Engadir un servidor novo" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Visualizar valores alleos" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operador" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Procurar" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Inserir" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8757,8 +8883,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Non se atoparon ficheiros dentro do arquivo ZIP!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Houbo un erro no ficheiro ZIP:" @@ -8788,8 +8914,8 @@ msgstr "opcións" msgid "Protocol version" msgstr "Versión do protocolo" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Usuario" @@ -8952,7 +9078,7 @@ msgstr "" "Servidor a executarse con Suhosin. Consulte os posíbeis problemas na " "%sdocumentation%s." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Non hai ningunha base de datos" @@ -8981,7 +9107,7 @@ msgstr "Mostrar/Agochar o menú esquerdo" msgid "Save position" msgstr "Gardar a posición" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Crear táboas" @@ -9360,97 +9486,97 @@ msgstr "Motores de almacenamento" msgid "View dump (schema) of databases" msgstr "Ver o volcado das bases de datos" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Inclúe todos os privilexios a excepción de GRANT (Conceder)." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura das táboas xa existentes." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Permite alterar e eliminar rutinas armacenadas." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Permite crear bases de datos e táboas novas." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Permite crear rutinas almacenadas." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Permite crear táboas novas." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Permite crear táboas temporais." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crear, eliminar e mudar o nome das contas de usuario." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Permite crear vistas novas." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Permite eliminar datos." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Permite eliminar bases de datos e táboas." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Permite eliminar táboas." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Permite configurar acontecementos para o programador de acontecementos" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Permite executar rutinas almacenadas." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar e exportar datos desde e para ficheiros." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Permite engadir usuarios e privilexios sen recargar as táboas de privilexios." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Permite crear e eliminar índices." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituír datos." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Permite bloquear táboas do fío en uso" @@ -9479,52 +9605,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limita o número de conexións simultáneas que pode ter o usuario." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Permite ver procesos de todos os usuarios" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Non funciona nesta versión do MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Permite recargar a configuración do servidor e limpar a súa caché." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite que o usuario pregunte onde están os escravos e os masters." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Necesario para os escravos de replicación." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Permite gravar datos." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Permite acceder á listaxe completa de bases de datos" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite realizar consultas SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Permite apagar o servidor." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9535,45 +9661,45 @@ msgstr "" "ou matar os fíos doutros usuarios." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Permite crear e eliminar os disparadores" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Permite modificar datos." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Sen privilexios." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Ningunha" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Privilexios propios de táboa" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: os nomes de privilexios do MySQL están en inglés" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administración" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Privilexios globais" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Privilexios propios de base de datos" @@ -9593,7 +9719,7 @@ msgstr "Información sobre o acceso (login)" msgid "Do not change the password" msgstr "Non mude o contrasinal" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9644,7 +9770,7 @@ msgstr "Elimináronse sen problemas os usuarios seleccionados." msgid "The privileges were reloaded successfully." msgstr "Non houbo problemas ao recargar os privilexios." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Modificar privilexios" @@ -9652,36 +9778,36 @@ msgstr "Modificar privilexios" msgid "Revoke" msgstr "Revogar" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Calquera" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Vista xeral dos usuarios" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Conceder" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Eliminar os usuarios seleccionados" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Retirarlles todos os privilexios activos aos usuarios e eliminalos a " "continuación." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9694,51 +9820,51 @@ msgstr "" "privilexios que usa o servidor se se levaron a cabo alteracións manuais. " "Neste caso, debería %svolver a cargar os privilexios%s antes de proseguir." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Non se atopou o usuario seleccionado na táboa de privilexios." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Privilexios propios de columna" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Engadir privilexios para esta base de datos" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Os caracteres comodín _ e % deberíanse escapar con \\ para podelos usar " "literalmente" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Engadir privilexios para a esta táboa" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Modificar a información de acceso (login) / Copiar o utilizador" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Crear un utilizador novo cos mesmos privilexios e..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... manter o anterior." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... eliminar o anterior das táboas de utilizadores." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... retirarlle todos os privilexios activos ao anterior e eliminalo despois." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9746,48 +9872,48 @@ msgstr "" " ... eliminar o anterior das táboas de utilizadores e recargar os " "privilexios despois." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Base de datos para o usuario" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Ningunha" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Crear unha base de datos co mesmo nome e conceder todos os privilexios" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilexios para o nome con comodíns (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilexios sobre a base de datos "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Usuarios que teñen acceso a "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "específico da base de datos" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "comodín" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -11145,117 +11271,117 @@ msgid_plural "%d minutes" msgstr[0] "en uso" msgstr[1] "en uso" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Non foi posíbel conectar coa orixe" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Non foi posíbel conectar co destino" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Non existe a base de datos '%s'." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Sincronización da estrutura" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Sincronización dos datos" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "non está presente" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Diferenza da estrutura" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Diferenza dos datos" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Engadir columna(s)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Eliminar columna(s)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Alterar columna(s)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Eliminar índice(s)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Aplicar índice(s)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Actualizar fileira(s)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Inserir fileira(s)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Quere eliminar todas as fileiras anteriores das táboas de destino?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Aplicar as alteracións seleccionadas" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Sincronizar as bases de datos" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Sincronizáronse as táboas de destino seleccionadas coas táboas de orixe." -#: server_synchronize.php:902 +#: server_synchronize.php:986 #, fuzzy msgid "Target database has been synchronized with source database" msgstr "" "Sincronizáronse as táboas de destino seleccionadas coas táboas de orixe." -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "Solicitudes SQL" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "A conexión non é segura" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Ficheiro de configuración" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11659,36 +11785,36 @@ msgstr "A chave é curta de máis; debería ter un mínimo de oito caracteres" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "A chave debería conter letras, números [em]e[/em] caracteres especiais" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Mostrar procura SQL" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar o SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas cos índices da táboa `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Nome" @@ -11697,65 +11823,65 @@ msgstr "Nome" msgid "Table %1$s has been altered successfully" msgstr "Alterouse a táboa %1$s sen problemas" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Por causa da sua lonxitude,
este campo pode non ser editábel " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Eliminar a referencia ao repositorio BLOB" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binario - non editar " -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Enviar ao repositorio de BLOB" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Inserir unha columna nova" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 #, fuzzy msgid "Show insert query" msgstr "Mostrar procura SQL" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "e despois" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Voltar" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Inserir un rexistro novo" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Voltar para esta páxina" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Modificar a fileira seguinte" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL " "combinada cunha flecha para moverse a calquera sitio" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11845,53 +11971,49 @@ msgstr "Creouse a táboa %1$s." msgid "View dump (schema) of table" msgstr "Ver o esquema do volcado da táboa" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Mostrar a selección de servidores" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "Columnas de área de texto de CHAR" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- ningún -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Número de ficheiros de rexistro" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Enviar (gravar nun ficheiro)
" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12128,25 +12250,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "Límite das chaves alleas" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Faga unha \"procura por exemplo\" (o comodín é \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Seleccione os campos (mínimo un)" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Condición da pesquisa (ou sexa, o complemento da cláusula \"WHERE\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Número de rexistros por páxina:" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Mostrar en orde:" @@ -13798,9 +13920,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Crear unha versión" -#~ msgid "Add a new User" -#~ msgstr "Engadir un usuario novo" - #, fuzzy #~ msgid "Show table row links on left side" #~ msgstr "Mostrar o logotipo na moldura esquerda" diff --git a/po/he.po b/po/he.po index a19bc0cbf2..0878755013 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-03-02 20:17+0200\n" "Last-Translator: \n" "Language-Team: hebrew \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "הצג הכל" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -35,19 +35,20 @@ msgid "" "cross-window updates." msgstr "עדכון חלון הדפדפן הנבחר נכשל." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "חיפוש" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -65,14 +66,14 @@ msgstr "חיפוש" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -134,8 +135,8 @@ msgstr "הערות טבלה" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -152,8 +153,8 @@ msgstr "שמות עמודה" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -164,7 +165,7 @@ msgstr "סוג" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -207,10 +208,10 @@ msgstr "הערות" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "לא" @@ -229,9 +230,9 @@ msgstr "לא" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "מעבר למאגר נתונים שהועתק" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -364,15 +365,15 @@ msgstr "הצגת תרשים PDF" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "טבלה" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -433,19 +434,19 @@ msgstr "סידור" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "עולה" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "יורד" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "ראייה" @@ -466,8 +467,8 @@ msgid "Del" msgstr "מחיקה" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "או" @@ -500,7 +501,7 @@ msgstr "השתמש בטבלאות" msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "שליחת שאילתה" @@ -539,8 +540,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "עיון" @@ -552,7 +553,7 @@ msgid "Delete the matches for the %s table?" msgstr "הוצאת מידע עבור טבלה" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -630,7 +631,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -659,22 +660,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQL זה." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "עם הנבחרים:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "בחירת הכל" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "בטל סימון הכל" @@ -682,10 +683,10 @@ msgstr "בטל סימון הכל" msgid "Check tables having overhead" msgstr "בדיקת טבלאות עבור תקורה" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -693,17 +694,17 @@ msgid "Export" msgstr "ייצוא" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "תצוגת הדפסה" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "ריקון" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -755,9 +756,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "מאגר נתונים" @@ -777,15 +778,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "מצב" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "פעולה" @@ -842,7 +843,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -875,6 +876,93 @@ msgstr "לשרת אין הרשאה לשמור את קובץ %s." msgid "Dump has been saved to file %s." msgstr "הוצאה נשמרה אל קובץ %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "הוספת שדה חדש" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "שורות מסתיימות ע\"י" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "הוספת משתמש חדש" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "הוספת משתמש חדש" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "הוספת %s תאים" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "הוספת משתמש חדש" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -915,7 +1003,7 @@ msgstr "כתובת מועדפת נמחקה." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -938,7 +1026,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -962,15 +1050,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "הוראות \"DROP DATABASE\" מבוטלות." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "האם אתה באמת רוצה " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "אתה עומד להרוס מאגר נתונים שלם!" @@ -1038,8 +1126,8 @@ msgstr "הסיסמא ריקה!" msgid "The passwords aren't the same!" msgstr "הסיסמאות אינן זהות!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1062,8 +1150,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1102,12 +1190,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1194,12 +1282,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1301,7 +1389,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "ללא" @@ -1714,8 +1802,8 @@ msgstr "שאילתת SQL" msgid "No rows selected" msgstr "לא נבחרו שורות" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "שינוי" @@ -1727,8 +1815,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "שמירה" @@ -1742,7 +1830,7 @@ msgstr "שאילתת SQL" msgid "Show search criteria" msgstr "שאילתת SQL" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1786,109 +1874,117 @@ msgstr "הוספת/מחיקת עמודות שדה" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "התעלמות" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "העתקה" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "הוספת %s תאים" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "בחירת שדה להצגה" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "ייצור סיסמא" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "ייצור" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "שינוי סיסמא" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "יום שני" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1896,30 +1992,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "אין מאגרי נתונים" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "ללא" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "הקודם" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1927,96 +2023,96 @@ msgid "Next" msgstr "הבא" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "סה\"כ" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "בינארי" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "מרץ" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "אפריל" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "מאי" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "יוני" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "יולי" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "אוגוסט" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "אוקטובר" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2024,78 +2120,78 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "דצמבר" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "יום ראשון" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "יום שני" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "יום שלישי" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "יום שישי" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2103,105 +2199,110 @@ msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "שבת" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "יום ראשון" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "יום שני" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "יום שלישי" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "יום רביעי" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "יום חמישי" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "יום שישי" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "שבת" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "בשימוש" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "לשנייה" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2307,13 +2408,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "מאגרי נתונים" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "שגיאה" @@ -2440,7 +2541,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2609,7 +2710,7 @@ msgstr "טבלאות" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "נתונים" @@ -2675,7 +2776,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "שרת" @@ -2740,104 +2841,104 @@ msgstr "שאילתת SQL" msgid "MySQL said: " msgstr "MySQL אמר: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "הסברת SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "ללא קוד PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "ייצור קוד PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "רענון" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 #, fuzzy msgid "Skip Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "בדיקת תקינות SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "מנועים" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "יום ראשון" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ימים, %s שעות, %s דקות ו- %s שניות" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "הוספת שדה חדש" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2845,7 +2946,7 @@ msgctxt "First page" msgid "Begin" msgstr "התחלה" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2854,7 +2955,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "הקודם" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2863,7 +2964,7 @@ msgctxt "Next page" msgid "Next" msgstr "הבא" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2871,34 +2972,34 @@ msgctxt "Last page" msgid "End" msgstr "סיום" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "קפיצה אל מאגר נתונים "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "מבנה" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2906,37 +3007,37 @@ msgstr "מבנה" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "הכנסה" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "פעולות" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format msgid "Select from the web server upload directory %s:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3113,7 +3214,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "איפוס" @@ -3371,7 +3472,7 @@ msgid "Character set of the file" msgstr "חבילת הקידוד של הקובץ:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "תבנית" @@ -4980,7 +5081,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "סיסמא" @@ -5262,8 +5363,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "הרשאות" @@ -5282,7 +5383,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5343,7 +5444,7 @@ msgid "Create" msgstr "יצירה" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "ללא הרשאות" @@ -5689,12 +5790,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "פעולות" @@ -5729,8 +5830,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5740,10 +5841,6 @@ msgstr "" msgid "Browser transformation" msgstr "שינויי צורה זמינים" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5752,60 +5849,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "העתקה" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "השורה נמחקה" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "בשאילתה" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "מראה שורות" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "סה\"כ" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "שאילתה לקחה %01.4f שניות" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "תצוגת הדפסה (עם טקסטים מלאים)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "מציג הערות עמודה" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "גרסת שרת" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "קישור לא נמצא" @@ -5985,7 +6078,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "סידור" @@ -6317,7 +6410,7 @@ msgstr "סוגי MIME זמינים" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "מארח" @@ -6520,7 +6613,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6532,50 +6625,50 @@ msgstr "תוצאת SQL" msgid "Generated by" msgstr "נוצר ע\"י" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "אין מאגרי נתונים" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "מבנה בלבד" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6626,7 +6719,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6647,6 +6740,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "MySQL 4.0 compatible" @@ -6700,7 +6817,7 @@ msgstr "" msgid "Add prefix" msgstr "הוספת שדה חדש" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "ללא שינוי" @@ -6709,7 +6826,7 @@ msgid "Charset" msgstr "קידוד" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "בינארי" @@ -7014,7 +7131,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "שם משתמש" @@ -7032,9 +7149,9 @@ msgid "Variable" msgstr "משתנה" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "ערך" @@ -7060,7 +7177,7 @@ msgstr "כל משתמש" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "השתמש בשדה טקסט" @@ -7250,7 +7367,7 @@ msgid "Returns" msgstr "אפשרויות טבלה" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "זמן" @@ -7403,8 +7520,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "פונקציה" @@ -7722,8 +7839,8 @@ msgstr "" msgid "Current Server" msgstr "שרת" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7745,7 +7862,7 @@ msgstr "קידודים" msgid "Engines" msgstr "מנועים" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "חפש במסד הנתונים" @@ -7764,7 +7881,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "חפש במסד הנתונים" @@ -7791,11 +7908,11 @@ msgstr "לוח שנה" msgid "Columns" msgstr "שמות עמודה" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" @@ -7823,7 +7940,7 @@ msgstr "ראה רק" msgid "Location of the text file" msgstr "מיקום של קובץ טקסט" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 #, fuzzy msgid "web server upload directory" msgstr "שמירת שרת בתוך תיקיית %s" @@ -8015,24 +8132,30 @@ msgid "+ Add a value" msgstr "הוספת משתמש חדש" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 #, fuzzy msgid "Operator" msgstr "פעולות" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "חיפוש" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "הכנסה" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8156,8 +8279,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8185,8 +8308,8 @@ msgstr "תכונות קשר כלליות" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "משתמש" @@ -8321,7 +8444,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "אין מאגרי נתונים" @@ -8349,7 +8472,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "יצירת עמוד חדש" @@ -8717,100 +8840,100 @@ msgstr "מנועי אחסון" msgid "View dump (schema) of databases" msgstr "ראיית הוצאה (תבנית) של מאגרי נתונים" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "כלול כל ההרשאות חוץ מ- GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "מאפשר שינוי של מבני הטבלאות הקיימות." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 #, fuzzy msgid "Allows creating new databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "מאפשר יצירת טבלאות חדשות." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "מאפשר יצירת טבלאות זמניות." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 #, fuzzy msgid "Allows creating new views." msgstr "מאפשר יצירת טבלאות חדשות." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "מאפשר מחיקת מידע." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "מאפשר מחיקת מאגרי נתונים וטבלאות." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "מאפשר מחיקת טבלאות." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 #, fuzzy msgid "Allows executing stored routines." msgstr "מאפשר יצירת שגרות מאוחסנות." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8837,53 +8960,53 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 #, fuzzy msgid "Allows reading data." msgstr "מאפשר מחיקת מידע." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8891,46 +9014,46 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 #, fuzzy msgid "Allows changing data." msgstr "מאפשר מחיקת מידע." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "ללא הרשאות." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "ללא" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "הרשאות ספציפיות-לטבלאות" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "הערה: שמות הרשאות MySQL מובטאות באנגלית " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "ניהול" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "הרשאות גלובליות" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "הרשאות ספציפיות למאגר נתונים" @@ -8950,7 +9073,7 @@ msgstr "מידע כניסה" msgid "Do not change the password" msgstr "אל תשנה את הסיסמא" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9002,7 +9125,7 @@ msgstr "%s מסדי נתונים נמחקו בהצלחה." msgid "The privileges were reloaded successfully." msgstr "ההרשאות נטענו מחדש בהצלחה." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "עריכת הרשאות" @@ -9010,34 +9133,34 @@ msgstr "עריכת הרשאות" msgid "Revoke" msgstr "שלילה" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "כל דבר" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "סקירת משתמשים" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "הענקה" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "הסרת משתמשים שנבחרו" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "שלילת כל ההרשאות הפעילות מהמשתמשים ומחיקתם לאחר מכן." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9049,95 +9172,95 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "הרשאות ספציפיות-לעמודה" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "הוספת הרשאות למאגר הנתונים הבא" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "תווים כללים _ וגם % צריכים לבוא ביחד עם \\ על מנת להשתמש בהם באמת" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "הוספת הראשאות לטבלה הבאה" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "שינוי מידע כניסה / העתקת משתמש" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "יצירת משתמש חדש עם אותן ההרשאות וגם ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... שמירת הישן." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... מחיקת הישן מטבלאות המשתמשים." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... בטל את כל ההרשאות הפעילות מהישן ומחק אותו לאחר מכן." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... מחיקת הישן מטבלאות המשתמשים וטען מחדש את ההרשאות לאחר מכן." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "ללא" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "בדיקת הראשות עבור מאגר נתונים "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "עולמי" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "ספציפי למאגר הנתונים" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "תו כללי" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy msgid "User has been added." msgstr "שדה %s נמחק" @@ -10313,113 +10436,113 @@ msgid_plural "%d minutes" msgstr[0] "בשימוש" msgstr[1] "בשימוש" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "שאילתת SQL" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "חיבורים" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10715,36 +10838,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "בדיקת תקינות SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "בעיות עם אינדקסים של טבלה `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "תווית" @@ -10753,62 +10876,62 @@ msgstr "תווית" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "משום אורכם,
השדה הזה יכול להיות בלתי עריך " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "בינארי - אין לערוך" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "הכנסה כשורה חדשה" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "ואז" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "חזרה לעמוד הקודם" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "הוספה נוספת של שורה חדשה" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "חזרה אחורה לעמוד זה" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "עריכת השורה הבאה" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10894,49 +11017,45 @@ msgstr "טבלה %s נמחקה" msgid "View dump (schema) of table" msgstr "ראיית הוצאה (תבנית) של טבלה" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "הוספת/מחיקת עמודות שדה" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "סה\"כ" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "שמירה כקובץ" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11170,25 +11289,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "בחירת שדות (לפחות אחד):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "הוספת תנאי חיפוש (הגוף של תנאי \"where\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "מספר של שורות לכל דף" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "סדר תצוגה:" @@ -12736,9 +12855,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "גרסת שרת" -#~ msgid "Add a new User" -#~ msgstr "הוספת משתמש חדש" - #~ msgid "Delete the matches for the " #~ msgstr "הוצאת מידע עבור טבלה" diff --git a/po/hi.po b/po/hi.po index 70e2b6b1a2..9558a6f09c 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-07-24 19:04+0200\n" "Last-Translator: \n" "Language-Team: hindi \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "सभी दिखाएँ" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "लक्ष्य ब्राउज़र विंडो को अद्यतन नहीं किया जा सकता है. शायद आपने मूल विंडो बंद कर दिया है," "या अपनी ब्राउसर की सिक्यूरिटी सेट्टिंग को क्रोस-विंडो अद्यतन के लिए कांफिगुर कर रखा है." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "ढूंढें" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "ढूंढें" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -138,8 +139,8 @@ msgstr "टेबल टिप्पणि:" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -154,8 +155,8 @@ msgstr "स्तम्भ" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -166,7 +167,7 @@ msgstr "प्रकार/किस्म" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -209,10 +210,10 @@ msgstr "टिप्पणी" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "नहीं" @@ -231,9 +232,9 @@ msgstr "नहीं" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -334,7 +335,7 @@ msgstr "नक़ल किये गए डाटाबेस पर जाय #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -359,15 +360,15 @@ msgstr "संबंधपरक स्कीमा को संपादित #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "टेबल " #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -427,19 +428,19 @@ msgstr "सॉर्ट" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "आरोही" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "अवरोही" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "दिखाओ" @@ -460,8 +461,8 @@ msgid "Del" msgstr "हटाइए" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "अथवा" @@ -490,7 +491,7 @@ msgstr "टेबल का उपयोग करो" msgid "SQL query on database %s:" msgstr "डेटाबेस %s पर SQL क्वरी:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "क्वरी भेजें" @@ -529,8 +530,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s टेबल के अंदर %s मैच हैं." msgstr[1] "%s टेबल के अंदर %s मैच हैं." -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "ब्राउज़" @@ -541,7 +542,7 @@ msgid "Delete the matches for the %s table?" msgstr "इस %s टेबल से मैच हटाएँ" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -610,7 +611,7 @@ msgstr "ट्रैकिंग सक्रिय है" msgid "Tracking is not active." msgstr "ट्रैकिंग सक्रिय नहीं है." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -638,22 +639,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s इस MySQL सर्वर पर तयशुदा भंडारण इंजन है." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "चुने हुओं को:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "सभी को चेक करें" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "सभी को अनचेक करें" @@ -661,10 +662,10 @@ msgstr "सभी को अनचेक करें" msgid "Check tables having overhead" msgstr "ओवर्हेअद वाली तालुकाओं को चेक करें." -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -672,17 +673,17 @@ msgid "Export" msgstr "निर्यात" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "छपाई द्रश्य." -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "खाली" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -730,9 +731,9 @@ msgstr "ट्रैक की गयी टेबलएं" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "डाटाबेस" @@ -751,15 +752,15 @@ msgstr "अद्यतन" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "स्थिति" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "कार्य" @@ -812,7 +813,7 @@ msgstr "हर एक मान अलग क्षेत्र में दर msgid "+ Restart insertion and add a new value" msgstr "+ प्रविष्टि पुनः आरंभ करें और एक नया मान जोड़ने के लिए" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "उत्पादन" @@ -846,6 +847,95 @@ msgstr "वेब सर्वर के पास फ़ाइल %s को स msgid "Dump has been saved to file %s." msgstr "डंप को %s फाइल में सेव किया गया है." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "\"%s\" काँलम के लिए मान " + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add index" +msgid "Add a point" +msgstr "अनुक्रमणिका जोड़" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "लाईन समाप्त होता है" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "नया यूसर जोडें" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "नया यूसर जोडें" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "नया काँलम जोडें" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "एक नया सर्वर जोडें" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -893,7 +983,7 @@ msgstr "यह बुकमार्क हटा दिया गया है" msgid "Showing bookmark" msgstr "बुकमार्क प्रदर्शित किया जा रहा है." -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "बुकमार्क %s बनाया" @@ -919,7 +1009,7 @@ msgstr "" "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -943,15 +1033,15 @@ msgstr "चयन करने के लिए क्लिक करें." msgid "Click to unselect" msgstr "रद्द करने के लिए क्लिक करें." -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" बयान अक्षम हैं." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "क्या आप सचमुच चाहते है की" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "आप एक पूरा डेटाबेस नष्ट कर रहे हैं! " @@ -1015,8 +1105,8 @@ msgstr "पासवर्ड खाली है" msgid "The passwords aren't the same!" msgstr "पासवर्ड मिलते झूलते नहीं हैं." -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "naya upyokta" @@ -1034,8 +1124,8 @@ msgid "Close" msgstr "बंद" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1075,12 +1165,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1171,12 +1261,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1283,7 +1373,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "कोई नहीं" @@ -1685,8 +1775,8 @@ msgstr "क्वेरी बॉक्स दिखाएँ" msgid "No rows selected" msgstr "कोई चयनित रो नहीं" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "बदलिये" @@ -1700,8 +1790,8 @@ msgstr "अधिकतम निष्पादन समय" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "बचाना" @@ -1713,7 +1803,7 @@ msgstr "खोज मापदंड छिपाना" msgid "Show search criteria" msgstr "खोज मापदंड दिखाना" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1757,105 +1847,113 @@ msgstr "कोलम जोडें/हटायें" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "ध्यान न देना" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "अनुकृति" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "नया काँलम जोडें" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "संदर्भित कुंजी का चयन करें." -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "विदेश कुंजी का चयन करें." -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "कृपया प्राथमिक कुंजी या एक अद्वितीय कुंजी का चयन करें" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "प्रदर्शित करने के लिए काँलम चयन करें." -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "काँलम के लिए एक विकल्प जोड़ें" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "चयन करने के लिए क्लिक करें." -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "दृश्य पर जायें" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "पासव्रड उत्पन्न करें" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "उत्पन्न" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "पासवर्ड बदलिये " -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "अधिक" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1864,29 +1962,29 @@ msgstr "" "phpMyAdmin का एक नया संस्करण उपलब्ध है, यह नया संस्करण %s है,और यह %s को प्रकाशित हुआ" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", नवीनतम स्थिर संस्करण:" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "डेटाबेस को कूद" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "किया" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "पिछला" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1894,149 +1992,149 @@ msgid "Next" msgstr "अगला" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "आज" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "जनवरी" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "फरवरी" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "मार्च" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "अप्रैल" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "मई" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "जून" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "जुलाई" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "अगस्त" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "सितम्बर" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "अक्तूबर" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "नवम्बर" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "दिसमबर" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "रविवार" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "सोमवार" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "मन्गलवार" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "बुधवार" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "गुरूवार" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "शुक्रवार" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2044,87 +2142,92 @@ msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "मन्गलवार" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "शनिवार" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "रविवार" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "सोमवार" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "मन्गलवार" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "बुधवार" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "गुरुवार" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "शुक्रवार" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "शनिवार" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "हफ्ता" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "घंटा" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "मिनट" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "सेकंड" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "फ़ॉन्ट का आकार" @@ -2232,13 +2335,13 @@ msgstr "सूचकांक %1s और %2s बराबर लगने के #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "डाटाबेस" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "त्रुटि" @@ -2371,7 +2474,7 @@ msgstr "विषयवस्तु %s नहीं मिला है!" msgid "Theme path not found for theme %s!" msgstr "विषय %s के लिए थीम पथ नहीं मिला है!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2544,7 +2647,7 @@ msgstr "टेबल" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "डाटा" @@ -2611,7 +2714,7 @@ msgstr "%1$s सर्वर के लिए होस्टनाम अवै #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "सर्वर" @@ -2676,101 +2779,101 @@ msgstr "SQL क्वरी" msgid "MySQL said: " msgstr "MySQL ने कहा: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "SQL वलिदटर से जुड़ने में विफल" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL की व्याख्या " -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "SQL की व्याख्या को छोड़ जाना" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "php कोड के बिना" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP Code बनाओ" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "ताज़ा करना" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL की पुष्टि को छोड़ जाना" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL की पुष्टि करना" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "इस कुएरी की इनलाइन एडिट" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "इनलाइन" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "रूपरेखा" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "बैट्स" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "रविवार" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y को %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "नियमित कार्य" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2778,7 +2881,7 @@ msgctxt "First page" msgid "Begin" msgstr "प्रारंभ" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2787,7 +2890,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "पिछला" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2796,7 +2899,7 @@ msgctxt "Next page" msgid "Next" msgstr "अगला" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2804,36 +2907,36 @@ msgctxt "Last page" msgid "End" msgstr "आखरी" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr ""%s" डेटाबेस पर जायें " -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s कार्यक्षमताएक एक बग के द्वारा जनि जाती है| %s पर ध्यान दे " -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "चयन करने के लिए क्लिक करें." -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "संरचना" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2841,37 +2944,37 @@ msgstr "संरचना" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "इनसर्ट" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "कार्रवाई" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "अपने कंप्यूटर ब्राउज़ करें" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "अपने वेब सर्वर डिरेक्टरी से अपलोड चुने %s; " -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3039,7 +3142,7 @@ msgstr "कर्ता को इस मूल्य को अनुकूल #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "रीसेट" @@ -3299,7 +3402,7 @@ msgid "Character set of the file" msgstr "फ़ाइल का चरित्र सेट" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "प्रारूप" @@ -4887,7 +4990,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "पासवर्ड" @@ -5165,8 +5268,8 @@ msgid "Designer" msgstr "डिजाइनर" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "प्रिविलेज" @@ -5185,7 +5288,7 @@ msgstr "" msgid "Triggers" msgstr "ट्रिगर" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5245,7 +5348,7 @@ msgid "Create" msgstr "बनाइये" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "कोइ प्रिविलेज नहीं" @@ -5556,12 +5659,12 @@ msgstr "कुंजी सॉर्ट" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "विकल्प" @@ -5589,8 +5692,8 @@ msgstr "द्विआधारी सामग्री दिखाने" msgid "Show BLOB contents" msgstr "BLOB सामग्री दिखाने" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "छिपाना" @@ -5599,10 +5702,6 @@ msgstr "छिपाना" msgid "Browser transformation" msgstr "सामग्री दिखाने" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5611,59 +5710,55 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "अनुकृति" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "रौ देखिये" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "कुल" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display Features" msgid "Display chart" msgstr "फीचरस दिखाओ" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "दृश्य बनाइये" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "लिंक नहीं मिला" @@ -5842,7 +5937,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "" @@ -6163,7 +6258,7 @@ msgstr "फीचरस दिखाओ" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "होस्ट" @@ -6365,7 +6460,7 @@ msgstr "निर्यात सामग्री" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin की नई विंडो खोलें" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6379,54 +6474,54 @@ msgstr "SQLपरिणाम" msgid "Generated by" msgstr "द्वारा उत्पन्न" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ने एक खाली परिणाम सेट लोताया" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 #, 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:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "डेटाबेस पर जायें" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "%s के लिए डेटा लापता" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "टेबल पर जायें" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "केवल संरचना" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "दृश्य पर जायें" @@ -6477,7 +6572,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "टेबल का नाम" @@ -6498,6 +6593,32 @@ msgstr "प्रतिशत को उचित दशमलव के रू msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "आयात मुद्राओं ($5.00 से 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "%s फाइल में कोई भी प्रमुख आईडी नहीं है" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "SQL संगतता मोड" @@ -6549,7 +6670,7 @@ msgstr "" msgid "Add prefix" msgstr "अनुक्रमणिका जोड़" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "कोइ बदलाव नहीं" @@ -6558,7 +6679,7 @@ msgid "Charset" msgstr "कोई" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "बइनरी" @@ -6863,7 +6984,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "यूसर नेम" @@ -6881,9 +7002,9 @@ msgid "Variable" msgstr "स्थिति" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "मूल्य" @@ -6909,7 +7030,7 @@ msgstr "कोई भी यूसर" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "" @@ -7103,7 +7224,7 @@ msgid "Returns" msgstr "रिटर्न प्रकार" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "समय" @@ -7262,8 +7383,8 @@ msgstr "" msgid "Routine parameters" msgstr "नियमित कार्य" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "" @@ -7595,8 +7716,8 @@ msgstr "अज्ञात भाषा: %1$s." msgid "Current Server" msgstr "मौजूदा सर्वर" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "सिंक्रनाइज़" @@ -7618,7 +7739,7 @@ msgstr "चरित्र सेट" msgid "Engines" msgstr "इंजन" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "स्रोत डेटाबेस" @@ -7636,7 +7757,7 @@ msgstr "दूरस्थ सर्वर" msgid "Difference" msgstr "अंतर" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "लक्ष्य डेटाबेस" @@ -7661,11 +7782,11 @@ msgstr "स्पष्ट" msgid "Columns" msgstr "कोलम" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" @@ -7693,7 +7814,7 @@ msgstr "केवल देखिये" msgid "Location of the text file" msgstr "पाठ फ़ाइल का स्थान" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "वेब सर्वर अपलोड निर्देशिका" @@ -7867,23 +7988,29 @@ msgid "+ Add a value" msgstr "नयी वलुए जोडें" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "विदेशी मूल्य ब्राउस करें " -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "ऑपरेटर" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "ढूंढें" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "इनसर्ट" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8007,8 +8134,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "ज़िप संग्रह के अंदर कोई फाइल नहीं मिली" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "ज़िप संग्रह में त्रुटि" @@ -8036,8 +8163,8 @@ msgstr "अधिक सेटिंग्स" msgid "Protocol version" msgstr "अधिक सेटिंग्स" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "यूसर" @@ -8166,7 +8293,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "कोइ डाटाबेस नहिं" @@ -8195,7 +8322,7 @@ msgstr "शो/छिपाना बाएँ मेनू" msgid "Save position" msgstr "स्थिति को बचा" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "टेबल बनायें" @@ -8552,96 +8679,96 @@ msgstr "संचयन ोोोइंजन" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "ेेोीाेेGRANT के अतिरिक्त सभी इंजन शामिल" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "मौजूदा टेबल की संरचना में फेरबदल की अनुमति देता है" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "संग्रहित routines की फेरबदल और छोड़ने की अनुमति देता है" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "नया डेटाबेस और टेबल बनाने की अनुमति देता है" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "नया नियमित कार्यक्रम बनाने की अनुमति देता है" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "नया टेबल बनाने की अनुमति देता है" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "नया अस्थायी टेबल बनाने की अनुमति देता है" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "यूसर खातों बनाने, गिराना और नाम बदलने की अनुमति देता है" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "नए दृश्य बनाने की अनुमति देता है" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "डेटा को हटाने की अनुमति देता है" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "डेटाबेस और टेबल को हटाने की अनुमति देता है" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "टेबल को हटाने की अनुमति देता है" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "घटना अनुसूचक के लिए घटना को स्थापित करने की अनुमति देता है" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "डेटा फ़ाइलों में आयात और निर्यात करने की अनुमति देता है" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "सूचक बनाने और हटाने की अनुमति देता है" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "डेटा डालने और हटाने की अनुमति देता है" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8670,52 +8797,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "यूसर के समकालिक कनेक्शन की संख्या सिमित है" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "सभी यूसरओं प्रक्रियाओं को देखने की अनुमति" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "इस MySQL संस्करण में कोई प्रभाव नहीं है" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "सर्वर सेटिंग्स को पुन: लोड और सर्वर के कैश निस्तब्धता की अनुमति देता है" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "डाटा पढने की अनुमति देता है" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "डेटाबेस की पूरी सूची तक पहुंचा देता है" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "सर्वर बन्द करने की अनुमति देता है" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8723,45 +8850,45 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "डेटा को बदलने की अनुमति देता है" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "कोई प्रिविलेज नहीं" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "No" msgctxt "None privileges" msgid "None" msgstr "नहीं" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "केवल टेबल के प्रिविलेज" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "नोट: MySQL प्रिविलेज नामों को अंग्रेजी मे लिखा गया है " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "एडमिनिस्ट्रेशन" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "वैश्विक प्रिविलेज" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "केवल डाटाबेस के प्रिविलेज" @@ -8781,7 +8908,7 @@ msgstr "प्रवेश जानकारी" msgid "Do not change the password" msgstr "पासवर्ड मत बदलिये" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -8832,7 +8959,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "चयनित यूसर को सफलतापूर्वक हटा दिया गया है" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "प्रिविलेज एडिट करें" @@ -8840,34 +8967,34 @@ msgstr "प्रिविलेज एडिट करें" msgid "Revoke" msgstr "वापस लो" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "कोई" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "यूसर सिंहावलोकन" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "अनुदान" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "चयनित यूसर हटायें" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "यूसर से सभी सक्रिय विशेषाधिकार रद्द करने और उन्हें बाद में हटा" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8876,95 +9003,95 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "केवल कोलम के प्रिविलेज" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "इन टेबल के लिये विशेषाधिकार जोडें" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... पुराने रखना" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "पुराने यूसर को टेबल से हटाना" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "यूसर के लिए डेटाबेस" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "No" msgctxt "Create none database for user" msgid "None" msgstr "यूसर के लिए डेटाबेस न बनाये" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "एक ही नाम के साथ डेटाबेस बनाएँ और सभी विशेषाधिकारों को अनुदान" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "वाइल्डकार्ड नाम (यूसरनाम\\_%) पर सभी विशेषाधिकार अनुदान " -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" डेटाबेस पर सभी विशेषाधिकारों का अनुदान करें" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "वैश्विक" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "डेटाबेस-विशेष" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "वाइल्डकार्ड" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10148,111 +10275,111 @@ msgid_plural "%d minutes" msgstr[0] "मिनट" msgstr[1] "मिनट" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "स्रोत से कनेक्ट नहीं कर सका" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "लक्ष्य से कनेक्ट नहीं कर सका" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' डेटाबेस मौजूद नहीं है" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "संरचना तुल्यकालन" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "डेटा तुल्यकालन" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "मौजूद नहीं" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "संरचना अंतर" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "डेटा अंतर" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "काँलम जोड़ना" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "काँलम हटाना" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "काँलम बदलना" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "सूचकांक हटायें" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "सूचकांक लागू" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "अद्यतन रोयाँ" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "इनसर्ट रोयाँ" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "चयनित परिवर्तन लागू करें" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "सिंक्रनाइज़ डेटाबेस" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "चयनित लक्ष्य टेबल स्रोत टेबल के साथ सिंक्रनाइज़ किया जा चूका है" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "लक्ष्य डेटाबेस स्रोत डेटाबेस के साथ सिंक्रनाइज़ किया जा चूका है" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL क्वरी" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "मैन्युअली दर्ज करें" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "वर्तमान कनेक्शन" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "विन्यास: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "साकेट" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10544,34 +10671,34 @@ msgstr "कुंजी बहुत छोटा है, इसमें कम msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "इनसर्ट रो id: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "PHP कोड की तरह दिखाएँ" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "SQL क्वेरी शो" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "SQL मान्य" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "लेबल" @@ -10580,60 +10707,60 @@ msgstr "लेबल" msgid "Table %1$s has been altered successfully" msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "BLOB रिपोजिटरी संदर्भ हटायें" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "बइनरी - एडिट मत करिये" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "BLOB भण्डार में अपलोड करें" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "इसको नया रौ में जोडे " -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "और फिर" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "पिछले पृष्ट पर वापस जाएँ" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "एक और नई रो इनसर्ट करें" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "इस पृष्ठ पर वापस जाएँ" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "अगली रो को संपादित करें" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10720,53 +10847,49 @@ msgstr "%1$s टेबल बना दिया गया है" msgid "View dump (schema) of table" msgstr "टेबल डंप दृश्य" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "सर्वर चयन प्रदशित करें" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "चौड़ाई " -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "ऊँचाई" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Textarea columns" msgid "Label column" msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- कोई नहीं -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "कुल" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "फिर से बनाएं" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "फाईल मे सेव करें" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -10989,23 +11112,23 @@ msgstr "एक आंतरिक संबंध आवश्यक नही msgid "Foreign key constraint" msgstr "विदेशी कुंजी बाधा" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "काँलम चुनें (कम से कम एक)" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "खोज शर्तें जोडें (\"where\" खंड के शरीर में)" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "प्रति पृष्ट कितने रौ" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "क्रम से दिखाओ:" @@ -12655,9 +12778,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "यूसर बनाइये" -#~ msgid "Add a new User" -#~ msgstr "नया यूसर जोडें" - #~ msgid "Show table row links on left side" #~ msgstr "रो लिंक बाईं ओर देखएं" diff --git a/po/hr.po b/po/hr.po index def4eb6c82..24de560f8d 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-07-21 14:54+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: croatian \n" @@ -15,13 +15,13 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Prikaži sve" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgstr "" "nadređeni prozor ili su postavke sigurnosti vašeg preglednika konfigurirane " "za blokiranje ažuriranja preko više prozora." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Traži" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "Traži" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "Komentari tablice" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -158,8 +159,8 @@ msgstr "Nazivi stupaca" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -170,7 +171,7 @@ msgstr "Vrsta" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -213,10 +214,10 @@ msgstr "Komentari" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Ne" @@ -235,9 +236,9 @@ msgstr "Ne" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -341,7 +342,7 @@ msgstr "Prebaci se na kopiranu bazu podataka" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -371,15 +372,15 @@ msgstr "Shema relacija" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tablica" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -440,19 +441,19 @@ msgstr "Presloži" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Uzlazno" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Silazno" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Prikaži" @@ -473,8 +474,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Ili" @@ -507,7 +508,7 @@ msgstr "Upotrijebi tablice" msgid "SQL query on database %s:" msgstr "SQL upit nad bazom podataka %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Podnesi upit" @@ -547,8 +548,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s poklapanja unutar tablice %s" msgstr[1] "%s poklapanja unutar tablice %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Pretraživanje" @@ -560,7 +561,7 @@ msgid "Delete the matches for the %s table?" msgstr "Izbacivanje podataka za tablicu" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -638,7 +639,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -667,22 +668,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "S odabirom:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Ukloni sve oznake" @@ -690,10 +691,10 @@ msgstr "Ukloni sve oznake" msgid "Check tables having overhead" msgstr "Provjeri za prepunjene tablice" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -701,17 +702,17 @@ msgid "Export" msgstr "Izvoz" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Prikaz ispisa" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Isprazni" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -765,9 +766,9 @@ msgstr "Provjeri tablicu" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Baza podataka" @@ -788,15 +789,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Stanje" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Aktivnost" @@ -854,7 +855,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -889,6 +890,93 @@ msgstr "Web poslužitelj nema dopuštenja za spremanje datoteke %s." msgid "Dump has been saved to file %s." msgstr "Izbacivanje je spremljeno u datoteku %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a point" +msgstr "Dodaj %s polja" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Redovi završeni s" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Dodaj novog korisnika" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Dodaj novog korisnika" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "Dodaj %s polja" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Dodaj novog korisnika" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -937,7 +1025,7 @@ msgstr "Favorit je izbrisan." msgid "Showing bookmark" msgstr "Prikazivanje oznake" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Izrađen je favorit %s" @@ -965,7 +1053,7 @@ msgstr "" "povećate vremenska ograničenja unutar php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -991,15 +1079,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" izjave su onemogućene." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Želite li zaista " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "UNIŠTIT ĆETE CJELOKUPNU BAZU PODATAKA!" @@ -1069,8 +1157,8 @@ msgstr "Lozinka je prazna!" msgid "The passwords aren't the same!" msgstr "Lozinke se ne podudaraju!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1094,8 +1182,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1134,12 +1222,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1231,12 +1319,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "kB" @@ -1342,7 +1430,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "bez kompresije" @@ -1758,8 +1846,8 @@ msgstr "SQL upit" msgid "No rows selected" msgstr "Nema odabranih redova" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Promijeni" @@ -1771,8 +1859,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Spremi" @@ -1786,7 +1874,7 @@ msgstr "SQL upit" msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1830,110 +1918,118 @@ msgstr "Dodaj/Izbriši stupce polja" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignoriraj" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Dodaj %s polja" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Odaberite referentni ključ" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Odaberite strani ključ" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Odaberite primarni ključ ili jedinstveni ključ" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Odaberi polje za prikaz" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy msgid "Go to link" msgstr "Nema baza podataka" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generiraj lozinku" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generiraj" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promijeni lozinku" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1941,30 +2037,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy msgid ", latest stable version:" msgstr "Izradi relaciju" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Nema baza podataka" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy msgid "Done" msgstr "Podaci" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodni" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1972,96 +2068,96 @@ msgid "Next" msgstr "Sljedeće" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarno" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Ožu" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Tra" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Svi" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Lip" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Srp" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Kol" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Lis" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2069,78 +2165,78 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Pro" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2148,107 +2244,112 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "u upotrebi" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "po sekundi" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Veličina fonta" @@ -2359,13 +2460,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Baze podataka" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Pogreška" @@ -2499,7 +2600,7 @@ msgstr "Tema %s nije pronađena!" msgid "Theme path not found for theme %s!" msgstr "Za temu %s nije pronađena putanje tema!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2671,7 +2772,7 @@ msgstr "Tablice" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Podaci" @@ -2746,7 +2847,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Poslužitelj" @@ -2811,103 +2912,103 @@ msgstr "SQL upit" msgid "MySQL said: " msgstr "MySQL je poručio: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Preskoči Objasni SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Izradi PHP kod" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Osvježi" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Preskoči provjeru valjanosti SQL-a" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Provjera valjanosti SQL-a" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Pogoni" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Izrada profila" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y u %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekunda" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutine" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2915,7 +3016,7 @@ msgctxt "First page" msgid "Begin" msgstr "Na vrh stranice" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2924,7 +3025,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Prethodni" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2933,7 +3034,7 @@ msgctxt "Next page" msgid "Next" msgstr "Sljedeće" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2941,34 +3042,34 @@ msgctxt "Last page" msgid "End" msgstr "Završetak" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Skoči do baze podataka \"%s\"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Strukturu" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2976,38 +3077,38 @@ msgstr "Strukturu" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Umetni" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, 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/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 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/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3185,7 +3286,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Povrat" @@ -3445,7 +3546,7 @@ msgid "Character set of the file" msgstr "Tablica znakova za datoteku:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Oblikovanje" @@ -5077,7 +5178,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Lozinka" @@ -5361,8 +5462,8 @@ msgid "Designer" msgstr "Kreator" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilegije" @@ -5381,7 +5482,7 @@ msgstr "Događaji" msgid "Triggers" msgstr "Okidači" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5445,7 +5546,7 @@ msgid "Create" msgstr "Izradi" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Bez privilegija" @@ -5815,12 +5916,12 @@ msgstr "Presloži po ključu" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Opcije" @@ -5854,8 +5955,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Sakrij" @@ -5864,10 +5965,6 @@ msgstr "Sakrij" msgid "Browser transformation" msgstr "Pretvaranje preglednika" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5876,60 +5973,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Redak je izbrisan" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Eliminiraj" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "unutar upita" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Prikazivanje redaka" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sek" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Prikaz ispisa (s potpunim tekstovima)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Izradi relaciju" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Veza nije pronađena" @@ -6136,7 +6229,7 @@ msgstr "" "može biti od 1 do 99. Zadana vrijednost je 50." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Presloži" @@ -6497,7 +6590,7 @@ msgstr "Raspoložive MIME vrste" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Računalo" @@ -6701,7 +6794,7 @@ msgstr "Vrsta izvoza" msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6713,51 +6806,51 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generirano s" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 #, fuzzy msgid "Go to table" msgstr "Nema baza podataka" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo strukturu" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6809,7 +6902,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Naziv tablice" @@ -6830,6 +6923,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6881,7 +6998,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Bez izmjena" @@ -6890,7 +7007,7 @@ msgid "Charset" msgstr "Tablica znakova" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binarno" @@ -7196,7 +7313,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Korisničko ime" @@ -7216,9 +7333,9 @@ msgid "Variable" msgstr "Varijabla" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Vrijednost" @@ -7244,7 +7361,7 @@ msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Upotrijebi tekstualno polje" @@ -7437,7 +7554,7 @@ msgid "Returns" msgstr "Vrsta povratka" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Vrijeme" @@ -7594,8 +7711,8 @@ msgstr "" msgid "Routine parameters" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funkcija" @@ -7922,8 +8039,8 @@ msgstr "Nepoznati jezik: %1$s." msgid "Current Server" msgstr "Poslužitelj" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7945,7 +8062,7 @@ msgstr "Tablice znakova" msgid "Engines" msgstr "Pogoni" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Traži u bazi podataka" @@ -7965,7 +8082,7 @@ msgstr "Web poslužitelj" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Traži u bazi podataka" @@ -7992,11 +8109,11 @@ msgstr "Kalendar" msgid "Columns" msgstr "Nazivi stupaca" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Neka svi korisnici imaju pristup ovom favoritu" @@ -8024,7 +8141,7 @@ msgstr "Samo prikaz" msgid "Location of the text file" msgstr "Lokacija tekstualne datoteke" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "mapa učitavanja web poslužitelja" @@ -8230,23 +8347,29 @@ msgid "+ Add a value" msgstr "Dodaj novog korisnika" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operator" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Traži" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Umetni" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8454,8 +8577,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Datoteke nisu pronađene unutar ZIP arhive!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Pogreška u ZIP arhivi:" @@ -8483,8 +8606,8 @@ msgstr "Opće osobine relacija" msgid "Protocol version" msgstr "Verzija protokola" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Korisnik" @@ -8627,7 +8750,7 @@ msgstr "" "Poslužitelj pokrenut sa Suhosin. Proučite %sdokumentaciju%s radi mogućih " "problema." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Nema baza podataka" @@ -8656,7 +8779,7 @@ msgstr "Prikaži/sakrij lijevi izbornik" msgid "Save position" msgstr "Spremi položaj" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Izradi tablicu" @@ -9029,97 +9152,97 @@ msgstr "Pogoni pohrane" msgid "View dump (schema) of databases" msgstr "Prikaži ispis (shemu) baza podataka" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Obuhvaća sve privilegije osim GRANT (Podari)." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Dopušta izmjenu strukture postojećih tablice." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Dopušta izmjenu i odbacivanje pohranjenih rutina." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Dopušta izradu novih baze podataka i tablice." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Dopušta izradu pohranjenih rutina." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Dopušta izradu novih tablica." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Dopušta izradu privremenih tablica." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dopušta izradu, odbacivanje i preimenovanje korisničkih naloga." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Dopušta izradu novih prikaza." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Dopušta brisanje podataka." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Dopušta odbacivanje baza podataka i tablica." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Dopušta odbacivanje tablica." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Omogućuje postavljanje događaja za planer" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Dopušta pokretanje pohranjenih rutina." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Dopušta uvoz i izvoz podataka iz datoteka." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Dopušta dodavanje korisnika i privilegija bez ponovnog učitavanja tablica." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Dopušta izradu i odbacivanje indeksa." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Dopušta umetanje i zamjenu podataka." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Dopušta zaključavanje tablica u trenutnoj grani." @@ -9150,55 +9273,55 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih povezivanja koje korisnik može imati." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Omogućuje pregledavanje procesa za sve korisnike" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Nema učinka u ovoj verziji MySQL-a." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dopušta ponovno učitavanje postavki poslužitelja i pražnjenje privremene " "pohrane poslužitelja." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dopušta korisnik postavljanje upita o lokaciji potčinjenih i gospodara." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Potrebno za replikacijske potčinjene." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Dopušta čitanje podataka." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Daje pristup cjelokupnom popisu baza podataka." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dopušta izvođenje upita SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Dopušta gašenje poslužitelja." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9209,45 +9332,45 @@ msgstr "" "eliminiranje grana drugih korisnika." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Omogućuje izradu i uklanjanje okidača" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Dopušta mijenjanje podataka." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Bez privilegija." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "bez kompresije" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Privilegije specifične za tablicu" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Napomena: Nazivi MySQL privilegija navedeni su na engleskom jeziku " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Opće privilegije" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Privilegije specifične za bazu podataka" @@ -9269,7 +9392,7 @@ msgstr "_Podaci prijave" msgid "Do not change the password" msgstr "Ne mijenjaj lozinku" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9320,7 +9443,7 @@ msgstr "Odabrani korisnici uspješno su izbrisani." msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspješno učitane." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Uredi privilegije" @@ -9328,34 +9451,34 @@ msgstr "Uredi privilegije" msgid "Revoke" msgstr "Opozovi" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Pregled korisnika" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Podarivanje" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Ukloni odabrane korisnike" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Opozovi sve aktivne privilegije korisnika i potom ih izbriši." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9368,98 +9491,98 @@ msgstr "" "može se razlikovati od privilegija koje upotrebljava poslužitelj. U tom je " "slučaju potrebno %sponovo učitati privilegije%s prije nastavljanja rada." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Privilegije specifične za stupac" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Dodaj privilegije za sljedeće baze podataka" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Kako bi se mogli upotrebljavati u doslovnom smislu, džokerima \\_ i \\% mora " "prethoditi znak \\" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Dodaj privilegije za sljedeću tablicu" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Promjena podataka prijave / Kopiranje korisnika" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Izradi novog korisnika s istim privilegijama i..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... zadržati staru." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... izbriši starog iz korisničkih tablica." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... opozovi sve aktivne privilegije iz stare i potom je izbriši." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... izbriši starog iz korisničkih tablica i potom ponovo učitaj privilegije." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Baza podataka za korisnika" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "bez kompresije" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Izradi bazu podataka istog naziva i podari sve privilegije" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Podari sve privilegije imenima s džokerima (korisničkoime_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Provjeri privilegije za bazu podataka \"%s\"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup u \"%s\"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "opće" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "specifično za bazu podataka" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "džoker" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10768,115 +10891,115 @@ msgstr[0] "u upotrebi" msgstr[1] "u upotrebi" msgstr[2] "u upotrebi" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 #, fuzzy msgid "Structure Difference" msgstr "Struktura za pregledavanje" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 #, fuzzy msgid "Data Difference" msgstr "Struktura za pregledavanje" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL upit" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "najv. uzastopnih veza" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11175,36 +11298,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Prikazivanje kao PHP koda" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjera valjanosti SQL-a" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi s indeksima tablice `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Oznaka" @@ -11213,66 +11336,66 @@ msgstr "Oznaka" msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s uspješno je izmijenjena." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "" " Zbog svoje duljine,
uređivanje ovog polja možda neće biti moguće " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binarno - ne uređuj" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Umetni kao novi redak" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 #, fuzzy msgid "Show insert query" msgstr "Prikazivanje SQL upita" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "i potom" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Kreni nazad na prethodnu stranicu" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Umetni dodatni novi redak" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Kreni nazad na ovu stranicu" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Uredi sljedeći redak" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Pomoću tipke TAB premještate se od jedne vrijednost do druge vrijednost, " "odnosno s tipkama CTRL+Strelice za premještanje bilo kamo" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11361,49 +11484,45 @@ msgstr "Tablica %1$s je izrađena." msgid "View dump (schema) of table" msgstr "Prikaži ispis (shemu) tablice" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Dodaj/Izbriši stupce polja" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Najveći broj datoteka zapisnika" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Spremi kao datoteku" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11636,25 +11755,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Izvedi \"upit po primjeru\" (džoker: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Odaberite polja (najmanje jedno):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj uvjete pretrage (sadržaj uvjeta \"gdje\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Broj redaka po stranici" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Redoslijed prikaza:" @@ -13262,9 +13381,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Izradi relaciju" -#~ msgid "Add a new User" -#~ msgstr "Dodaj novog korisnika" - #~ msgid "Delete the matches for the " #~ msgstr "Izbacivanje podataka za tablicu" diff --git a/po/hu.po b/po/hu.po index 0bb6e3cbbc..852b208afb 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-05-27 18:52+0200\n" "Last-Translator: \n" "Language-Team: hungarian \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Összes mutatása" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ 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:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Keresés" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Keresés" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Tábla megjegyzése" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Oszlop" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Típus" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Megjegyzések" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Nem" @@ -232,9 +233,9 @@ msgstr "Nem" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "A másolt adatbázisra váltás" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Kapcsolati séma szerkesztése, exportálása" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tábla" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -428,19 +429,19 @@ msgstr "Rendezés" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Növekvő" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Csökkenő" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Megjelenítés" @@ -461,8 +462,8 @@ msgid "Del" msgstr "Törlés" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Vagy" @@ -491,7 +492,7 @@ msgstr "Felhasználandó táblák" msgid "SQL query on database %s:" msgstr "SQL-lekérdezés a(z) %s adatbázison:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Lekérdezés indítása" @@ -530,8 +531,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s találat a(z) %s táblában" msgstr[1] "%s találat a(z) %s táblában" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Tartalom" @@ -542,7 +543,7 @@ msgid "Delete the matches for the %s table?" msgstr "Törli a találatokat a %s táblában?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -615,7 +616,7 @@ msgstr "Nyomkövetés aktív." msgid "Tracking is not active." msgstr "Nyomkövetés inaktív." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -645,22 +646,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "Ezen a MySQL szerveren a(z) %s az alapértelmezett tárolómotor." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Mind kijelölése" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Kijelölés törlése" @@ -668,10 +669,10 @@ msgstr "Kijelölés törlése" msgid "Check tables having overhead" msgstr "A felülírott táblák kijelölése" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -679,17 +680,17 @@ msgid "Export" msgstr "Exportálás" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Nyomtatási nézet" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Kiürítés" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -737,9 +738,9 @@ msgstr "Nyomon követett táblák" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Adatbázis" @@ -758,15 +759,15 @@ msgstr "frissítve" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Állapot" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Művelet" @@ -819,7 +820,7 @@ msgstr "Minden értéket külön mezőben adjon meg." msgid "+ Restart insertion and add a new value" msgstr "+ Kezdődjön a beszúrás elölről és adjon hozzá egy új értéket." -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Kimenet" @@ -855,6 +856,95 @@ msgstr "A webszerver számára nem engedélyezett a(z) %s fájl mentése." msgid "Dump has been saved to file %s." msgstr "A kiíratás mentése a(z) %s fájlba megtörtént." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "\"%s\" oszlop értékei" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add index" +msgid "Add a point" +msgstr "Index hozzáadása" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Sorok vége" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Új felhasználó hozzáadása" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Új felhasználó hozzáadása" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Oszlop hozzáadása" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "Új szerver hozzáadása" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -904,7 +994,7 @@ msgstr "A könyvjelző törlése megtörtént." msgid "Showing bookmark" msgstr "Könyvjelző megjelenítése" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "A(z) %s könyvjelző elkészült" @@ -933,7 +1023,7 @@ msgstr "" "növeli meg a PHP időkorlátozását." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -957,15 +1047,15 @@ msgstr "Kattintson a kijelöléshez." msgid "Click to unselect" msgstr "Kattintson a kijelölés megszüntetéséhez." -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "A \"DROP DATABASE\" utasítást letiltották." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Valóban a következőt akarja " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!" @@ -1031,8 +1121,8 @@ msgstr "Üres a jelszó mező!" msgid "The passwords aren't the same!" msgstr "Nem egyeznek a jelszavak!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1052,8 +1142,8 @@ msgid "Close" msgstr "Bezárás" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1093,12 +1183,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr ", " #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1189,12 +1279,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1299,7 +1389,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nincs" @@ -1702,8 +1792,8 @@ msgstr "SQL-lekérdezési panelek mutatása" msgid "No rows selected" msgstr "Nem jelölte ki a sort" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Módosítás" @@ -1717,8 +1807,8 @@ msgstr "Végrehajtási idő legfeljebb" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Mentés" @@ -1730,7 +1820,7 @@ msgstr "Keresési kritériumok elrejtése" msgid "Show search criteria" msgstr "Keresési kritériumok mutatása" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1774,34 +1864,42 @@ msgstr "Oszlopok hozzáadása/törlése" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "Oszlop hozzáadása" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Válassza ki a hivatkozott kulcsot" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Idegen kulcs kiválasztása" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Válassza ki az elsődleges kulcsot, vagy egy egyedi kulcsot" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Válassza ki a megjelenítendő oszlopot" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1809,72 +1907,72 @@ msgstr "" "Nem mentette a változtatásokat az elrendezésben. Mentés nélkül ezek el " "fognak veszni. Így is folytatni szeretné?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Adjon meg egy opciót az oszlophoz" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Kattintson a kijelöléshez." -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Logo link URL" msgid "Go to link" msgstr "A logó hivatkozásának URL-címe" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Jelszó generálása" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generálás" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Jelszó megváltoztatása" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Több" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1884,27 +1982,27 @@ msgstr "" "%s, kiadás dátuma: %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", utolsó stabil verzió:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "friss" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Kész" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Előző" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1912,149 +2010,149 @@ msgid "Next" msgstr "Következő" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Ma" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Január" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Február" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Március" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Április" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Május" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Június" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Július" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Augusztus" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Szeptember" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Október" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "November" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "jan." #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "febr." #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "márc." #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "ápr." #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "máj." #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "jún." #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "júl." #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "aug." #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "szept." #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "okt." #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "nov." #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "dec." -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Vasárnap" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Hétfő" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Kedd" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Szerda" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Csütörtök" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Péntek" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Szombat" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2062,87 +2160,92 @@ msgid "Sun" msgstr "V" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "H" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "K" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Cs" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "P" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Szo" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "V" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "H" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "K" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Sze" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Cs" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Szo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Hét" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Óra" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Perc" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "másodperc" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Betűméret" @@ -2254,13 +2357,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Adatbázisok" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Hiba" @@ -2394,7 +2497,7 @@ msgstr "Nem található a(z) %s téma!" msgid "Theme path not found for theme %s!" msgstr "Nem található a(z) %s téma téma elérési útja!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2570,7 +2673,7 @@ msgstr "Táblák" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Adatok" @@ -2639,7 +2742,7 @@ msgstr "A(z) %1$s szerver hosztneve érvénytelen. Ellenőrizze a beállítások #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Szerver" @@ -2704,101 +2807,101 @@ msgstr "SQL-lekérdezés" msgid "MySQL said: " msgstr "A MySQL mondta: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Nem lehetett kapcsolódni a MySQL-validátorhoz" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Az SQL magyarázata" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "SQL magyarázat átugrása" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP kód nélkül" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP-kód létrehozása" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Frissítés" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL érvényesítés átugrása" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL érvényesítése" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "lekérdezés inline szerkesztése" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Belső" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Adatgyűjtés" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Bájt" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "V" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y. %B %d. %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s nap, %s óra, %s perc, %s másodperc" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Eljárások" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2806,7 +2909,7 @@ msgctxt "First page" msgid "Begin" msgstr "A tetejére" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2815,7 +2918,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Előző" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2824,7 +2927,7 @@ msgctxt "Next page" msgid "Next" msgstr "Következő" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2832,36 +2935,36 @@ msgctxt "Last page" msgid "End" msgstr "Vége" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Ugrás a(z) "%s" adatbázishoz." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Kattintson a kijelöléshez." -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Szerkezet" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2869,37 +2972,37 @@ msgstr "Szerkezet" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Beszúrás" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Műveletek" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Számítógép tallózása:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, 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/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Nincsenek feltöltendő fájlok" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3068,7 +3171,7 @@ msgstr "Engedélyezi a felhasználóknak az érték módosítását" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Törlés" @@ -3342,7 +3445,7 @@ msgid "Character set of the file" msgstr "A fájl karakterkészlete" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formátum" @@ -5039,7 +5142,7 @@ msgstr "Szükséges az SQL Validator engedélyezése" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Jelszó" @@ -5336,8 +5439,8 @@ msgid "Designer" msgstr "Tervező" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Jogok" @@ -5356,7 +5459,7 @@ msgstr "Események" msgid "Triggers" msgstr "Eseményindítók" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5417,7 +5520,7 @@ msgid "Create" msgstr "Létrehozás" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Nincs jog" @@ -5755,12 +5858,12 @@ msgstr "Kulcs szerinti rendezés" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Beállítások" @@ -5794,8 +5897,8 @@ msgstr "Bináris tartalom megjelenítése" msgid "Show BLOB contents" msgstr "BLOB-tartalom megjelenítése" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Elrejtés" @@ -5804,10 +5907,6 @@ msgstr "Elrejtés" msgid "Browser transformation" msgstr "Böngésző átalakítása" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5816,60 +5915,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "A sor törlése megtörtént" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Leállít" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "lekérdezésben" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Megjelenített sorok:" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "összesen" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "a lekérdezés %01.4f másodpercig tartott" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Nyomtatási nézet (teljes szöveggel)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF séma megjelenítése" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Kapcsolat létrehozása" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Nem található a hivatkozás" @@ -6075,7 +6170,7 @@ msgstr "" "közti érték. Alapértelmezés: 50." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Rendezés" @@ -6439,7 +6534,7 @@ msgstr "Létező MIME-típusok" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Hoszt" @@ -6643,7 +6738,7 @@ msgstr "Exportálás alapértelmezései" msgid "Open new phpMyAdmin window" msgstr "Új phpMyAdmin ablak nyitása" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6657,51 +6752,51 @@ msgstr "SQL-eredmény" msgid "Generated by" msgstr "Készítette" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Nincs adatbázis" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "%s adatai hiányoznak" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Csak a szerkezet" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6753,7 +6848,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Tábla neve" @@ -6774,6 +6869,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "A(z) %s fájl nem tartalmaz semmilyen kulcsazonosítót" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6827,7 +6948,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Nincs változás" @@ -6836,7 +6957,7 @@ msgid "Charset" msgstr "Karakterkészlet" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Bináris" @@ -7147,7 +7268,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Felhasználónév" @@ -7165,9 +7286,9 @@ msgid "Variable" msgstr "Változó" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Érték" @@ -7193,7 +7314,7 @@ msgstr "Bármilyen felhasználó" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Szöveges mező használata" @@ -7390,7 +7511,7 @@ msgid "Returns" msgstr "Típus visszaadása" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Idő" @@ -7547,8 +7668,8 @@ msgstr "" msgid "Routine parameters" msgstr "Eljárások" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Függvény" @@ -7883,8 +8004,8 @@ msgstr "Ismeretlen nyelv: %1$s." msgid "Current Server" msgstr "Szerver" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7906,7 +8027,7 @@ msgstr "Karakterkészlet" msgid "Engines" msgstr "Motorok" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Keresés az adatbázisban" @@ -7925,7 +8046,7 @@ msgstr "Távoli szerver" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Keresés az adatbázisban" @@ -7951,11 +8072,11 @@ msgstr "Törlés" msgid "Columns" msgstr "Oszlopnevek" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 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:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 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 " @@ -7985,7 +8106,7 @@ msgstr "Csak megtekinthető" msgid "Location of the text file" msgstr "A szövegfájl helye" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "webszerver feltöltési könyvtár" @@ -8195,23 +8316,29 @@ msgid "+ Add a value" msgstr "Új szerver hozzáadása" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Az idegen kulcsok böngészése" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Kezelő" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Keresés" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Beszúrás" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8424,8 +8551,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Nem található fájl a ZIP archívumban!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Hiba a ZIP archívumban:" @@ -8455,8 +8582,8 @@ msgstr "Egyéb alapbeállítások" msgid "Protocol version" msgstr "Protokoll verzió" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Felhasználó" @@ -8616,7 +8743,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:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Nincs adatbázis" @@ -8643,7 +8770,7 @@ msgstr "Bal oldali menü megjelenítése/elrejtése" msgid "Save position" msgstr "Pozíció mentése" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Tábla létrehozása" @@ -9021,81 +9148,81 @@ msgstr "Tárolómotorok" msgid "View dump (schema) of databases" msgstr "Adatbázis kiírás (séma) megtekintése" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "A GRANT kivételével minden jogot tartalmaz." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Engedélyezi a létező táblák szerkezetének megváltoztatását." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Engedélyezi a tárolt eljárások módosítását és eldobását." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Engedélyezi új adatbázisok és táblák készítését." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Engedélyezi tárolt eljárások létrehozását." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Engedélyezi új táblák készítését." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Engedélyezi ideiglenes táblák készítését." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Engedélyezi a felhasználói fiókok létrehozását, törlését és átnevezését." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Engedélyezi új nézetek létrehozását." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Engedélyezi az adatok törlését." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Engedélyezi az adatbázisok és táblák eldobását." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Engedélyezi a táblák eldobását." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Az eseményütemező eseményeinek beállítását teszi lehetővé" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Engedélyezi a tárolt eljárások végrehajtását." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Engedélyezi az adatok fájlokba történő exportálását/importálását." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -9103,17 +9230,17 @@ msgstr "" "hozzáadását." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Engedélyezi indexek készítését és törlését." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Engedélyezi az adatok beírását és megváltoztatását." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "A jelenlegi szálon engedélyezi a táblák blokkolását." @@ -9145,56 +9272,56 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Korlátozza a felhasználó egyidejű kapcsolatainak számát." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Az összes felhasználó folyamatainak megtekintését engedélyezi" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Nem valósult meg ebben a MySQL verzióban" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Engedélyezi a szerver beállításainak újratöltését, és a szerver " "gyorsítótárának törlését." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Engedélyezi a felhasználónak, hogy megkérdezze, hol találhatók a kisegítő/fő " "helyek." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "A kisegítő helyek másolásához szükséges." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Engedélyezi az adatok olvasását." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Hozzáférést ad az adatbázisok teljes listájához." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Engedélyezi SHOW CREATE VIEW lekérdezések végrehajtását." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Engedélyezi a szerver leállítását." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9206,45 +9333,45 @@ msgstr "" "megszüntetése." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Eseményindítók létrehozásának és eldobásának engedélyezése" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Engedélyezi az adatok megváltoztatását." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Nincsenek jogok." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nincs" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Táblaspecifikus jogok" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Megjegyzés: a MySQL jognevek az angolból származnak." -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Adminisztráció" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globális jogok" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Adatbázis-specifikus jogok" @@ -9265,7 +9392,7 @@ msgstr "Bejelentkezési adatok" msgid "Do not change the password" msgstr "Nincs jelszó megváltoztatás" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9316,7 +9443,7 @@ msgstr "A kiválasztott felhasználók törlése sikerült." msgid "The privileges were reloaded successfully." msgstr "A jogok újratöltése sikerült." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Jogok szerkesztése" @@ -9324,34 +9451,34 @@ msgstr "Jogok szerkesztése" msgid "Revoke" msgstr "Visszavonás" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Bármi" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Felhasználók áttekintése" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Engedélyezés" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "A kijelölt felhasználók törlése" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "A felhasználók összes jogának visszavonása, majd törlése." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "A felhasználókéval azonos nevű adatbázisok eldobása." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9364,98 +9491,98 @@ msgstr "" "használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben " "%stöltse be újra a jogokat%s a folytatás előtt." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Nem található a kiválasztott felhasználó a privilégium táblában." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Oszlopspecifikus jogok" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Jogok hozzáadása a következő adatbázison" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "A _ és a % karakterhelyettesítőt \\ jellel kell lezárni, hogy " "szövegkonstansként lehessen őket használni" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Jogok hozzáadása a következő táblán:" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Bejelentkezési adatok módosítása / Felhasználó másolása" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Új felhasználó létrehozása ezekkel a jogokkal, és ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... a régiek megőrzése." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... a régiek törlése a felhasználói táblákból." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... az összes aktív jog visszaállítása a régiekből, majd törlés." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... a régiek törlése a felhasználói táblákból, majd a jogok újratöltése." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Adatbázis a felhasználó számára" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nincs" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Azonos nevű adatbázis létrehozása, és az összes jog engedélyezése" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Az összes jog engedélyezése karakterhelyettesítős néven (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Az összes jog engedélyezése a(z) "%s" adatbázison" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globális" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "adatbázis-specifikus" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "karakterhelyettesítő" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10772,115 +10899,115 @@ msgid_plural "%d minutes" msgstr[0] "Perc" msgstr[1] "Perc" -#: server_synchronize.php:92 +#: server_synchronize.php:99 #, fuzzy msgid "Could not connect to the source" msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: server_synchronize.php:95 +#: server_synchronize.php:102 #, fuzzy msgid "Could not connect to the target" msgstr "Nem lehetett kapcsolódni a MySQL-szerverhez" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Nem létezik '%s' nevű adatbázis." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 #, fuzzy msgid "Structure Difference" msgstr "Nézet szerkezete" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Oszlop(ok) hozzáadása" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Oszlop(ok) eltávolítása" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Oszlop(ok) módosítása" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Index(ek) törlése" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Index(ek) alkalmazása" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Sor(ok) frissítése" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Sor(ok) beszúrása" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Kiválasztott módosítások végrehajtása" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Adatbázisok szinkronizálása" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL-lekérdezések" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Jelenlegi kapcsolat" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Konfigurációs fájl" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11283,34 +11410,34 @@ msgstr "" "A kulcs alfanumerikus karaktereket, betűket [em]és[/em] speciális " "karaktereket tartalmazzon" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Megjelenítés PHP kódként" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Érvényes SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probléma a(z) `%s` tábla indexeivel" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Név" @@ -11319,64 +11446,64 @@ msgstr "Név" msgid "Table %1$s has been altered successfully" msgstr "A(z) %1$s tábla módosítása sikerült" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "A hossza miatt
lehet, hogy ez a mező nem szerkeszthető " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "A BLOB-raktár hivatkozásának eltávolítása" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Bináris - nem szerkeszthető" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Feltöltés a BLOB-raktárba" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Beszúrás új sorként" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Új sor beillesztése és a hibák figyelmen kívül hagyása" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Beillesztő lekérdezés megjelenítése" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "és utána" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Vissza az előző oldalra" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Új sor beszúrása" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Visszatérés erre az oldalra" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Következő sor szerkesztése" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "A TAB billentyűvel értékről értékre lépkedhet, ill. a CTRL+nyilakkal bárhová " "léphet." -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Beszúrás folytatása a(z) %s sorokkal" @@ -11463,53 +11590,49 @@ msgstr "A(z) %1$s tábla elkészült." msgid "View dump (schema) of table" msgstr "Tábla kiírás (vázlat) megtekintése" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "A választható szerverek megjelenítése" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Szélesség" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Magasság" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Textarea columns" msgid "Label column" msgstr "Szövegterület oszlopai" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- nincs -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Naplófájlok száma" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Újrarajzolás" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Mentés fájlként" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11739,24 +11862,24 @@ msgstr "" msgid "Foreign key constraint" msgstr "Idegen kulcs korlátozása" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" "Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Válasszon oszlopokat (legalább egyet):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "adja meg a keresési feltételeket (a \"where\" feltétel törzsét):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Sorok száma oldalanként" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Megjelenítési sorrend:" @@ -13395,9 +13518,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Felhasználó létrehozása" -#~ msgid "Add a new User" -#~ msgstr "Új felhasználó hozzáadása" - #~ msgid "Show table row links on left side" #~ msgstr "A sorhoz tartozó linkek mutatása a bal oldalon" diff --git a/po/id.po b/po/id.po index 13253c6b55..19cbf77f9c 100644 --- a/po/id.po +++ b/po/id.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-06-18 11:34+0200\n" "Last-Translator: \n" "Language-Team: indonesian \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Tampilkan semua" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "induknya atau pilihan keamanan pada browser Anda melarang untuk mengupdate " "dengan cara Cross-Window" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Cari" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Cari" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Komentar tabel" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Kolom" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Jenis" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Komentar" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Tidak" @@ -232,9 +233,9 @@ msgstr "Tidak" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Pindah ke database yang disalin" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Edit atau ekspor skema relasional" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabel" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -427,19 +428,19 @@ msgstr "Urutkan" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Urutan menaik" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Urutan menurun" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Tampilkan" @@ -460,8 +461,8 @@ msgid "Del" msgstr "Hapus" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Atau" @@ -490,7 +491,7 @@ msgstr "Gunakan Tabel" msgid "SQL query on database %s:" msgstr "Pencarian SQL dalam database %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Jalankan Pencarian SQL" @@ -528,8 +529,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s cocok dalam tabel %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Browse" @@ -540,7 +541,7 @@ msgid "Delete the matches for the %s table?" msgstr "Hapus yang cocok untuk %s tabel?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -612,7 +613,7 @@ msgstr "Pelacakan aktif" msgid "Tracking is not active." msgstr "Pelacakan tidak aktif." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -642,22 +643,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s adalah mesin penyimpan utama pada server MySQL ini." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "yang ditandai:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Pilih semua" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Balik pilihan" @@ -665,10 +666,10 @@ msgstr "Balik pilihan" msgid "Check tables having overhead" msgstr "Periksa Overheaded" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -676,17 +677,17 @@ msgid "Export" msgstr "Ekspor" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Pandangan cetak" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Mengosongkan" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -738,9 +739,9 @@ msgstr "Tabel-tabel yang dilacak" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Database" @@ -759,15 +760,15 @@ msgstr "Diperbarui" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Aksi" @@ -820,7 +821,7 @@ msgstr "Masukkan setiap nilai dalam bidang yang terpisah." msgid "+ Restart insertion and add a new value" msgstr "+ Ulang pemasukan dan tambahkan sebuah nilai baru" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Keluaran" @@ -855,6 +856,94 @@ msgstr "Webserver tidak memilik hak (permission) untuk menyimpan file %s." msgid "Dump has been saved to file %s." msgstr "Dump (Skema) disimpan pada file %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Nilai untuk kolom \"% s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add column" +msgid "Add a point" +msgstr "Tambah kolom" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Garis diputuskan oleh" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Menambahkan pengguna baru" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Menambahkan pengguna baru" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Tambah kolom" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Menambahkan pengguna baru" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -902,7 +991,7 @@ msgstr "Penyimpanan telah dihapus." msgid "Showing bookmark" msgstr "Tampilkan bookmark" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Bookmark % s dibuat" @@ -930,7 +1019,7 @@ msgstr "" "waktu eksekusi php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -956,15 +1045,15 @@ msgstr "Klik untuk memilih" msgid "Click to unselect" msgstr "Klik untuk batal memilih" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Perintah \"HAPUS DATABASE\" dimatikan." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Apakah anda ingin " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Anda akan MENGHAPUS SELURUH database!" @@ -1029,8 +1118,8 @@ msgstr "Kata Sandi kosong!" msgid "The passwords aren't the same!" msgstr "Kata Sandi tidak sama!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Tambah pengguna" @@ -1048,8 +1137,8 @@ msgid "Close" msgstr "Tutup" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1087,12 +1176,12 @@ msgid "Other" msgstr "Lainnya" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1178,12 +1267,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1288,7 +1377,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "tanpa" @@ -1683,8 +1772,8 @@ msgstr "Tampilkan kotak query" msgid "No rows selected" msgstr "Tidak ada baris yang dipilih" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Ubah" @@ -1698,8 +1787,8 @@ msgstr "Menjalankan SQL" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Simpan" @@ -1711,7 +1800,7 @@ msgstr "Sembunyikan kriteria pencarian" msgid "Show search criteria" msgstr "Tampilkan kriteria pencarian" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1755,34 +1844,42 @@ msgstr "Tambahkan/Hapus kolom" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "Tambah kolom" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Pilih kunci rujukan" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Pilih Foreign Key" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Silakan pilih primary key atau sebuah unique key" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Pilih kolom untuk ditampilkan" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1790,70 +1887,70 @@ msgstr "" "Anda belum menyimpan perubahan pada susunan. Mereka akan hilang jika Anda " "tidak menyimpannya. Apakah Anda ingin melanjutkan?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Tambahkan pilihan untuk kolom" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Klik untuk memilih" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Menghasilkan kata sandi" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Menghasilkan" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Ubah Kata Sandi" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Selebihnya" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1863,27 +1960,27 @@ msgstr "" "untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", versi stabil terakhir:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "Mutakhir" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Selesai" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Sebelumnya" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1891,149 +1988,149 @@ msgid "Next" msgstr "Berikutnya" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Hari ini" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Januari" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Februari" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Maret" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "April" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mei" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Juni" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Juli" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Agustus" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "September" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Oktober" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "November" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Januari" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Februari" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Maret" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "April" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Juni" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Juli" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Agustus" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "September" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Oktober" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nopember" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Desember" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Minggu" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Senin" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Selasa" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Rabu" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Kamis" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Jumat" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Sabtu" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2041,87 +2138,92 @@ msgid "Sun" msgstr "Minggu" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Senin" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Selasa" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Rabu" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Kamis" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Jumat" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sabtu" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Minggu" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Senin" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Selasa" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Rabu" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Kamis" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Jumat" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Sabtu" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Mingguan" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Jam" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Menit" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Detik" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Ukuran huruf" @@ -2233,13 +2335,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Basisdata" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Error" @@ -2368,7 +2470,7 @@ msgstr "Tema %s tidak ditemukan!" msgid "Theme path not found for theme %s!" msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2544,7 +2646,7 @@ msgstr "Tabel" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Data" @@ -2612,7 +2714,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2677,99 +2779,99 @@ msgstr "Pencarian SQL" msgid "MySQL said: " msgstr "MySQL menyatakan: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Gagal melakukan koneksi ke validator SQL!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Terangkan SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Melewati keterangan SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Kode PHP tidak ditemukan" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Ciptakan kode PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Menyegarkan" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Melewati pengesahan (validation) SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Mengesahkan (validate) SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Inline edit untuk query ini" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profiling" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Minggu" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y jam %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s menit dan %s detik" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2777,7 +2879,7 @@ msgctxt "First page" msgid "Begin" msgstr "Awal" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2786,7 +2888,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Sebelumnya" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2795,7 +2897,7 @@ msgctxt "Next page" msgid "Next" msgstr "Berikutnya" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2803,36 +2905,36 @@ msgctxt "Last page" msgid "End" msgstr "Terakhir" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Lompat langsung ke database "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Klik untuk memilih" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktur" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2840,37 +2942,37 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Sisipkan" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operasi" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Telusuri komputer Anda:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pilih dari direktori unggah %s pada web server:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Tidak ada arsip untuk diunggah" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3038,7 +3140,7 @@ msgstr "Izinkan pengguna untuk mengubah nilai ini" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Reset" @@ -3299,7 +3401,7 @@ msgid "Character set of the file" msgstr "Penyusunan karakter dalam file:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -4915,7 +5017,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Kata Sandi" @@ -5198,8 +5300,8 @@ msgid "Designer" msgstr "Perancang" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Hak Akses" @@ -5218,7 +5320,7 @@ msgstr "Kejadian" msgid "Triggers" msgstr "Trigger" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5282,7 +5384,7 @@ msgid "Create" msgstr "Ciptakan" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Tidak ada Hak Akses (privilege)" @@ -5630,12 +5732,12 @@ msgstr "Urut berdasarkan kunci" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Operasi" @@ -5671,8 +5773,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Sembunyikan" @@ -5681,10 +5783,6 @@ msgstr "Sembunyikan" msgid "Browser transformation" msgstr "Transformasi Browser" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5693,61 +5791,57 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Baris telah dihapus" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Tutup" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "dalam susunan pemeriksaan" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Tampilan baris" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "jumlah" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "pencarian membutuhkan waktu %01.4f detik" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Pandangan cetak (dengan teks lengkap)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Tampilkan skema PDF" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Membuat versi" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Link tidak ditemukan" @@ -5945,7 +6039,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Urutkan" @@ -6281,7 +6375,7 @@ msgstr "Tipe MIME yang tersedia" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6487,7 +6581,7 @@ msgstr "Ekspor isi" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6501,51 +6595,51 @@ msgstr "Hasil SQL" msgid "Generated by" msgstr "Diciptakan oleh" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL balikkan hasil kosong (a.k. baris yang kosong)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Database tidak ditemukan" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Data hilang untuk %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Struktur saja" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6596,7 +6690,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Nama tabel" @@ -6617,6 +6711,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "Arsip %s tidak mengandung key id" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "MySQL 4.0 compatible" @@ -6672,7 +6792,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Tidak ada perubahan" @@ -6681,7 +6801,7 @@ msgid "Charset" msgstr "Perangkat karakter (Charset)" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binari" @@ -6988,7 +7108,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Nama pengguna" @@ -7006,9 +7126,9 @@ msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Nilai" @@ -7034,7 +7154,7 @@ msgstr "Setiap pengguna" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Gunakan text field" @@ -7225,7 +7345,7 @@ msgid "Returns" msgstr "Pilihan untuk tabel" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Jangka Waktu" @@ -7376,8 +7496,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Fungsi" @@ -7708,8 +7828,8 @@ msgstr "" msgid "Current Server" msgstr "Server saat ini" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7731,7 +7851,7 @@ msgstr "Penyusunan Karakter" msgid "Engines" msgstr "Mesin" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Database cumber" @@ -7749,7 +7869,7 @@ msgstr "" msgid "Difference" msgstr "Perbedaan" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Database target" @@ -7775,11 +7895,11 @@ msgstr "Kalender" msgid "Columns" msgstr "Nama kolom" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Simpan pencarian SQL ini" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Izinkan semua pengguna untuk mengakses simpanan ini" @@ -7807,7 +7927,7 @@ msgstr "Hanya melihat" msgid "Location of the text file" msgstr "dari File" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "direktori upload pada web-server" @@ -8016,23 +8136,29 @@ msgid "+ Add a value" msgstr "Menambahkan pengguna baru" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Menjelajahi nilai luar" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operator" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Cari" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Sisipkan" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8222,8 +8348,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Kesalahan dalam arsip ZIP:" @@ -8251,8 +8377,8 @@ msgstr "Ciri-ciri dari General Relation" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Pengguna" @@ -8397,7 +8523,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Database tidak ditemukan" @@ -8426,7 +8552,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Buat tabel" @@ -8794,80 +8920,80 @@ msgstr "Mesin Penyimpan" msgid "View dump (schema) of databases" msgstr "Tampilkan Dump (skema) dari database" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Menggunakan seluruh Hak Istimewa (Privileges) selain GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Mengizinkan untuk merubah struktur dari tabel yang ada." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Mengizinkan perubahan dan penghapusan dari Routines yang tersimpan." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Mengizinkan untuk menciptakan database dan tabel baru." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Mengizinkan penciptaan Routines yang akan disimpan." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Mengizinkan untuk menciptakan tabel baru." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Mengizinkan untuk menciptakan tabel yang bersifat temporer." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Mengizinkan penciptaan, penghapusan dan perubahan account pengguna." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Mengizinkan untuk menciptakan pandangan baru." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Mengizinkan untuk hapus data." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Mengizinkan untuk hapus database dan tabel." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Mengizinkan untuk hapus tabel." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Mengizinkan eksekusi Routines yang tersimpan." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Mengizinkan untuk impor data dari file dan ekspor data kedalam file." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8875,17 +9001,17 @@ msgstr "" "harus me-reload ulang tabel Hak Istimewa." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Mengizinkan untuk tambah dan ganti data." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Mengizinkan untuk mengunci tabel dalam Thread yang lagi berjalan." @@ -8921,55 +9047,55 @@ msgstr "" "batas waktu satu jam." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Tidak ada efek dalam versi MySQL yang digunakan." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Mengizinkan untuk reload stelan dari server dan untuk flush cache dari " "server." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Memberi hak kepada pengguna untuk menanyakan lokasi dari slaves / masters." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Digunakan untuk replikasi dari slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Mengizinkan untuk baca data." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Memberi akses ke seluruh daftar database." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Mengizinkan pencarian dengan cara SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Mengizinkan untuk shut-down server." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8980,46 +9106,46 @@ msgstr "" "global atau untuk mematikan sebuah Thread yang dimiliki oleh pengguna lain." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Mengizinkan untuk menciptakan dan hapus Indeks." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Mengizinkan untuk ubah data." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Tanpa Hak Istimewa (Privileges)." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "tanpa" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Hak (privileges) khusus terhadap tabel" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Catatan: Nama privilege MySQL dalam bahasa Ingris " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administrasi" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Hak Istimewa (Privileges) Global" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Hak (privileges) khusus terhadap Database" @@ -9041,7 +9167,7 @@ msgstr "Informasi Login" msgid "Do not change the password" msgstr "Jangan ubah Kata Sandi" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9092,7 +9218,7 @@ msgstr "Sukses menghapus Pengguna yang dipilih." msgid "The privileges were reloaded successfully." msgstr "Sukses reload Hak Istimewa (Privileges)." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Ubah hak akses (privilege)" @@ -9100,36 +9226,36 @@ msgstr "Ubah hak akses (privilege)" msgid "Revoke" msgstr "Cabut" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Setiap" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Pandangan Umum Pengguna" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Izin" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Hapus pengguna yang dipilih" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Cabut seluruh Hak Istimewa (Privileges) dari pengguna, lantas hapus pengguna " "tsb. dari daftar tabel pengguna." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Hapus database yang memiliki nama yang sama dengan pengguna." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9143,98 +9269,98 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" "Pengguna yang dipilih tidak ditemukan pada tabel hak (privilege table)." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Hak (privileges) khusus terhadap kolum" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Menambahkan hak (privileges) pada database berikut" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Wildcard _ dan % sebaiknya diakhiri dengan tanda \\ untuk mengunakannya " "secara harfiah" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Menambahkan hak (privileges) pada tabel berikut" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Ubah informasi Login / Salip pengguna" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Ciptakan pengguna baru dengan hak-hak yang sama dan ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... mempertahankan yang lama." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... hapus yang lama dari User Table." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... cabut seluruh hak yang aktif, kemudian hapuskan yang lama." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... hapuskan yang lama dari User Table, kemudian reload hak-hak." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Database untuk pengguna" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "tanpa" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Buat database dengan nama yang sama dan beri semua hak" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Berikan semua hak untuk database "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Pengguna memiliki akses ke "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "database-spesifik" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10419,114 +10545,114 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "Menit" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Tidak dapat terhubung ke sumber" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Tidak dapat terhubung ke target" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Database %s tidak ditemukan." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Sinkronisasi Data" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Perbedaan data" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Terapkan Perubahan Terpilih" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Perintah di keluarkan" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Koneksi" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10822,36 +10948,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Mengesahkan (validate) SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Judul" @@ -10860,65 +10986,65 @@ msgstr "Judul" msgid "Table %1$s has been altered successfully" msgstr "Sukses menghapus Pengguna yang dipilih." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "" " Disebabkan ukuran panjangnya,
field ini tidak dapat di-edit ulang. " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Hapus Referensi Repositori BLOB" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binari - jangan di-edit" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Upload ke repositori BLOB" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Sisipkan sebagai baris baru" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "selanjutnya" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "kembali" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "sisipkan baris baru berikutnya" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Kembali ke halaman ini" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Edit baris berikut" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah " "untuk maju kemana saja" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -11004,51 +11130,47 @@ msgstr "Tabel %s telah dihapus" msgid "View dump (schema) of table" msgstr "Tampilkan Dump (Skema) dari tabel" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 #, fuzzy #| msgid "Right" msgid "Height" msgstr "Kanan" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete columns" msgid "Label column" msgstr "Tambahkan/Hapus kolom" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total count" msgid "Spatial column" msgstr "Jumlah" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Simpan file dalam format" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11281,25 +11403,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "cari berdasarkan data contoh (\"query by example\") (wildcard: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Pilihan field (min. satu):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Menambahkan kriteria pencarian (Argumen untuk WHERE-Statement):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Jumlah baris per halaman" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Urut tampilan berdasarkan:" @@ -12906,6 +13028,3 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Membuat Pengguna" - -#~ msgid "Add a new User" -#~ msgstr "Menambahkan pengguna baru" diff --git a/po/it.po b/po/it.po index 0648fcec88..20354a57b7 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-07-22 19:13+0200\n" "Last-Translator: Rouslan Placella \n" "Language-Team: italian \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Mostra tutti" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgstr "" "bloccando gli aggiornamenti fra browsers a causa di qualche impostazione di " "sicurezza." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Cerca" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "Cerca" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "Commenti alla tabella" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -156,8 +157,8 @@ msgstr "Campo" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -168,7 +169,7 @@ msgstr "Tipo" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -211,10 +212,10 @@ msgstr "Commenti" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "No" @@ -233,9 +234,9 @@ msgstr "No" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -336,7 +337,7 @@ msgstr "Passa al database copiato" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -361,15 +362,15 @@ msgstr "Modifica o esporta schema relazionale" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabella" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -429,19 +430,19 @@ msgstr "Ordinamento" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Crescente" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Decrescente" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Mostra" @@ -462,8 +463,8 @@ msgid "Del" msgstr "Elimina" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Oppure" @@ -492,7 +493,7 @@ msgstr "Utilizza tabelle" msgid "SQL query on database %s:" msgstr "SQL-query sul database %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Invia Query" @@ -531,8 +532,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s corrispondenza nella tabella %s" msgstr[1] "%s corrispondenze nella tabella %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Mostra" @@ -543,7 +544,7 @@ msgid "Delete the matches for the %s table?" msgstr "Eliminare le corrispondenze relative alla tabella %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -612,7 +613,7 @@ msgstr "Il tracking è attivo." msgid "Tracking is not active." msgstr "Il tracking non è attivo." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -642,22 +643,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Se selezionati:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Seleziona tutti" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Deseleziona tutti" @@ -665,10 +666,10 @@ msgstr "Deseleziona tutti" msgid "Check tables having overhead" msgstr "Controllo addizionale" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -676,17 +677,17 @@ msgid "Export" msgstr "Esporta" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Visualizza per stampa" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Svuota" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -734,9 +735,9 @@ msgstr "Tabelle monitorate" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Database" @@ -755,15 +756,15 @@ msgstr "Aggiornato" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Stato" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Azione" @@ -816,7 +817,7 @@ msgstr "Inserisci ogni valore in un campo separato." msgid "+ Restart insertion and add a new value" msgstr "+ Riavviare l'inserimento ed aggiungere un nuovo valore" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Output" @@ -852,6 +853,95 @@ msgstr "Il server web non possiede i privilegi per salvare il file %s." msgid "Dump has been saved to file %s." msgstr "Il dump è stato salvato nel file %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Valore per la colonna \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Usa OpenStreetMaps come livello base" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Geometria" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Aggiungi una routine" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Linee terminate da" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Aggiungi un nuovo utente" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Aggiungi un nuovo utente" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Aggiungi campo" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Geometria" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -904,7 +994,7 @@ msgstr "Il bookmark è stato cancellato." msgid "Showing bookmark" msgstr "Visualizzazione segnalibri" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Segnalibro %s creato" @@ -932,7 +1022,7 @@ msgstr "" "basso per consentire a phpMyAdmin di terminare l'operazione." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -956,15 +1046,15 @@ msgstr "Clicca per selezionare" msgid "Click to unselect" msgstr "Clicca per deselezionare" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "I comandi \"DROP DATABASE\" sono disabilitati." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Vuoi veramente " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Si sta per DISTRUGGERE COMPLETAMENTE un intero database!" @@ -1027,8 +1117,8 @@ msgstr "La password è vuota!" msgid "The passwords aren't the same!" msgstr "La password non coincide!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Aggiungi utente" @@ -1046,8 +1136,8 @@ msgid "Close" msgstr "Chiudi" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1083,12 +1173,12 @@ msgid "Other" msgstr "Altre" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1175,12 +1265,12 @@ msgid "System swap" msgstr "Swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1287,7 +1377,7 @@ msgstr "Aggiungi almeno una variabile alla serie" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nessuno" @@ -1696,8 +1786,8 @@ msgstr "Mostra riquadro query SQL" msgid "No rows selected" msgstr "Nessuna riga selezionata" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Modifica" @@ -1711,8 +1801,8 @@ msgstr "Massimo tempo di esecuzione" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Salva" @@ -1724,7 +1814,7 @@ msgstr "Nascondi criteri di ricerca" msgid "Show search criteria" msgstr "Mostra criteri di ricerca" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1768,34 +1858,42 @@ msgstr "Aggiungi/Cancella colonne" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Copia" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "Aggiungi campo" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Seleziona le chiavi referenziali" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Seleziona Foreign Key" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Seleziona la chiave primaria o una chiave univoca" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Scegli la colonna da mostrare" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1803,71 +1901,71 @@ msgstr "" "Non hai salvato i cambiamenti della disposizione. Questi cambiamenti saranno " "persi se non li salvi. Vuoi procedere?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Aggiungi un'opzione alla colonna " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Trascina per riordinare" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Clicca per ordinare" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Clicca per selezionare/deselezionare" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" "Clicca sulla freccia
per cambiare lo stato di visualizzazzione dei campi" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Vai alla visualizzazione" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Genera password" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Genera" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Cambia password" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Più" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1877,27 +1975,27 @@ msgstr "" "l'aggiornamento. La versione più recente è la %s, rilasciata il %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", versione stabile piú recente:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "aggiornata" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Fatto" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Precedente" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1905,149 +2003,149 @@ msgid "Next" msgstr "Prossimo" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Oggi" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Gennaio" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Febbraio" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Marzo" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Aprile" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Maggio" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Giugno" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Luglio" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Agosto" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Setttembre" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Ottobre" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Novembre" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Lug" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Ott" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dic" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Domenica" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Lunedì" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Martedì" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Mercoledì" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Giovedì" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Venerdì" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2055,87 +2153,92 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Gi" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Sett" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Ora" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minuto" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Secondo" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Dimensione font" @@ -2244,13 +2347,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Database" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Errore" @@ -2381,7 +2484,7 @@ msgstr "Tema %s non trovato!" msgid "Theme path not found for theme %s!" msgstr "Percorso per il tema non trovato %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2556,7 +2659,7 @@ msgstr "Tabelle" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Dati" @@ -2625,7 +2728,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2690,99 +2793,99 @@ msgstr "Query SQL" msgid "MySQL said: " msgstr "Messaggio di MySQL: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Non sono riuscito a connettermi all'SQL Validator!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Spiega SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Non Spiegare SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Senza codice PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Crea il codice PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Aggiorna" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Non Validare SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Valida SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Modifica inline di questa query" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profiling" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y alle %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s giorni, %s ore, %s minuti e %s secondi" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "Parametro mancante:" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2790,7 +2893,7 @@ msgctxt "First page" msgid "Begin" msgstr "Inizio" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2799,7 +2902,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Precedente" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2808,7 +2911,7 @@ msgctxt "Next page" msgid "Next" msgstr "Prossimo" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2816,34 +2919,34 @@ msgctxt "Last page" msgid "End" msgstr "Fine" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Passa al database "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "La %s funzionalità è affetta da un bug noto, vedi %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Clicca per alternare" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struttura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2851,37 +2954,37 @@ msgstr "Struttura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserisci" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operazioni" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Cerca sul tuo computer:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selezionare dalla cartella di upload del server web %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "La directory impostata per l'upload non può essere trovata" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Nessun file da caricare" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Esegui" @@ -3049,7 +3152,7 @@ msgstr "Consente agli utenti di personalizzare questo valore" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Riavvia" @@ -3322,7 +3425,7 @@ msgid "Character set of the file" msgstr "Codifica dei caratteri del file" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formato" @@ -5022,7 +5125,7 @@ msgstr "Richiede l'abilitazione del validatore SQL" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Password" @@ -5333,8 +5436,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilegi" @@ -5353,7 +5456,7 @@ msgstr "Eventi" msgid "Triggers" msgstr "Triggers" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5413,7 +5516,7 @@ msgid "Create" msgstr "Crea" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Nessun Privilegio" @@ -5735,12 +5838,12 @@ msgstr "Ordina per chiave" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Opzioni" @@ -5768,8 +5871,8 @@ msgstr "Mostra contenuti binari" msgid "Show BLOB contents" msgstr "Mostra contenuti BLOB" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Nascondi" @@ -5778,10 +5881,6 @@ msgstr "Nascondi" msgid "Browser transformation" msgstr "Trasformazione del browser" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Geometria" - #: libraries/display_tbl.lib.php:664 #, fuzzy msgid "Well Known Text" @@ -5792,57 +5891,53 @@ msgstr "Well Known Text" msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Copia" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "La riga è stata cancellata" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Rimuovi" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "nella query" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Mostrando i righi" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "totale" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "La query ha impiegato %01.4f sec" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operazioni sui risultati della query" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Vista stampa (con full text)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Mostra diagramma" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Visualizzare dati GIS" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Crea vista" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Link non trovato" @@ -6043,7 +6138,7 @@ msgstr "" "compattato." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Porta" @@ -6401,7 +6496,7 @@ msgstr "Mostra tipi MIME" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6620,7 +6715,7 @@ msgstr "Esporta contenuti" msgid "Open new phpMyAdmin window" msgstr "Apri una nuova finestra di PhpMyAdmin" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "Nessun data trovato per la visualizzazione GIS." @@ -6632,55 +6727,55 @@ msgstr "Risultato SQL" msgid "Generated by" msgstr "Generato da" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Visualizza i contenuti delle strutture facendo click sul loro nome" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Modifica la sua struttura seguendo il link \"Struttura\"" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Vai al database" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Dati mancanti per %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Vai alla tabella" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Solo struttura" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Vai alla visualizzazione" @@ -6737,7 +6832,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Nome tabella" @@ -6759,6 +6854,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importa valute (ad esempio $5.00 come 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Questa pagina non contiene alcuna tabbella!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "Modalitá di compatibilità SQL:" @@ -6806,7 +6927,7 @@ msgstr "Aggiungi un prefisso alla tabella" msgid "Add prefix" msgstr "Aggiungi prefisso" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Nessun cambiamento" @@ -6815,7 +6936,7 @@ msgid "Charset" msgstr "Set di caratteri" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binario" @@ -7127,7 +7248,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Nome utente" @@ -7145,9 +7266,9 @@ msgid "Variable" msgstr "Variabile" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valore" @@ -7175,7 +7296,7 @@ msgstr "Qualsiasi utente" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Utilizza campo text" @@ -7356,7 +7477,7 @@ msgid "Returns" msgstr "Ritorna" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Tempo" @@ -7506,8 +7627,8 @@ msgstr "Esegui routine" msgid "Routine parameters" msgstr "Parametri della routine" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funzione" @@ -7792,8 +7913,8 @@ msgstr "Lingua non conosciuta : %1$s." msgid "Current Server" msgstr "Server corrente" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Sincronizza" @@ -7815,7 +7936,7 @@ msgstr "Set di caratteri" msgid "Engines" msgstr "Motori" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Database di origine" @@ -7833,7 +7954,7 @@ msgstr "Server remoto" msgid "Difference" msgstr "Differenza" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Database di destinazione" @@ -7856,11 +7977,11 @@ msgstr "Cancella" msgid "Columns" msgstr "Campi" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Permetti ad ogni utente di accedere a questo bookmark" @@ -7888,7 +8009,7 @@ msgstr "Visualizza solo" msgid "Location of the text file" msgstr "Percorso del file" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "directory di upload del web-server" @@ -8085,23 +8206,29 @@ msgid "+ Add a value" msgstr "+ Aggiungi un valore" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operatore" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Cerca" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Inserisci" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8272,8 +8399,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Non sono stati trovati file ZIP all'interno dell'archivio!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Errore nell'archivio ZIP:" @@ -8297,8 +8424,8 @@ msgstr "Ulteriori impostazioni" msgid "Protocol version" msgstr "Versione protocollo" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Utente" @@ -8452,7 +8579,7 @@ msgstr "" "Sul server è in esecuzione Suhosin. Controlla la documentazione: " "%sdocumentation%s per possibili problemi." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Nessun database" @@ -8479,7 +8606,7 @@ msgstr "Mostra/nascondi il menù di sinistra" msgid "Save position" msgstr "Salva la posizione" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Crea tabelle" @@ -8820,80 +8947,80 @@ msgstr "Motori di Memorizzazione" msgid "View dump (schema) of databases" msgstr "Visualizza il dump (schema) dei databases" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Comprende tutti i privilegi tranne GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Permette di alterare la struttura di tabelle esistenti." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Permette l'alterazione e l'eliminazione di routines memorizzate." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Permette di creare nuove tabelle e nuovi databases." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Permette la creazione di routines memorizzate." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Permette di creare nuove tabelle." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Permette di creare tabelle temporanee." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permette di creare, cancellare e rinominare gli account utente." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Permette la creazione di nuove viste." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Permette di cancellare dati." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Permette di eliminare databases e tabelle." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Permette di eliminare tabelle." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Permette di impostare gli eventi per lo scheduler" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Permette l'esecuzione di routines memorizzate." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Permette di importare dati da e esportare dati in file." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8901,17 +9028,17 @@ msgstr "" "privilegi." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Permette di creare ed eliminare gli indici." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Permette di inserire e sovrascrivere dati." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Permette di bloccare le tabelle per il thread corrente." @@ -8942,54 +9069,54 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limite di connessioni simultanee che un utente può fare." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Permette di vedere i processi di tutti gli utenti" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Non ha alcun effetto in questa versione di MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permette di ricaricare i parametri del server e di resettare la cache del " "server." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Consente ad un utente di domandare dove sono i master / slave." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Necessario per la replicazione degli slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Permette di leggere i dati." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Accorda l'accesso alla lista completa dei databases." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permette di effettuare query del tipo SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Permette di chiudere il server." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9001,43 +9128,43 @@ msgstr "" "utenti." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Permette di creare e di eliminare i triggers" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Permette di cambiare i dati." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Nessun privilegio." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Nessun" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Privilegi relativi alle tabelle" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: i nomi dei privilegi di MySQL sono in Inglese " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Amministrazione" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Privilegi globali" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Privilegi specifici al database" @@ -9057,7 +9184,7 @@ msgstr "Informazioni di Login" msgid "Do not change the password" msgstr "Non cambiare la password" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Nessun utente trovato." @@ -9106,7 +9233,7 @@ msgstr "Gli utenti selezionati sono stati cancellati con successo." msgid "The privileges were reloaded successfully." msgstr "I privilegi sono stati ricaricati con successo." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Modifica Privilegi" @@ -9114,34 +9241,34 @@ msgstr "Modifica Privilegi" msgid "Revoke" msgstr "Revoca" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Qualsiasi" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Vista d'insieme dell'utente" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Rimuove gli utenti selezionati" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revoca tutti i privilegi attivi agli utenti e dopo li cancella." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Elimina i databases gli stessi nomi degli utenti." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9154,52 +9281,52 @@ msgstr "" "privilegi usati dal server se sono stati fatti cambiamenti manuali. In " "questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Privilegi relativi alle colonne" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Aggiungi privilegi sul seguente database" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "I caratteri jolly _ e % dovrebbero essere preceduti da un \\ per l'utilizzo " "letterale" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Aggiungi privilegi sulla seguente tabella" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Cambia le Informazioni di Login / Copia Utente" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Crea un nuovo utente con gli stessi privilegi e ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... mantieni quello vecchio." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... cancella quello vecchio dalla tabella degli utenti." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revoca tutti i privilegi attivi da quello vecchio e in seguito " "cancellalo." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9207,46 +9334,46 @@ msgstr "" " ... cancella quello vecchio dalla tabella degli utenti e in seguito " "ricarica i privilegi." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Database per l'utente" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Nessuno" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Crea un database con lo stesso nome e concedi tutti i privilegi" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Concedi tutti i privilegi al nome con caratteri jolly (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Garantisci tutti i privilegi per il database "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Utenti che hanno accesso a "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globale" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "specifico del database" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "L'utente é stato aggiunto." @@ -10577,115 +10704,115 @@ msgid_plural "%d minutes" msgstr[0] "%d minuto" msgstr[1] "%d minuti" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Impossibile connettersi all'origine" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Impossibile connettersi alla destinazione" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "database '%s' non esiste." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Sincronizzazzione delle strutture" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Sincronizzazione dati" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "non presente" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Differenza delle Strutture" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Differenze dei dati" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Aggiungi campo/i" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Rimuovi campo/i" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Modifica campo/i" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Rimuovi indice/i" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Applica indice/i" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Aggiorna riga/righe" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Inserisci riga/righe" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" "Vorresti rimuovere tutte le righe precedenti dalle tabelle di destinazione?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Applica i cambiamenti selezionati" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Sincronizzare i database" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Le tabelle di destinazione selezionate sono state sincronizzate con le " "tabelle di origine." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" "Il database di destinazione é stato sincronizzato con il database di origine" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "Query SQL" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Inserisci manualmente" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Connessione corrente" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Configurazione: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11036,34 +11163,34 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "La chiave deve contenere lettere, numeri [em]e[/em] caratteri speciali." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita." -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Mostrando il codice PHP" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Mostrando la query SQL" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "SQL Validato" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi con gli indici della tabella `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Etichetta" @@ -11072,64 +11199,64 @@ msgstr "Etichetta" msgid "Table %1$s has been altered successfully" msgstr "La tabella %1$s è già stata modificata con successo" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" " A causa della lunghezza,
questo campo potrebbe non essere " "modificabile " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Rimuovi le referenze al REPOSITORY BLOB" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Dato binario - non modificare" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Carica nella repository BLOB" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Inserisci come nuova riga" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Inserisci come nuova riga e ignora gli errori" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Mostra la insert query" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "e quindi" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Indietro" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Inserisci un nuovo record" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Torna a questa pagina" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Modifica il record successivo" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL" "+frecce per spostarlo altrove" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Riprendi inserimento con %s righe" @@ -11202,43 +11329,39 @@ msgstr "La tabella %1$s è stata creata." msgid "View dump (schema) of table" msgstr "Visualizza dump (schema) della tabella" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "Mostra la visualizzazione GIS" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Larghezza" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Altezza" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Etichetta del campo" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- Nessuno --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Usa OpenStreetMaps come livello base" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Ridisegna" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Salva nel file" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Nome del file" @@ -11462,23 +11585,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "Vincolo della chiave esterna" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Esegui \"query da esempio\" (carattere jolly: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Seleziona campi (almeno uno):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Aggiungi condizioni di ricerca (corpo della clausola \"where\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Numero di righi per pagina" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Ordine di visualizzazione:" @@ -13171,9 +13294,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Crea Utente" -#~ msgid "Add a new User" -#~ msgstr "Aggiungi un nuovo utente" - #~ msgid "Show table row links on left side" #~ msgstr "Mostra collegamenti alle righe della tabbella sulla sinistra" diff --git a/po/ja.po b/po/ja.po index fafac92501..799c966fe3 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-17 02:56+0200\n" "Last-Translator: Yuichiro \n" "Language-Team: japanese \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "すべて表示" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "たか、ブラウザのセキュリティ設定でクロスウィンドウの更新をブロックしているも" "のと思われます" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "検索" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "検索" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "テーブルのコメント" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "カラム" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "種別" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "コメント" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "いいえ" @@ -232,9 +233,9 @@ msgstr "いいえ" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "コピーしたデータベースに切り替える" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "リレーショナルスキーマを編集またはエクスポートす #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "テーブル" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -426,19 +427,19 @@ msgstr "ソート" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "昇順" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "降順" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "表示" @@ -459,8 +460,8 @@ msgid "Del" msgstr "削除" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "または" @@ -489,7 +490,7 @@ msgstr "利用するテーブル" msgid "SQL query on database %s:" msgstr "データベース %s のSQL:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "クエリを実行する" @@ -527,8 +528,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s 件(テーブル %s)" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "表示" @@ -539,7 +540,7 @@ msgid "Delete the matches for the %s table?" msgstr "テーブル %s に対して条件に一致したものを削除しますか?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -607,7 +608,7 @@ msgstr "SQL コマンドの追跡はアクティブです。" msgid "Tracking is not active." msgstr "SQL コマンドの追跡は非アクティブです。" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -635,22 +636,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "チェックしたものを:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "すべてチェックする" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "すべてのチェックを外す" @@ -658,10 +659,10 @@ msgstr "すべてのチェックを外す" msgid "Check tables having overhead" msgstr "オーバーヘッドのあるテーブルを確認する" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -669,17 +670,17 @@ msgid "Export" msgstr "エクスポート" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "印刷用画面" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "空にする" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -727,9 +728,9 @@ msgstr "SQL コマンドを追跡しているテーブル" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "データベース" @@ -748,15 +749,15 @@ msgstr "更新日時" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "状態" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "操作" @@ -809,7 +810,7 @@ msgstr "個々の入力欄にそれぞれ値を入力してください。" msgid "+ Restart insertion and add a new value" msgstr "+ 書き込みをやり直して、新しい値を追加する。" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "成形結果" @@ -846,6 +847,95 @@ msgstr "このウェブサーバにはファイル %s を保存する権限が msgid "Dump has been saved to file %s." msgstr "ダンプをファイル %s に保存しました" +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "カラム \"%s\" に対しての値" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "ベースレイヤーに OpenStreetMap を使用する" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "空間データ" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "ルーチンを追加する" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "行の終端記号" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "新しいユーザを追加する" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "新しいユーザを追加する" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "カラムを追加する" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "空間データ" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -895,7 +985,7 @@ msgstr "ブックマークを削除しました" msgid "Showing bookmark" msgstr "表示中のブックマーク" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "ブックマーク %s を作成しました" @@ -922,7 +1012,7 @@ msgstr "" "PHP の時間制限を伸ばさない限りこのデータのインポートはできません" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -946,15 +1036,15 @@ msgstr "クリックで選択" msgid "Click to unselect" msgstr "クリックで選択解除" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "DROP DATABASE 文は無効にされています" -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "本当に実行しますか?" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "データベースを完全に削除しようとしています!" @@ -1018,8 +1108,8 @@ msgstr "パスワードが空です!" msgid "The passwords aren't the same!" msgstr "パスワードが異なっています!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "ユーザを追加する" @@ -1037,8 +1127,8 @@ msgid "Close" msgstr "閉じる" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1074,12 +1164,12 @@ msgid "Other" msgstr "その他" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1166,12 +1256,12 @@ msgid "System swap" msgstr "システムスワップ" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1260,7 +1350,7 @@ msgstr "少なくとも1つの系列を追加してください" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "なし" @@ -1647,8 +1737,8 @@ msgstr "クエリボックスを表示" msgid "No rows selected" msgstr "行が選択されていません" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "変更" @@ -1662,8 +1752,8 @@ msgstr "最大実行時間" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "保存する" @@ -1675,7 +1765,7 @@ msgstr "検索条件を隠す" msgid "Show search criteria" msgstr "検索条件を表示する" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1719,32 +1809,40 @@ msgstr "カラムを追加・削除する" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "無視" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "コピー" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "カラムを追加する" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "参照されているキーを選択" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "外部キーを選択してください" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "主キーまたはユニークキーを選択してください" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "表示するカラムの選択" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1752,70 +1850,70 @@ msgstr "" "レイアウトの変更を保存されていません。保存していない場合、それらは失われま" "す。このまま続けてもよろしいですか?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "カラムに対するオプションを追加する" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "ドラッグでカラムの入れ替え" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "クリックでソート" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "クリックでカラムを反転/解除" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "ビューに移動" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "パスワードを生成する" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "生成する" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "パスワードを変更する" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "その他" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1825,258 +1923,263 @@ msgstr "" "します。最新バージョンは %s で、%s にリリースされています。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", 最終安定バージョン:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "最新版" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "決定" -#: js/messages.php:344 +#: js/messages.php:356 msgctxt "Previous month" msgid "Prev" msgstr "前月" -#: js/messages.php:349 +#: js/messages.php:361 msgctxt "Next month" msgid "Next" msgstr "翌月" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "今日" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "1 月" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "2 月" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "3 月" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "4 月" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "5 月" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "6 月" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "7 月" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "8 月" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "9 月" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "10 月" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "11 月" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "12 月" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "1 月" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "2 月" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "3 月" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "4 月" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "5 月" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "6 月" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "12 月" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "日" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "月" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "火" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "水" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "木" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "金" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "土" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "土" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "月" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "火" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "水" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "木" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "金" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "土" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "週" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "時" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "分" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "秒" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "フォントサイズ" @@ -2188,13 +2291,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "データベース" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "エラー" @@ -2318,7 +2421,7 @@ msgstr "テーマ %s が見つかりません!" msgid "Theme path not found for theme %s!" msgstr "テーマ %s のテーマパスが見つかりません!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "テーマ" @@ -2490,7 +2593,7 @@ msgstr "テーブル" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "データ" @@ -2558,7 +2661,7 @@ msgstr "サーバ %1$s のホスト名が不正です。設定を確認してく #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "サーバ" @@ -2623,152 +2726,152 @@ msgstr "実行した SQL" msgid "MySQL said: " msgstr "MySQLのメッセージ: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "SQL 検証への接続に失敗しました!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "EXPLAIN で確認" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "SQL の EXPLAIN 解析をスキップ" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP コードを省略" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP コードの作成" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "再描画" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL の検証をスキップ" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL の検証" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "このクエリをインライン編集する" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "インライン" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "プロファイリング" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "バイト" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "日" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %B %d 日 %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 日 %s 時間 %s 分 %s 秒" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "パラメータがありません:" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 msgctxt "First page" msgid "Begin" msgstr "先頭" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 msgctxt "Previous page" msgid "Previous" msgstr "前へ" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 msgctxt "Next page" msgid "Next" msgstr "次へ" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 msgctxt "Last page" msgid "End" msgstr "最後" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr ""%s" データベースに移動" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s の機能には既知のバグがあります。%s をご覧ください" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "クリックでオン/オフ切り替え" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "構造" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2776,37 +2879,37 @@ msgstr "構造" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "挿入" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "操作" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "アップロードファイル:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "指定したアップロードディレクトリが利用できません" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "アップロードファイルがありません" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "実行" @@ -2972,7 +3075,7 @@ msgstr "この値の変更をユーザに許可する" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "リセット" @@ -3240,7 +3343,7 @@ msgid "Character set of the file" msgstr "ファイルの文字セット" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "フォーマット" @@ -4893,7 +4996,7 @@ msgstr "SQL 検証を有効にするには必要です。" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "パスワード" @@ -5193,8 +5296,8 @@ msgid "Designer" msgstr "デザイナ" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "特権" @@ -5213,7 +5316,7 @@ msgstr "イベント" msgid "Triggers" msgstr "トリガ" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5271,7 +5374,7 @@ msgid "Create" msgstr "作成" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "特権なし" @@ -5591,12 +5694,12 @@ msgstr "キーでソート" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "オプション" @@ -5624,8 +5727,8 @@ msgstr "バイナリの内容を表示する" msgid "Show BLOB contents" msgstr "BLOB の内容を表示する" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "隠す" @@ -5634,10 +5737,6 @@ msgstr "隠す" msgid "Browser transformation" msgstr "ブラウザ変換機能" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "空間データ" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "テキスト形式" @@ -5646,57 +5745,53 @@ msgstr "テキスト形式" msgid "Well Known Binary" msgstr "バイナリ形式" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "コピー" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "行を削除しました" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "停止" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "行/クエリ" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "行の表示" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "合計" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "クエリの実行時間 %01.4f 秒" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "印刷用画面 (全テキストを含む)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "グラフで表示する" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "空間情報のデータを視覚化する" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "ビューを作成する" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "リンク先が見つかりません" @@ -5892,7 +5987,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "格納ファイルのガベージが何%になったら圧縮するか。" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "ポート" @@ -6240,7 +6335,7 @@ msgstr "MIME タイプの表示" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "ホスト" @@ -6448,7 +6543,7 @@ msgstr "内容をエクスポートする" msgid "Open new phpMyAdmin window" msgstr "別ウィンドウで開く" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "視覚化できる空間情報がありません。" @@ -6460,51 +6555,51 @@ msgstr "SQL の結果" msgid "Generated by" msgstr "生成環境" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした(行数0)" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下に示す構成が、作成もしくは変更されました。ここで次のことが行えます。" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "名前をクリックすることで構造内容を表示します。" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" "「オプション」のリンクをクリックすることで対応する設定の変更が行えます。" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "名前の後ろにある「構造」のリンクより構造の編集が行えます。" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "データベースに移動" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "%s ためのデータがありません" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "テーブルに移動" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "構造のみ" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "ビューに移動" @@ -6560,7 +6655,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "テーブル名" @@ -6581,6 +6676,32 @@ msgstr "パーセントは適切な小数に変換する(例:12.00% を . msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "金額は単位を取り除く(例:$5.00 を 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "このページにはテーブルがありません!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "SQL 互換モード:" @@ -6628,7 +6749,7 @@ msgstr "テーブル接頭辞の追加" msgid "Add prefix" msgstr "追加する接頭辞" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "変更なし" @@ -6637,7 +6758,7 @@ msgid "Charset" msgstr "文字セット" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "バイナリ" @@ -6944,7 +7065,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "ユーザ名" @@ -6962,9 +7083,9 @@ msgid "Variable" msgstr "変数" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "値" @@ -6992,7 +7113,7 @@ msgstr "すべてのユーザ" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "テキストフィールドの値を利用する" @@ -7175,7 +7296,7 @@ msgid "Returns" msgstr "返り値の種類" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "時間" @@ -7317,8 +7438,8 @@ msgstr "ルーチンを実行する" msgid "Routine parameters" msgstr "ルーチンのパラメータ" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "関数" @@ -7603,8 +7724,8 @@ msgstr "言語ファイルが登録されていません: %1$s" msgid "Current Server" msgstr "カレントサーバ" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "同期" @@ -7626,7 +7747,7 @@ msgstr "文字セット" msgid "Engines" msgstr "エンジン" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "元にするデータベース" @@ -7644,7 +7765,7 @@ msgstr "リモートサーバ" msgid "Difference" msgstr "差分" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "対象先のデータベース" @@ -7667,11 +7788,11 @@ msgstr "クリア" msgid "Columns" msgstr "カラム" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "この SQL をブックマークする" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "すべてのユーザがこのブックマークを利用できるようにする" @@ -7699,7 +7820,7 @@ msgstr "表示のみ" msgid "Location of the text file" msgstr "テキストファイルの位置" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "ウェブサーバ上のアップロードディレクトリ" @@ -7891,23 +8012,29 @@ msgid "+ Add a value" msgstr "+ 値を追加する" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "参照されている値を表示する" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "演算子" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "検索" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "挿入" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8069,8 +8196,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "ZIP アーカイブにファイルが含まれていません!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "ZIP アーカイブにエラーがあります:" @@ -8094,8 +8221,8 @@ msgstr "詳細設定" msgid "Protocol version" msgstr "プロトコルバージョン" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "ユーザ" @@ -8245,7 +8372,7 @@ msgstr "" "Suhosin が稼働しているため問題が発生する可能性があります。詳しくは%sドキュメ" "ント%sをご覧ください。" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "データベースが存在しません" @@ -8270,7 +8397,7 @@ msgstr "左側のメニューを表示する/隠す" msgid "Save position" msgstr "位置を保存" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "テーブルを作成" @@ -8614,96 +8741,96 @@ msgstr "ストレージエンジン" msgid "View dump (schema) of databases" msgstr "データベースのダンプ(スキーマ)表示" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "GRANT 以外のすべての特権を付与する" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "既存のテーブル構造の変更を許可する" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "ストアドルーチンの修正と削除を許可する" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "新しいデータベースやテーブルの作成を許可する" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "ストアドルーチンの作成を許可する" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "新しいテーブルの作成を許可する" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "一時テーブルの作成を許可する" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "ユーザアカウントの作成・削除・リネームを許可する" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "新しいビューの作成を許可する" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "データの削除を許可する" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "データベースとテーブルの削除を許可す" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "テーブルの削除を許可する" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "イベントスケジューラにイベントを設定できるようにする" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "ストアドルーチンの実行を許可する" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "データのインポート、エクスポートを許可する" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "特権テーブルの再読み込みなしでユーザ・特権の追加を許可する" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "インデックスの作成、削除を許可する" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "データの挿入、置換を許可する" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "現在のスレッドのテーブルロックを許可する" @@ -8731,52 +8858,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "ユーザの同時接続数を制限する" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "全ユーザのプロセスを閲覧できるようにする" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "このバージョンの MySQL では無効です" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "サーバ設定の再読み込み、サーバキャッシュのフラッシュを許可する" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "スレーブ/マスタの照会を許可する" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "レプリケーションスレーブでは有効にする必要があります" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "データの読み込みを許可する" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "データベース総一覧へのアクセスを許可する" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW クエリの実行を許可する" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "サーバのシャットダウンを許可する" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8787,43 +8914,43 @@ msgstr "" "ります" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "トリガの作成・削除を許可する" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "データの修正を許可する" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "特権はありません" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "なし" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "テーブル固有の特権" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "注意: MySQL の特権名は英語で表示されます" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "管理" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "グローバル特権" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "データベースに固有の特権" @@ -8843,7 +8970,7 @@ msgstr "ログイン情報" msgid "Do not change the password" msgstr "パスワードは変更しない" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "ユーザが存在しません" @@ -8892,7 +9019,7 @@ msgstr "選択したユーザを正しく削除しました" msgid "The privileges were reloaded successfully." msgstr "特権を正常に再読み込みしました" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "特権を編集" @@ -8900,34 +9027,34 @@ msgstr "特権を編集" msgid "Revoke" msgstr "取り消し" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "すべて" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "ユーザ概略" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "権限委譲" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "選択したユーザを削除する" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "特権をすべて取り消してユーザを削除する" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "ユーザと同名のデータベースを削除する" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8940,95 +9067,95 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" "込み%s をしてください" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "特権テーブルには選択したユーザがいません" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "このカラムに固有の特権" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "データベースに特権を追加" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "_ や % というワイルドカードを文字として使用するときは \\ でエスケープしてくだ" "さい。" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "テーブルに特権を追加" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "ログイン情報の変更 / ユーザの複製" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "同じ特権を持つ新しいユーザを作る" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "元のユーザも残す" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "ユーザテーブルから元のユーザを削除する" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "元のユーザの特権をすべて無効にしてから削除する" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "ユーザテーブルから元のユーザを削除し、特権の再読み込みをする" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "ユーザ専用データベース" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "なし" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "同名のデータベースを作成してすべての特権を与える" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "ワイルドカード(ユーザ名_%)に該当するデータベースにすべての特権を与える" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "データベース "%s" への全ての特権を与える" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr ""%s" にアクセスできるユーザ" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "グローバル" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "データベース固有" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "ワイルドカード" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "ビュー %s を破棄しました" @@ -9356,7 +9483,8 @@ msgid "" "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:814 @@ -9365,8 +9493,9 @@ msgid "" "time, observe or benchmark your database, and undo the change if there was " "no clearly measurable improvement." msgstr "" -"お使いのシステムをチューニングする最善の方法は、一度に行う変更は 1 " -"箇所のみにすることです。変更の度に、監視やベンチマークを行い、明確な改善が測定されなかった場合は変更を元に戻します。" +"お使いのシステムをチューニングする最善の方法は、一度に行う変更は 1 箇所のみに" +"することです。変更の度に、監視やベンチマークを行い、明確な改善が測定されな" +"かった場合は変更を元に戻します。" #. l10n: Questions is the name of a MySQL Status variable #: server_status.php:836 @@ -10367,112 +10496,112 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 分" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "元のデータベースに接続できませんでした。" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "対象先のデータベースに接続できませんでした。" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "データベース '%s' が存在しません。" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "構造の同期" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "データの同期" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "存在しません" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "構造の差分" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "データの差分" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "カラムの追加" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "カラムの削除" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "カラムの変更" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "インデックスの削除" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "インデックスを適用する" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "行の更新" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "行の挿入" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "対象先のテーブルから古い行を全て削除しますか?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "選択された変更を適用する" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "データベースの同期" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "選択された対象先のテーブルは、元のテーブルと同期されています。" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "対象先のデータベースが、元のデータベースと同期されています。" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "発行されたクエリ数" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "手動で入力する" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "現在の接続" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "設定:%s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "ソケット" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10814,34 +10943,34 @@ msgstr "キーが短すぎます。少なくとも 8 文字は必要です。" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "キーは文字、数字[em]そして[/em]特殊文字を含める必要があります。" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "PHP コードとして表示" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "検証した SQL 文" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "テーブル `%s` のインデックスに問題があります" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "ラベル" @@ -10850,62 +10979,62 @@ msgstr "ラベル" msgid "Table %1$s has been altered successfully" msgstr "テーブル %1$s を変更しました" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "長さによってはこのカラムを
修正できなくなる場合もあります。" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "BLOB 格納への参照を削除する" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "バイナリ - 編集不可" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "BLOB 格納へアップロードする" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "新しい行として挿入する" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "新しい行として挿入し、エラーは無視する" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "挿入クエリ文を表示する" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "続いて" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "前のページに戻る" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "新しいレコードを追加する" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "このページに戻る" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "次の行を編集する" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "%s 行づつ挿入を行う" @@ -10980,43 +11109,39 @@ msgstr "テーブル %1$s を作成しました。" msgid "View dump (schema) of table" msgstr "テーブルのダンプ(スキーマ)表示" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "視覚化した空間情報" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "幅" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "高さ" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "ラベルカラム" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- なし --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "空間情報カラム" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "ベースレイヤーに OpenStreetMap を使用する" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "再描画" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "ファイルに保存" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "ファイル名" @@ -11242,23 +11367,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "外部キー制約" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"query by example\"を実行 (ワイルドカード: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "カラムを選択してください (最低 1 つ)" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "検索条件 (WHERE 節の内容) を追加してください" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "ページあたりの行数" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "表示順" @@ -12939,9 +13064,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "ユーザを作成する" -#~ msgid "Add a new User" -#~ msgstr "新しいユーザを追加する" - #~ msgid "Show table row links on left side" #~ msgstr "左側にテーブルの行リンクを表示する" diff --git a/po/ka.po b/po/ka.po index 77211edc67..42484b1e6b 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-03-12 09:14+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: georgian \n" @@ -13,13 +13,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "ყველას ჩვენება" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "parent window, or your browser's security settings are configured to block " "cross-window updates." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "ძებნა" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "ძებნა" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -138,8 +139,8 @@ msgstr "ცხრილის კომენტარები" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -156,8 +157,8 @@ msgstr "სვეტების სახელები" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -168,7 +169,7 @@ msgstr "ტიპი" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -211,10 +212,10 @@ msgstr "კომენტარები" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "არა" @@ -233,9 +234,9 @@ msgstr "არა" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -339,7 +340,7 @@ msgstr "Switch to copied database" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -369,15 +370,15 @@ msgstr "Relational schema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "ცხრილი" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -438,19 +439,19 @@ msgstr "დალაგება" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "ზრდადობით" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "კლებადობით" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "ჩვენება" @@ -471,8 +472,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "ან" @@ -505,7 +506,7 @@ msgstr "გამოიყენე ცხრილები" msgid "SQL query on database %s:" msgstr "SQL query on database %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "მოთხოვნის გაგზავნა" @@ -545,8 +546,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s match(es) inside table %s" msgstr[1] "%s match(es) inside table %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "არჩევა" @@ -558,7 +559,7 @@ msgid "Delete the matches for the %s table?" msgstr "Dumping data for table" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -636,7 +637,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -666,22 +667,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "With selected:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "ყველას შემოწმება" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "მონიშნვის მოხსნა ყველასთვის" @@ -689,10 +690,10 @@ msgstr "მონიშნვის მოხსნა ყველასთვ msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -700,17 +701,17 @@ msgid "Export" msgstr "ექსპორტი" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "ცარიელი" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -764,9 +765,9 @@ msgstr "დაბლოკილი ცხრილების გამოტ #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "მონაცემთა ბაზა" @@ -787,15 +788,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "მდგომარეობა" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "მოქმედება" @@ -853,7 +854,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -887,6 +888,94 @@ msgstr "The web server does not have permission to save the file %s." msgid "Dump has been saved to file %s." msgstr "Dump has been saved to file %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "ახალი ველის დამატება" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Lines terminated by" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "ახალი მომხმარებლის დამატება" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "ახალი მომხმარებლის დამატება" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "%s ველის დამატება" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "ახალი სერვერის დამატება" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -934,7 +1023,7 @@ msgstr "The bookmark has been deleted." msgid "Showing bookmark" msgstr "Showing bookmark" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s created" @@ -961,7 +1050,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -985,15 +1074,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" statements are disabled." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "ნამდვილად გსურთ " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -1063,8 +1152,8 @@ msgstr "პაროლი ცარიელია!" msgid "The passwords aren't the same!" msgstr "პაროლები არ ემთხვევა!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1088,8 +1177,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1129,12 +1218,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1227,12 +1316,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1338,7 +1427,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "არაა" @@ -1761,8 +1850,8 @@ msgstr "SQL Query box" msgid "No rows selected" msgstr "No rows selected" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "შეცვლა" @@ -1776,8 +1865,8 @@ msgstr "Maximum execution time" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "შენახვა" @@ -1793,7 +1882,7 @@ msgstr "SQL Query box" msgid "Show search criteria" msgstr "SQL Query box" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1837,110 +1926,118 @@ msgstr "ველის სვეტების დამატება/წა msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "იგნორირება" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "ასლი" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "%s ველის დამატება" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Select referenced key" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Select Foreign Key" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Please select the primary key or a unique key" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "აირჩიეთ საჩვენებელი ველი" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy msgid "Go to link" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "პაროლის დაგენერირება" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "დაგენერირება" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "პაროლის შეცვლა" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "ორშ" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1950,32 +2047,32 @@ msgstr "" "upgrading. The newest version is %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "მონაცემთა ბაზები არაა" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "შემოწირულობა" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "წინა" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1983,96 +2080,96 @@ msgid "Next" msgstr "შემდეგი" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "სულ" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ბინარული" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "მარ" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "აპრ" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "მაი" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ივნ" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ივლ" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "აგვ" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ოქტ" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2080,78 +2177,78 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "დეკ" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "კვი" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "ორშ" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "სამ" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "პარ" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2159,107 +2256,112 @@ msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "შაბ" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "კვი" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "ორშ" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "სამ" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ოთხ" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "ხუთ" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "პარ" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "შაბ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "ვიკი" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "წამში" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "შრიფტის ზომა" @@ -2372,13 +2474,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "მონაცემთა ბაზები" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "შეცდომა" @@ -2515,7 +2617,7 @@ msgstr "Theme %s not found!" msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2689,7 +2791,7 @@ msgstr "ცხრილები" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "მონაცემები" @@ -2763,7 +2865,7 @@ msgstr "Invalid hostname for server %1$s. Please review your configuration." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "სერვერი" @@ -2828,105 +2930,105 @@ msgstr "SQL მოთხოვნა" msgid "MySQL said: " msgstr "MySQL-მა თქვა: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL-ის ახსნა" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP კოდის გარეშე" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP კოდის შექმნა" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "განახლება" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "ძრავები" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profiling" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "კვი" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y, %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s დღე, %s საათი, %s წუთი და %s წამი" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Routines" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2934,7 +3036,7 @@ msgctxt "First page" msgid "Begin" msgstr "დასაწყისი" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2943,7 +3045,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "წინა" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2952,7 +3054,7 @@ msgctxt "Next page" msgid "Next" msgstr "შემდეგი" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2960,34 +3062,34 @@ msgctxt "Last page" msgid "End" msgstr "დასასრული" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Jump to database "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "The %s functionality is affected by a known bug, see %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "სტრუქტურა" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2995,38 +3097,38 @@ msgstr "სტრუქტურა" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "ჩასმა" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "მოქმედებები" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3206,7 +3308,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "დაბრუნება" @@ -3490,7 +3592,7 @@ msgid "Character set of the file" msgstr "სომბოლოთა ნაკრები ფაილისათვის" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "ფორმატი" @@ -5245,7 +5347,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "პაროლი" @@ -5550,8 +5652,8 @@ msgid "Designer" msgstr "შემქნელი" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "პრივილეგიები" @@ -5570,7 +5672,7 @@ msgstr "მოვლენები" msgid "Triggers" msgstr "ტრიგერები" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5633,7 +5735,7 @@ msgid "Create" msgstr "შექმნა" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "პრივილეგიები არაა" @@ -6005,12 +6107,12 @@ msgstr "Sort by key" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "პარამეტრები" @@ -6044,8 +6146,8 @@ msgstr "ორობითი შიგთავსის ჩვენება" msgid "Show BLOB contents" msgstr "Show BLOB contents" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "დამალვა" @@ -6054,10 +6156,6 @@ msgstr "დამალვა" msgid "Browser transformation" msgstr "ინფორმაცია ბრაუზერის შესახებ" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -6066,60 +6164,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "ასლი" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "მოთხოვნაში" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Showing rows" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "სულ" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Query results operations" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF სქემის ჩვენება" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Create relation" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "ბმული ვერ მოიძებნა" @@ -6324,7 +6418,7 @@ msgstr "" "a value between 1 and 99. The default is 50." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "დალაგება" @@ -6688,7 +6782,7 @@ msgstr "MIME-ის ხელმისაწვდომი ტიპები" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "ჰოსტი" @@ -6892,7 +6986,7 @@ msgstr "Export defaults" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin-ის ახალი ფანჯრის გახსნა" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6904,52 +6998,52 @@ msgstr "SQL-ის შედეგი" msgid "Generated by" msgstr "Generated by" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Missing data for %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 #, fuzzy msgid "Go to table" msgstr "მონაცემთა ბაზები არაა" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "მხოლოდ სტრუქტურა" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -7001,7 +7095,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "ცხრილის სახელი" @@ -7022,6 +7116,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "File %s does not contain any key id" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -7075,7 +7195,7 @@ msgstr "" msgid "Add prefix" msgstr "ახალი ველის დამატება" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "ცვლილების გარეშე" @@ -7084,7 +7204,7 @@ msgid "Charset" msgstr "სიმბოლოთა ნაკრები" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "ბინარული" @@ -7394,7 +7514,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "მომხმარებლის სახელი" @@ -7414,9 +7534,9 @@ msgid "Variable" msgstr "ცვლადი" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "მნიშვნელობა" @@ -7442,7 +7562,7 @@ msgstr "ნებისმიერი მომხმარებელი" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "გამოიყენე ტექსტური ველი" @@ -7637,7 +7757,7 @@ msgid "Returns" msgstr "Return type" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "დრო" @@ -7796,8 +7916,8 @@ msgstr "" msgid "Routine parameters" msgstr "Routines" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "ფუნქცია" @@ -8133,8 +8253,8 @@ msgstr "უცნობი ენა: %1$s." msgid "Current Server" msgstr "სერვერი" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -8156,7 +8276,7 @@ msgstr "სიმბოლოთა ნაკრებები" msgid "Engines" msgstr "ძრავები" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "მონაცემთა ბაზაში ძებნა" @@ -8176,7 +8296,7 @@ msgstr "ახალი სერვერი" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "მონაცემთა ბაზაში ძებნა" @@ -8202,11 +8322,11 @@ msgstr "გაწმენდა" msgid "Columns" msgstr "სვეტების სახელები" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Let every user access this bookmark" @@ -8234,7 +8354,7 @@ msgstr "View only" msgid "Location of the text file" msgstr "Location of the text file" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "web server upload directory" @@ -8441,23 +8561,29 @@ msgid "+ Add a value" msgstr "ახალი სერვერის დამატება" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Browse foreign values" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "ოპერატორი" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "ძებნა" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "ჩასმა" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8664,8 +8790,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "ZIP არქივში ფაილების პოვნა ვერ მოხერხდა!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "შეცდომა ZIP არქივში:" @@ -8695,8 +8821,8 @@ msgstr "Other core settings" msgid "Protocol version" msgstr "ოქმის ვერსია" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "მომხმარებელი" @@ -8856,7 +8982,7 @@ msgstr "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "მონაცემთა ბაზები არაა" @@ -8885,7 +9011,7 @@ msgstr "Show/Hide left menu" msgid "Save position" msgstr "მდებარეობის შენახვა" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "ცხრილის შექმნა" @@ -9266,97 +9392,97 @@ msgstr "Storage Engines" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "შეიცავს ყველა პრივილეგიას GRANT-ის გამოკლებით." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Allows creating new tables." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Allows creating new views." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Allows deleting data." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Allows dropping tables." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Allows to set up events for the event scheduler" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." @@ -9385,52 +9511,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Allows viewing processes of all users" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Allows reading data." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9441,45 +9567,45 @@ msgstr "" "killing threads of other users." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping triggers" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "პრივილეგიები არაა." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "არაა" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Table-specific privileges" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Note: MySQL privilege names are expressed in English" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "ადმინისტრირება" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "გლობალური პრივილეგიები" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Database-specific privileges" @@ -9499,7 +9625,7 @@ msgstr "Login Information" msgid "Do not change the password" msgstr "არ შეცვალო პაროლი" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9550,7 +9676,7 @@ msgstr "The selected users have been deleted successfully." msgid "The privileges were reloaded successfully." msgstr "The privileges were reloaded successfully." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "პრივილეგიების რედაქტირება" @@ -9558,35 +9684,35 @@ msgstr "პრივილეგიების რედაქტირებ msgid "Revoke" msgstr "Revoke" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "ნებისმიერი" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "მომხმარებლის მიმოხილვა" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Remove selected users" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revoke all active privileges from the users and delete them afterwards." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Drop the databases that have the same names as the users." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9599,49 +9725,49 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Column-specific privileges" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "პრივილეგიების დამატება შემდეგი მონაცემთა ბაზისათვის" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "იგივე პრივილეგიების მქონე ახალი მომხმარებლის შექმნა და ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... ძველის შენახვა." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... ძველი მომხმარებლის მომხმარებლების ცხრილიდან წაშლა." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" "... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9649,49 +9775,49 @@ msgstr "" " ... ძველი მომხმარებლის მომხმარებლების სიიდან წაშლა და შემდეგ პრივილეგიების " "გადატვირთვა." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "მონაცემთა ბაზა მომხმარებლისთვის" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "არაა" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" "იგივე სახელის მქონე მონაცემთა ბაზის შექმნა და ყველა პრივილეგიის მინიჭება" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Users having access to "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "გლობალულრი" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "database-specific" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10989,118 +11115,118 @@ msgid_plural "%d minutes" msgstr[0] "in use" msgstr[1] "in use" -#: server_synchronize.php:92 +#: server_synchronize.php:99 #, fuzzy msgid "Could not connect to the source" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: server_synchronize.php:95 +#: server_synchronize.php:102 #, fuzzy msgid "Could not connect to the target" msgstr "MySQL სერვერთან დაკავშირება ვერ მოხერხდა" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 #, fuzzy msgid "Structure Difference" msgstr "სტრუქტურა ხედისათვის" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 #, fuzzy msgid "Data Difference" msgstr "სტრუქტურა ხედისათვის" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL მოთხოვნები" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "დაუცველი კავშირი" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "კონფიგურაციის ფაილი" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11496,36 +11622,36 @@ msgstr "Key is too short, it should have at least 8 characters" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Key should contain letters, numbers [em]and[/em] special characters" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "PHP კოდის სახით ჩვენება" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Showing SQL query" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Label" @@ -11534,64 +11660,64 @@ msgstr "Label" msgid "Table %1$s has been altered successfully" msgstr "Table %1$s has been altered successfully" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Because of its length,
this field might not be editable " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Remove BLOB Repository Reference" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binary - do not edit" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Upload to BLOB repository" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "ახალი სტრიქონის ჩამატება" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 #, fuzzy msgid "Show insert query" msgstr "Showing SQL query" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "და შემდეგ" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "წინა გვერდზე დაბრუნება" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "სხვა ახალი სტრიქონის დამატება" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "ამ გვერდზე დაბრუნება" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "შემდეგი სტრიქონის რედაქტირება" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11681,53 +11807,49 @@ msgstr "Table %1$s has been created." msgid "View dump (schema) of table" msgstr "View dump (schema) of table" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Display servers selection" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "CHAR textarea columns" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- არაა -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Log file count" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "ფაილის სახის შენახვა" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11962,25 +12084,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "Foreign key limit" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Do a \"query by example\" (wildcard: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Select fields (at least one):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Add search conditions (body of the \"where\" clause):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Number of rows per page" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Display order:" @@ -13610,9 +13732,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Create relation" -#~ msgid "Add a new User" -#~ msgstr "ახალი მომხმარებლის დამატება" - #~ msgid "Show table row links on left side" #~ msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" diff --git a/po/ko.po b/po/ko.po index e8d279d61c..9cf97e1cd9 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-05 14:17+0200\n" "Last-Translator: Chung-Ook Lee \n" "Language-Team: korean \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "모두 보기" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "대상 브라우저 창을 업데이트할 수 없습니다. 부모 창을 닫았거나 브라우저의 보" "안 설정이 다른 창을 업데이트하지 못하도록 설정되어 있는 것 같습니다." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "검색" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "검색" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "테이블 설명" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -156,8 +157,8 @@ msgstr "컬럼명" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -168,7 +169,7 @@ msgstr "종류" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -211,10 +212,10 @@ msgstr "설명(코멘트)" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "아니오 " @@ -233,9 +234,9 @@ msgstr "아니오 " #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -336,7 +337,7 @@ msgstr "복사한 테이블로 옮겨감" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -364,15 +365,15 @@ msgstr "" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "테이블 " #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -431,19 +432,19 @@ msgstr "정렬" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "오름차순" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "내림차순(역순)" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "보기" @@ -464,8 +465,8 @@ msgid "Del" msgstr "삭제" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "또는" @@ -494,7 +495,7 @@ msgstr "사용할 테이블" msgid "SQL query on database %s:" msgstr "데이터베이스 %s에 SQL 질의:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "질의 실행" @@ -533,8 +534,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s 건 일치 (테이블 %s)" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "보기" @@ -546,7 +547,7 @@ msgid "Delete the matches for the %s table?" msgstr "테이블의 덤프 데이터" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -621,7 +622,7 @@ msgstr "트래킹이 활성화되었습니다." msgid "Tracking is not active." msgstr "트래킹이 활성화되어 있지 않습니다." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -649,22 +650,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s는 이 MySQL 서버의 기본 스토리지 엔진입니다." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "선택한 것을:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "모두 체크" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "모두 체크안함" @@ -672,10 +673,10 @@ msgstr "모두 체크안함" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -683,17 +684,17 @@ msgid "Export" msgstr "내보내기" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "인쇄용 보기" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "비우기" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -745,9 +746,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "데이터베이스" @@ -767,15 +768,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "상태" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "실행" @@ -832,7 +833,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -867,6 +868,91 @@ msgstr "" msgid "Dump has been saved to file %s." msgstr "" +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +msgid "Add a point" +msgstr "필드 추가하기" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "줄(열) 구분자" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "새 사용자 추가" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "새 사용자 추가" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +msgid "Add a polygon" +msgstr "필드 추가하기" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "새 사용자 추가" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -911,7 +997,7 @@ msgstr "북마크를 제거했습니다." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -936,7 +1022,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -960,15 +1046,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "정말로 다음을 실행하시겠습니까? " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1034,8 +1120,8 @@ msgstr "암호가 비었습니다!" msgid "The passwords aren't the same!" msgstr "암호가 동일하지 않습니다!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1059,8 +1145,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1099,12 +1185,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1193,12 +1279,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1298,7 +1384,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "없음" @@ -1709,8 +1795,8 @@ msgstr "SQL 질의" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "변경" @@ -1722,8 +1808,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "저장" @@ -1737,7 +1823,7 @@ msgstr "SQL 질의" msgid "Show search criteria" msgstr "SQL 질의" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1781,108 +1867,116 @@ msgstr "컬럼 추가/삭제" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignore" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy msgid "Add columns" msgstr "필드 추가하기" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "출력할 필드 선택" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "암호 변경" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "암호 변경" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mo" msgid "More" msgstr "월" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1890,28 +1984,28 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "데이터베이스가 없습니다" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "완료" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "이전" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1919,149 +2013,149 @@ msgid "Next" msgstr "다음" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "오늘" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "1월" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "2월" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "3월" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "4월" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "5월" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "6월" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "7월" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "8월" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "9월" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "10월" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "11월" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "12월" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "일요일" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "월요일" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "화요일" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "수요일" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "목요일" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "금요일" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "토요일" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2069,87 +2163,92 @@ msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "토" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "일" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "월" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "화" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "수" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "목" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "금" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "토" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "주" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "시" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "분" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "초" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "글꼴 크기" @@ -2260,13 +2359,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "데이터베이스 " #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "오류" @@ -2392,7 +2491,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2561,7 +2660,7 @@ msgstr "테이블 수" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "데이터" @@ -2628,7 +2727,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "서버" @@ -2693,99 +2792,99 @@ msgstr "SQL 질의" msgid "MySQL said: " msgstr "MySQL 메시지: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL 해석" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "해석(EXPLAIN) 생략" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP 코드 없이 보기" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP 코드 보기" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL 검사 생략" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL 검사" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "일" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%y-%m-%d %H:%M " -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, fuzzy, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s일 %s시간 %분 %초" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2793,7 +2892,7 @@ msgctxt "First page" msgid "Begin" msgstr "처음" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2802,7 +2901,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "이전" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2811,7 +2910,7 @@ msgctxt "Next page" msgid "Next" msgstr "다음" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2819,34 +2918,34 @@ msgctxt "Last page" msgid "End" msgstr "마지막" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "데이터베이스 "%s" 로 이동." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "구조" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2854,38 +2953,38 @@ msgstr "구조" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "삽입" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "테이블 작업" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "웹서버 업로드 디렉토리" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "업로드 디렉토리에 접근할 수 없습니다" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3062,7 +3161,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "리세트" @@ -3318,7 +3417,7 @@ msgid "Character set of the file" msgstr "파일 문자셋:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -4920,7 +5019,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "암호" @@ -5213,8 +5312,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "사용권한" @@ -5233,7 +5332,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5292,7 +5391,7 @@ msgid "Create" msgstr "만들기 " #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "권한 없음" @@ -5637,12 +5736,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "테이블 작업" @@ -5675,8 +5774,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5685,10 +5784,6 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5697,60 +5792,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "질의(in query)" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "행(레코드) 보기" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "합계" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "질의 실행시간 %01.4f 초" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "열(칼럼) 설명(코멘트) 출력하기" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "서버 버전" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "" @@ -5931,7 +6022,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "정렬" @@ -6252,7 +6343,7 @@ msgstr "" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "호스트" @@ -6454,7 +6545,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6466,50 +6557,50 @@ msgstr "SQL 결과" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴.)" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "데이터베이스가 없습니다" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "구조만" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6560,7 +6651,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6581,6 +6672,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6630,7 +6745,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "변화 없음" @@ -6639,7 +6754,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "바이너리" @@ -6944,7 +7059,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "사용자명" @@ -6962,9 +7077,9 @@ msgid "Variable" msgstr "변수" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "값" @@ -6991,7 +7106,7 @@ msgstr "아무나" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "" @@ -7178,7 +7293,7 @@ msgid "Returns" msgstr "데이터베이스 사용량 통계" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "시간" @@ -7327,8 +7442,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "함수" @@ -7640,8 +7755,8 @@ msgstr "" msgid "Current Server" msgstr "서버" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7664,7 +7779,7 @@ msgstr "" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "데이터베이스 검색" @@ -7683,7 +7798,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "데이터베이스 검색" @@ -7709,11 +7824,11 @@ msgstr "" msgid "Columns" msgstr "열(칼럼) 이름" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "이 SQL 질의를 북마크함" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7741,7 +7856,7 @@ msgstr "View only" msgid "Location of the text file" msgstr "SQL 텍스트파일의 위치" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "웹서버 업로드 디렉토리" @@ -7930,24 +8045,30 @@ msgid "+ Add a value" msgstr "새 사용자 추가" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 #, fuzzy msgid "Operator" msgstr "테이블 작업" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "검색" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "삽입" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8069,8 +8190,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8094,8 +8215,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "사용자" @@ -8228,7 +8349,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "데이터베이스가 없습니다" @@ -8256,7 +8377,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "새 페이지 만들기" @@ -8619,99 +8740,99 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "데이터베이스의 덤프(스키마) 데이터 보기" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "GRANT 이외의 모든 권한을 포함함." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "테이블 구조 변경 허용." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "인덱스 생성 및 삭제 허용." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "DB 및 테이블 생성 허용." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 #, fuzzy msgid "Allows creating stored routines." msgstr "테이블 생성 허용." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "테이블 생성 허용." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "임시테이블 생성 허용." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 #, fuzzy msgid "Allows creating new views." msgstr "테이블 생성 허용." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "데이터 삭제 허용." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "DB 및 테이블 삭제 허용." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "테이블 삭제 허용." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "데이터를 파일에서 가져오기 및 파일로 내보내기 허용." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "권한 테이블을 갱신하지 않고 사용자와 권한 추가하기 허용." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "인덱스 생성 및 삭제 허용." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "데이터 추가(insert) 및 변경(replace) 허용." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "현재 쓰레드에 대한 테이블 잠금(lock) 허용." @@ -8741,52 +8862,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "이 버전의 MySQL에는 소용이 없습니다." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "캐시를 비우고 서버를 재시동하는 것을 허용." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "복제서버(replication slaves)에 필요합니다." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "데이터 읽기 허용." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "전체 데이터베이스 목록 접근을 허용" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "서버 종료 허용." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8794,46 +8915,46 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "인덱스 생성 및 삭제 허용." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "데이터 변경 허용." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "권한 없음." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "없음" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "테이블에 관한 권한" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "주의: MySQL 권한 이름은 영어로 표기되어야 합니다. " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "전체적 권한" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "데이터베이스에 관한 권한" @@ -8853,7 +8974,7 @@ msgstr "로그인 정보" msgid "Do not change the password" msgstr "암호를 변경하지 않음" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -8904,7 +9025,7 @@ msgstr "선택한 사용자들을 삭제했습니다." msgid "The privileges were reloaded successfully." msgstr "권한을 다시 로딩했습니다." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "권한 수정" @@ -8912,35 +9033,35 @@ msgstr "권한 수정" msgid "Revoke" msgstr "제거" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Any" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "사용자 개요" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 #, fuzzy msgid "Grant" msgstr "인쇄" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "선택한 사용자를 삭제" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "사용자명과 같은 이름의 데이터베이스를 삭제" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8949,98 +9070,98 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "열(칼럼)에 관한 권한" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "다음 데이터베이스에 권한 추가하기" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "다음 테이블에 권한 추가하기" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2176 +#: server_privileges.php:2174 #, fuzzy msgid "... delete the old one from the user tables." msgstr "권한 테이블에서 사용자를 삭제하기만 함." -#: server_privileges.php:2177 +#: server_privileges.php:2175 #, fuzzy msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "모든 활성화된 권한을 박탈하고 사용자를 삭제함." -#: server_privileges.php:2178 +#: server_privileges.php:2176 #, fuzzy msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "사용자를 삭제하고 사용권한을 갱신함." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "없음" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "데이터베이스 "%s" 에 대한 사용권한 검사." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr ""%s" 에 접근할 수 있는 사용자들" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10208,113 +10329,113 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 분" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "소스에 접속할 수 없음" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "타겟에 접속할 수 없음" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "차이나는 데이터" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "컬럼 추가" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "컬럼 제거" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "컬럼 뒤에" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "인덱스 제거" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "인덱스 적용" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "행 업데이트" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "행 삽입" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "대상 테이블에서 이전 행들을 모두 삭제하시겠습니까?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "선택한 변경내용 적용" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "데이터베이스 동기화" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL 질의" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "연결 수" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10607,36 +10728,36 @@ msgstr "키가 너무 짧다. 8글자 이상 사용" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "키는 문자, 숫자 [em]그리고[/em] 특수문자 포함" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "PHP 코드 보기" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "SQL 쿼리 보기" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL 검사" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Label" @@ -10645,63 +10766,63 @@ msgstr "Label" msgid "Table %1$s has been altered successfully" msgstr "선택한 사용자들을 삭제했습니다." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "필드의 길이 때문에,
이 필드를 편집할 수 없습니다 " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "바이너리 - 편집 금지 " -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "새 열을 삽입합니다" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "삽입 쿼리 보기" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "이어서" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "되돌아가기" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "새 행(레코드) 삽입하기" -#: tbl_change.php:1005 +#: tbl_change.php:1045 #, fuzzy msgid "Go back to this page" msgstr "되돌아가기" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "다음 행 수정" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "탭 키를 이용해 이동하거나 CTRL+화살표로 이동할 수 있다" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10785,49 +10906,45 @@ msgstr "테이블 %s 을 제거했습니다." msgid "View dump (schema) of table" msgstr "테이블의 덤프(스키마) 데이터 보기" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "너비" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "높이" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete columns" msgid "Label column" msgstr "컬럼 추가/삭제" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-없음-" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "전체 사용량" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "파일로 저장" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11056,25 +11173,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "외래키 제약" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "다음으로 질의를 만들기 (와일드카드: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "필드 선택 (하나 이상):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "검색 조건 추가 (\"where\" 조건):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "페이지당 레코드 수" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "출력 순서:" @@ -12606,9 +12723,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "서버 버전" -#~ msgid "Add a new User" -#~ msgstr "새 사용자 추가" - #~ msgid "Delete the matches for the " #~ msgstr "테이블의 덤프 데이터" diff --git a/po/lt.po b/po/lt.po index 1f71b2b3da..d30982ff07 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-08 18:05+0200\n" "Last-Translator: Kęstutis \n" "Language-Team: lithuanian \n" @@ -15,13 +15,13 @@ msgstr "" "%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Rodyti viską" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ 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:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Paieška" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Paieška" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Lentelės komentarai" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Stulpelis" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Tipas" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Komentarai" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Ne" @@ -232,9 +233,9 @@ msgstr "Ne" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Pereiti į nukopijuotą duomenų bazę" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -359,15 +360,15 @@ msgstr "Keisti arba eksportuoti ryšių schemą" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Lentelė" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -427,19 +428,19 @@ msgstr "Rūšiuoti" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Didėjimo tvarka" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Mažėjimo tvarka" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Rodyti" @@ -460,8 +461,8 @@ msgid "Del" msgstr "Pakeičiant" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Arba" @@ -490,7 +491,7 @@ msgstr "Naudoti lenteles" msgid "SQL query on database %s:" msgstr "SQL-užklausa duomenų bazėje %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Vykdyti užklausą" @@ -530,8 +531,8 @@ msgstr[0] "%s atitikmuo lentelėje %s" msgstr[1] "%s atitikmenys lentelėse %s" msgstr[2] "%s atitikmenų lentelėse %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Peržiūrėti" @@ -542,7 +543,7 @@ msgid "Delete the matches for the %s table?" msgstr "Ištrinti sutapimus %s lentelėje(ei)?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -614,7 +615,7 @@ msgstr "Sekimas yra aktyvus." msgid "Tracking is not active." msgstr "Sekimas yra neaktyvus." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -644,22 +645,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Pasirinktus:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Pažymėti visas" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Atžymėti visas" @@ -667,10 +668,10 @@ msgstr "Atžymėti visas" msgid "Check tables having overhead" msgstr "Pažymėti turinčias perteklių" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -678,17 +679,17 @@ msgid "Export" msgstr "Eksportuoti" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Spausdinti struktūrą" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Išvalyti" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -736,9 +737,9 @@ msgstr "Sekamos lentelės" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Duomenų bazė" @@ -757,15 +758,15 @@ msgstr "Atnaujinta" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Būsena" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Veiksmas" @@ -818,7 +819,7 @@ msgstr "Įveskite kiekvieną reikšmę atskirame laukelyje." msgid "+ Restart insertion and add a new value" msgstr "+ Paleisti iš naujo įterpimą ir pridėti naują reikšmę" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Išvedimas" @@ -853,6 +854,95 @@ msgstr "Nėra teisių išsaugoti failui %s." msgid "Dump has been saved to file %s." msgstr "Atvaizdis įrašytas faile %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Stulpelio „%s“ reikšmės" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Naudoti OpenStreetMaps kaip pagrindinį sluoksnį" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add constraints" +msgid "Add a point" +msgstr "Pridėti apribojimą" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Eilutės baigiasi" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Sukurti naują vartotoją" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Sukurti naują vartotoją" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Pridėti stulpelį" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add event" +msgid "Add geometry" +msgstr "Pridėti įvykį" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -900,7 +990,7 @@ msgstr "Nuoroda ištrinta." msgid "Showing bookmark" msgstr "Rodomos žymelės" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Žymė %s sukurta" @@ -928,7 +1018,7 @@ msgstr "" "padidintumėte PHP laiko limitą." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -953,15 +1043,15 @@ msgstr "Spustelėkite pažymėjimui" msgid "Click to unselect" msgstr "Spustelėkite atžymėjimui" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "„DROP DATABASE“ komandos įvykdyti negalima." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Ar tikrai norite " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Jūs ruošiatės SUNAIKINTI visą duomenų bazę!" @@ -1023,8 +1113,8 @@ msgstr "Tuščias slaptažodis!" msgid "The passwords aren't the same!" msgstr "Slaptažodžiai nesutampa!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Pridėti naudotoją" @@ -1042,8 +1132,8 @@ msgid "Close" msgstr "Uždaryti" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1079,12 +1169,12 @@ msgid "Other" msgstr "Kita" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1171,12 +1261,12 @@ msgid "System swap" msgstr "Sistemos swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1269,7 +1359,7 @@ msgstr "Prašome pridėti bent vieną kintamąjį į eilę" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Ne" @@ -1649,8 +1739,8 @@ msgstr "Rodyti užklausos laukelį" msgid "No rows selected" msgstr "Nepasirinkti įrašai" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Redaguoti" @@ -1662,8 +1752,8 @@ msgstr "Užklausos vykdymo laikas" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Išsaugoti" @@ -1675,7 +1765,7 @@ msgstr "Slėpti paieškos kriterijų" msgid "Show search criteria" msgstr "Rodyti paieškos kriterijų" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1719,103 +1809,111 @@ msgstr "Įterpti/trinti stulpelius" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignoruoti" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Kopijuoti" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "Pridėti stulpelį(-ius)" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Pasirinkite siejamą raktą" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Pasirinkti Foreign Key" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Prašome pasirinkti pirminį raktą arba unikalųjį raktą" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Pasirinkite laukus peržiūrai" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Pridėti parinktį stulpeliui/skilčiai" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Spustelėkite pažymėjimui" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Eiti į rodinį (view)" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Generuoti slaptažodį" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generuoti" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Pakeisti slaptažodį" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Daugiau" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1825,27 +1923,27 @@ msgstr "" "atnaujinimą. Naujausia versija yra %s, išleista %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", naujausia stabili versija:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "naujausias" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Atlikta" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Ankstesnis" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1853,149 +1951,149 @@ msgid "Next" msgstr "Kitas" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Šiandien" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "sausio" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "vasario" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "kovo" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "balandžio" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Geg" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "birželio" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "liepos" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "rugpjūčio" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "rugsėjo" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "spalio" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "lapkričio" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "gruodžio" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Sau" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Vas" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Kov" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Bal" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Geg" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Bir" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Lie" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Rgp" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Rgs" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Spa" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Lap" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Grd" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Sekmadienis" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Pirmadienis" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Antradienis" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Trečiadienis" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Penktadienis" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Šeštadienis" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2003,87 +2101,92 @@ msgid "Sun" msgstr "Sek" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Pir" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Ant" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Tre" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Ket" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Pen" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Šeš" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Sk" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "An" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Tr" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Kt" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Pn" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Št" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Sav." -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Valanda" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minutė" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Sekundės" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Šrifto dydis" @@ -2192,13 +2295,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Duomenų bazės" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Klaida" @@ -2326,7 +2429,7 @@ msgstr "Tema %s nerasta!" msgid "Theme path not found for theme %s!" msgstr "Kelias iki temos nerastas temai %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Apipavidalinimas" @@ -2500,7 +2603,7 @@ msgstr "Lentelės" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Duomenys" @@ -2567,7 +2670,7 @@ msgstr "Blogas serverio %1$s hostname. Prašome peržiūrėti nustatymus." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Serveris" @@ -2632,99 +2735,99 @@ msgstr "SQL užklausa" msgid "MySQL said: " msgstr "MySQL atsakymas: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Nepavyko prisijungti prie SQL tikrintuvo!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Paaiškinti SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Praleisti SQL užklausos aiškinimą" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "be PHP kodo" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP kodas" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Atnaujinti" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Praleisti SQL užklausos tikrinimą" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Patikrinti SQL užklausą" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Greitas užklausos redagavimas" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Redaguoti čia" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profiliavimas" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Sek" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y m. %B %d d. %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s d., %s val., %s min. ir %s s" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "Trūkstamas parametras:" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2732,7 +2835,7 @@ msgctxt "First page" msgid "Begin" msgstr "Pradžia" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2741,7 +2844,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Ankstesnis" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2750,7 +2853,7 @@ msgctxt "Next page" msgid "Next" msgstr "Kitas" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2758,34 +2861,34 @@ msgctxt "Last page" msgid "End" msgstr "Pabaiga" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Pereiti į „%s“ duomenų bazę." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, 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/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Spustelėkite suskleidimui/atskleidimui" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktūra" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2793,37 +2896,37 @@ msgstr "Struktūra" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Įterpti" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Veiksmai" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Naršyti savo kompiuteryje:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Nepasiekimas nurodytas www-serverio katalogas atsiuntimams." -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Nėra failų išsiuntimui" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Vykdyti" @@ -2990,7 +3093,7 @@ msgstr "Leisti naudotojams adaptuoti šią reikšmę" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Atstatyti į pradinę būseną" @@ -3259,7 +3362,7 @@ msgid "Character set of the file" msgstr "Failo simbolių koduotė:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formatas" @@ -4880,7 +4983,7 @@ msgstr "Reikalaujama, kad SQL Validator būtų įjungtas" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Slaptažodis" @@ -5168,8 +5271,8 @@ msgid "Designer" msgstr "Projektavimas" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilegijos" @@ -5188,7 +5291,7 @@ msgstr "Įvykiai" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5247,7 +5350,7 @@ msgid "Create" msgstr "Sukurti" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Nėra privilegijų" @@ -5561,12 +5664,12 @@ msgstr "Rūšiuoti pagal raktą" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Nustatymai" @@ -5594,8 +5697,8 @@ msgstr "Rodyti dvejetainį turinį" msgid "Show BLOB contents" msgstr "Rodyti BLOB turinį" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Paslėpti" @@ -5604,10 +5707,6 @@ msgstr "Paslėpti" msgid "Browser transformation" msgstr "Naršyklės transformacija" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5616,57 +5715,53 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Kopijuoti" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Eilutė buvo ištrinta" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Stabdyti procesą" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "užklausa vykdoma" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Rodomi įrašai" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "iš viso " -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Užklausa užtruko %01.4f sek." -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Spausdinti rezultatus (su pilnais tekstais)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Rodyti diagramą" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Sukurti rodinį" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Sąryšis nerastas" @@ -5854,7 +5949,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Prievadas (jungtis)" @@ -6164,7 +6259,7 @@ msgstr "Rodyti MIME-tipus" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Darbinė stotis" @@ -6376,7 +6471,7 @@ msgstr "Eksportuoti turinį" msgid "Open new phpMyAdmin window" msgstr "Atverti naują phpMyAdmin langą" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "Nerasta duomenų GIS vizualizavimui." @@ -6388,53 +6483,53 @@ msgstr "SQL rezultatas" msgid "Generated by" msgstr "Sugeneravo" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 #, 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 #, 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:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Eiti į duomenų bazę" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "Keisti nustatymus %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Eiti į lentelę" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, php-format msgid "Structure of %s" msgstr "Struktūra %s" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Eiti į rodinį (view)" @@ -6487,7 +6582,7 @@ msgid "DocSQL" msgstr "docSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Lentelės vardas" @@ -6509,6 +6604,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importuoti valiutas (pavyzdžiui. $5.00 į 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Šis puslapis neturi jokių lentelių!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "SQL suderinamumo režimas:" @@ -6556,7 +6677,7 @@ msgstr "Pridėti lentelės priešdėlį" msgid "Add prefix" msgstr "Pridėti priešdėlį" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Nėra pakeitimų" @@ -6565,7 +6686,7 @@ msgid "Charset" msgstr "Koduotė" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Dvejetainis" @@ -6880,7 +7001,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Naudotojo vardas" @@ -6898,9 +7019,9 @@ msgid "Variable" msgstr "Kintamasis" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Reikšmė" @@ -6926,7 +7047,7 @@ msgstr "Bet kurį vartotoją" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Naudokite teksto įvedimo lauką" @@ -7106,7 +7227,7 @@ msgid "Returns" msgstr "Grąžina" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Laikas" @@ -7251,8 +7372,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funkcija" @@ -7535,8 +7656,8 @@ msgstr "Nežinoma kalba: %1$s." msgid "Current Server" msgstr "Dabartinis serveris" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Sinchronizuoti" @@ -7558,7 +7679,7 @@ msgstr "Koduotės" msgid "Engines" msgstr "Varikliai" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Iš duomenų bazės" @@ -7576,7 +7697,7 @@ msgstr "Nutolęs serveris" msgid "Difference" msgstr "Skirtumas" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Į duomenų bazę" @@ -7599,11 +7720,11 @@ msgstr "Išvalyti" msgid "Columns" msgstr "Stulpeliai" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Šios SQL užklausą pasižymėti kaip" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Leisti kitiems vartotojams naudotis šia žyme" @@ -7631,7 +7752,7 @@ msgstr "Peržiūra" msgid "Location of the text file" msgstr "Tekstinio failo vieta" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "web serverio katalogas atsiuntimams" @@ -7826,23 +7947,29 @@ msgid "+ Add a value" msgstr "+ Pridėti reikšmę" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operatorius" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Paieška" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Įterpti" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8013,8 +8140,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "ZIP archyve nerasta failų!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Klaida ZIP archyve:" @@ -8038,8 +8165,8 @@ msgstr "Daugiau nustatymų" msgid "Protocol version" msgstr "Protokolo versija" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Naudotojas" @@ -8182,7 +8309,7 @@ msgstr "" "Serveris veikia su Suhosin. Prašome perskaityti %sdokumentaciją%s dėl galimų " "problemų." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Nėra duomenų bazių" @@ -8209,7 +8336,7 @@ msgstr "Rodyti/slėpti kairį meniu" msgid "Save position" msgstr "Išsaugoti vietą" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Sukurti lentelę" @@ -8552,80 +8679,80 @@ msgstr "Saugojimo varikliai" msgid "View dump (schema) of databases" msgstr "Peržiūrėti duomenų bazių atvaizdį (schemą)" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Įtraukti visas teises, išskyrus GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Leisti keisti jau egzistuojančių lenetelių struktūrą." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Leisti keisti pašalinti saugimas programas (stored routines)." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Leisti kurti naujas duomenų bazes ir lenteles." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Leidžia sukurti naujas saugomas programas (stored routines)." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Leisti kurti naujas lenteles." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Leisti kurti laikinas lenteles." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Leidžia kurti, šalinti ir pervadinti vartotojus." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Leidžia sukurti naujus rodinius (view)." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Leisti šalinti duomenis." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Leisti šalinti duomenų bazes ir lenteles." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Leisti šalinti lenteles." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Leisti nustatyti įvykius įvykių planuoklėje (scheduler)" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Leisti įvykdyti saugomas programas (stored routines)." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Leisti įterpti ir eksportuoti duomenis iš failų." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8633,17 +8760,17 @@ msgstr "" "privilegijų lentelės." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Leisti įterpti ir modifikuoti indeksus." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Leisti įterpti ir modifikuoti duomenis." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Leisti užrakinti lenteles procesų metu." @@ -8673,54 +8800,54 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Riboti skaičių lygiagrečių prisijungimų kurį naudotojai gali turėti." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Leisti peržiūrėti procesus visiems naudotojams" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Negalioja šioje MySQL versijoje." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Leisti perkrauti serverio nustatymus, bei išvalyti laikinąją atmintį (cache)." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Leisti vartotojo užklausas dėl atstatymo master / slave darbinių stočių." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Leisti skaityti duomenis." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Suteikti prieigą prie visų duomenų bazių sąrašo." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Leidžia vykdyti SHOW CREATE VIEW užklausas." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Leisti išjungti serverį." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8731,43 +8858,43 @@ msgstr "" "vartotojų atjungimui." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Leisti įterpti ir pašalinti trigerius." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Leisti modifikuoti duomenis." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Be teisių." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Nėra" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Specifinės lentelių privilegijos" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Pastaba: MySQL privilegijų pavadinimai pateikiami anglų kalba" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globalios teisės" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Specifinės duomenų bazių privilegijos" @@ -8787,7 +8914,7 @@ msgstr "Prisijungimo informacija" msgid "Do not change the password" msgstr "Nekeisti slaptažodžio" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Nerasta jokių naudotojų." @@ -8836,7 +8963,7 @@ msgstr "Pažymėti vartotojai sėkmingai pašalinti." msgid "The privileges were reloaded successfully." msgstr "Teisės sėkmingai perkrautos." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Redaguoti privilegijas" @@ -8844,37 +8971,37 @@ msgstr "Redaguoti privilegijas" msgid "Revoke" msgstr "Panaikinti" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Bet kurį(ią)" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Vartotojų peržiūra" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Suteikti" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Pašalinti pažymėtus vartotojus" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Panaikinti visas aktyvias vartotojų privilegijas ir pašalinti vartotojus." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" "Pašalinti duomenų bazes, turinčias tokius pačius pavadinimus kaip ir " "vartotojai." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8886,49 +9013,49 @@ msgstr "" "lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų " "failuose nurodytų teisių. Todėl %sperkraukite teises%s, jeigu norite tęsti. " -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Specifinės stulpelių privilegijos" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Sukurti privilegijas šiai duomenų bazei" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Norėdami naudoti _ ir % kaip simbolius, prieš juos prirašykite \\" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Sukurti privilegijas šiai lentelei" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Pakeisti prisijungimo informaciją / Kopijuoti vartotojo duomenis" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Sukurti naują vartotoją su tom pačiom privilegijom ir ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... palikti seną vartotoją." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... pašalinti seną vartotoją iš vartotojų lentelės." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... panaikinti visas privilegijas iš seno vartotojo ir poto jį pašalinti." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -8936,47 +9063,47 @@ msgstr "" " ... pašalinti seną vartotoją iš vartotojų lentelės ir poto perkrauti " "privilegijas" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Vartotojo duomenų bazė" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Be" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" "Sukurti duomenų bazę su tokiu pat vardu ir suteikti jai visas privilegijas" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Suteikti visas privilegijas pakaitos vardui (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Suteikti visas privilegijas duomenų bazei „%s“" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Vartotojai turintys priėjimą prie „%s“" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globalus" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "tam tikros duomenų bazės" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "pakaitos simbolis" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "Naudotojas buvo pridėtas." @@ -10153,110 +10280,110 @@ msgstr[0] "Minutė" msgstr[1] "Minutė" msgstr[2] "Minučių" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Nepavyko prisijungti prie šaltinio (angl. source)" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Nepavyko prisijungti prie adresato (angl. target)" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "„%s“ duomenų bazė neegzistuoja." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Struktūros sinchronizacija" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Duomenų sinchronizacija" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Struktūros skirtumas" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Duomenų skirtumas" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Pridėti stulpelį(-ius)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Pašalinti stulpelį(-ius)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Pakeisti stulpelį(-ius)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Pašalinti žurnalą(us) (indeksą)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Keisti žurnalą(us) (indeksą)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Atnaujinti eilutę(es)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Įterpti eilutę(-es)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Įrašyti pakeitimus" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Sinchronizuoti duomenų bazes" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 msgid "Executed queries" msgstr "Įvykdytos užklausos" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Įvesti rakiniu būdu" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Dabartinis prisijungimas" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Konfigūracija: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Prievadas (socket)" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10603,34 +10730,34 @@ msgstr "" "Raktas turėtų būti sudarytas iš raidžių, skaičių [em]ir[/em] specialiųjų " "ženklų." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Įterpto įrašo id: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Rodomas PHP kodas" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Patikrintas SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Iškilo problemos su `%s` lentelės indeksais" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Nuorodos Antraštė" @@ -10639,61 +10766,61 @@ msgstr "Nuorodos Antraštė" msgid "Table %1$s has been altered successfully" msgstr "Lentelė %1$s sėkmingai pakeista" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "Dėl jo ilgio,
šis laukelis gali būti neredaguojamas (tinas)" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Panaikinti BLOB saugyklos rodyklę" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Dvejetainis - nekeisti" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Įkelti BLOB saugyklą" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Įterpti kaip naują įrašą" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Rodyti įterptą užklausą" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "ir tada" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Sugrįžti į buvusį puslapį" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Įterpti kitą naują eilutę" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Grįžti atgal į šį puslapį" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Redaguoti kitą įrašą" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Tęstį įterpimą su %s eilučių" @@ -10766,43 +10893,39 @@ msgstr "Sukurta %1$s lentelė." msgid "View dump (schema) of table" msgstr "Peržiūrėti lentelės struktūros atvaizdį" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "Rodyti GIS vizualizaciją" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Plotis" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Aukštis" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Etiketės stulpelis" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- Tuščia --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Naudoti OpenStreetMaps kaip pagrindinį sluoksnį" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Perpiešti" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Įrašyti į failą" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Failo pavadinimas" @@ -11025,23 +11148,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykdyti „užklausą pagal pavyzdį“ (pakaitos simbolis: „%“)" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Pasirinkite stulpelius (bent vieną):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Įterpkite paieškos sąlygas į \"where\" sakinį:" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Eilučių skaičius puslapyje" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Atvaizdavimo tvarka:" @@ -12692,9 +12815,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Sukurti naudotoją" -#~ msgid "Add a new User" -#~ msgstr "Sukurti naują vartotoją" - #~ msgid "Show table row links on left side" #~ msgstr "Lentelių nuorodų eilę rodyti kairėje pusėje" diff --git a/po/lv.po b/po/lv.po index 78749677e1..b50965e502 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-03-12 09:16+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: latvian \n" @@ -13,13 +13,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Rādīt visu" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "vai arī Jūsu pārlūkprogramma bloķe starplogu saskarsmi Jūsu drošības " "iestādījumu dēļ." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Meklēt" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "Meklēt" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -136,8 +137,8 @@ msgstr "Komentārs tabulai" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -154,8 +155,8 @@ msgstr "Kolonnu nosaukumi" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -166,7 +167,7 @@ msgstr "Tips" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -209,10 +210,10 @@ msgstr "Komentāri" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Nē" @@ -231,9 +232,9 @@ msgstr "Nē" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -337,7 +338,7 @@ msgstr "Pārslēgties uz nokopēto datubāzi" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -367,15 +368,15 @@ msgstr "Relāciju shēma" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabula" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -436,19 +437,19 @@ msgstr "Kārtošana" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Augošā secībā" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Dilstošā secībā" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Rādīt" @@ -469,8 +470,8 @@ msgid "Del" msgstr "Dzēst" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Vai" @@ -503,7 +504,7 @@ msgstr "Lietot tabulas" msgid "SQL query on database %s:" msgstr "SQL vaicājums uz datubāzes %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Izpildīt vaicājumu" @@ -543,8 +544,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s rezultāti tabulā %s" msgstr[1] "%s rezultāti tabulā %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Apskatīt" @@ -556,7 +557,7 @@ msgid "Delete the matches for the %s table?" msgstr "Dati tabulai" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -634,7 +635,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -663,22 +664,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Ar iezīmēto:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Iezīmēt visu" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Neiezīmēt neko" @@ -686,10 +687,10 @@ msgstr "Neiezīmēt neko" msgid "Check tables having overhead" msgstr "Iezīmēt tabulas ar pārtēriņu" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -697,17 +698,17 @@ msgid "Export" msgstr "Eksports" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Izdrukas versija" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Iztukšot" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -759,9 +760,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Datubāze" @@ -781,15 +782,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Statuss" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Darbība" @@ -846,7 +847,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -881,6 +882,93 @@ msgstr "Web serverim nav tiesību rakstīt failā %s." msgid "Dump has been saved to file %s." msgstr "Damps tika saglabāts failā %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "Pievienot jaunu lauku" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Rindas atdalītas ar" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Pievienot jaunu lietotāju" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Pievienot jaunu lietotāju" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "Pievienot %s lauku(s)" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Pievienot jaunu lietotāju" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -921,7 +1009,7 @@ msgstr "Ieraksts tika dzēsts." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -944,7 +1032,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -969,15 +1057,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda ir aizliegta." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Vai Jūs tiešām gribat " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Jūs taisaties LIKVIDĒT veselu datubāzi!" @@ -1047,8 +1135,8 @@ msgstr "Parole nav norādīta!" msgid "The passwords aren't the same!" msgstr "Paroles nesakrīt!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1071,8 +1159,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1111,12 +1199,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1203,12 +1291,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1308,7 +1396,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nav" @@ -1721,8 +1809,8 @@ msgstr "SQL vaicājums" msgid "No rows selected" msgstr "Rindas nav iezīmētas" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Labot" @@ -1734,8 +1822,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Saglabāt" @@ -1749,7 +1837,7 @@ msgstr "SQL vaicājums" msgid "Show search criteria" msgstr "SQL vaicājums" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1793,110 +1881,118 @@ msgstr "Pievienot/Dzēst laukus (kolonnas)" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignorēt" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Pievienot %s lauku(s)" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izvēlieties, kuru lauku rādīt" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Mainīt paroli" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Mainīt paroli" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "P" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1904,30 +2000,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Nav datubāzu" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "Nav" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Iepriekšējie" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1935,96 +2031,96 @@ msgid "Next" msgstr "Nākamie" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kopā" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binārais" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mai" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jūn" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jūl" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2032,78 +2128,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dec" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sv" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "P" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "O" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pk" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2111,105 +2207,110 @@ msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "S" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sv" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "O" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pk" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "S" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lietošanā" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundē" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2315,13 +2416,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Datubāzes" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Kļūda" @@ -2449,7 +2550,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2620,7 +2721,7 @@ msgstr "Tabulas" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Dati" @@ -2688,7 +2789,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Serveris" @@ -2753,101 +2854,101 @@ msgstr "SQL vaicājums" msgid "MySQL said: " msgstr "MySQL teica: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Izskaidrot SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Neizskaidrot SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Bez PHP koda" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Izveidot PHP kodu" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Atjaunot" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Nepārbaudīt SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Pārbaudīt SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "baiti" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Sv" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d.%m.%Y %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dienas, %s stundas, %s minūtes un %s sekundes" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Pievienot jaunu lauku" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2855,7 +2956,7 @@ msgctxt "First page" msgid "Begin" msgstr "Sākums" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2864,7 +2965,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Iepriekšējie" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2873,7 +2974,7 @@ msgctxt "Next page" msgid "Next" msgstr "Nākamie" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2881,34 +2982,34 @@ msgctxt "Last page" msgid "End" msgstr "Beigas" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "pāriet pie datubāzes "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktūra" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2916,38 +3017,38 @@ msgstr "Struktūra" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Pievienot" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Darbības" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, 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/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3126,7 +3227,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Atcelt" @@ -3382,7 +3483,7 @@ msgid "Character set of the file" msgstr "Tabulas kodējums:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formats" @@ -4989,7 +5090,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Parole" @@ -5271,8 +5372,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilēģijas" @@ -5291,7 +5392,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5352,7 +5453,7 @@ msgid "Create" msgstr "Izveidot" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Nav privilēģiju" @@ -5698,12 +5799,12 @@ msgstr "Kārtot pēc atslēgas" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Darbības" @@ -5739,8 +5840,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5749,10 +5850,6 @@ msgstr "" msgid "Browser transformation" msgstr "Pārlūkprogrammas transformācija" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5761,60 +5858,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Nogalināt" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "vaicājumā" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Parādu rindas" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "kopā" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Vaicājums ilga %01.4f s" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Drukas skats (ar pilniem tekstiem)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Rādīt PDF shēmu" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Servera versija" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Links nav atrasts" @@ -5996,7 +6089,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Kārtošana" @@ -6331,7 +6424,7 @@ msgstr "Pieejamie MIME tipi" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Hosts" @@ -6535,7 +6628,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6547,50 +6640,50 @@ msgstr "SQL rezultāts" msgid "Generated by" msgstr "Uzģenerēja" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Nav datubāzu" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tikai struktūra" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6641,7 +6734,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6662,6 +6755,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "MySQL 4.0 compatible" @@ -6715,7 +6832,7 @@ msgstr "" msgid "Add prefix" msgstr "Pievienot jaunu lauku" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Netika labots" @@ -6724,7 +6841,7 @@ msgid "Charset" msgstr "Kodējums" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binārais" @@ -7030,7 +7147,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Lietotājvārds" @@ -7048,9 +7165,9 @@ msgid "Variable" msgstr "Mainīgais" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Vērtība" @@ -7076,7 +7193,7 @@ msgstr "Jebkurš lietotājs" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Lietot teksta lauku" @@ -7266,7 +7383,7 @@ msgid "Returns" msgstr "Tabulas opcijas" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Laiks" @@ -7419,8 +7536,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funkcija" @@ -7739,8 +7856,8 @@ msgstr "" msgid "Current Server" msgstr "Serveris" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7762,7 +7879,7 @@ msgstr "Rakstzīmju kodējumi" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Meklēt datubāzē" @@ -7781,7 +7898,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Meklēt datubāzē" @@ -7808,11 +7925,11 @@ msgstr "Kalendārs" msgid "Columns" msgstr "Kolonnu nosaukumi" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" @@ -7840,7 +7957,7 @@ msgstr "Tikai apskatīt" msgid "Location of the text file" msgstr "Teksta faila atrašanās vieta" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "web servera augšupielādes direktorija" @@ -8045,23 +8162,29 @@ msgid "+ Add a value" msgstr "Pievienot jaunu lietotāju" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Pārlūkot ārējās vērtības" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operators" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Meklēt" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Pievienot" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8242,8 +8365,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8271,8 +8394,8 @@ msgstr "Galvenās relāciju īpašības" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Lietotājs" @@ -8406,7 +8529,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Nav datubāzu" @@ -8434,7 +8557,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "Izveidot jaunu lapu" @@ -8801,83 +8924,83 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Apskatīt datubāzu dampu (shēmu)" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Iekļauj visas privilēģijas, izņemot GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Ļauj mainīt esošo tabulu struktūru." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Ļauj veidot un dzēst indeksus." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Ļauj veidot jaunas datubāzes un tabulas." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 #, fuzzy msgid "Allows creating stored routines." msgstr "Ļauj veidot jaunas tabulas." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Ļauj veidot jaunas tabulas." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Ļauj veidot pagaidu tabulas." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 #, fuzzy msgid "Allows creating new views." msgstr "Ļauj veidot jaunas tabulas." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Ļauj dzēst datus." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Ļauj dzēst datubāzes un tabulas." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Ļauj dzēst tabulas." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Ļauj importēt/eksportēt datus no/uz failiem." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8885,17 +9008,17 @@ msgstr "" "pārlādēšanas." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Ļauj veidot un dzēst indeksus." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Ļauj ievietot un mainīt datus." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Ļauj bloķēt tabulas tekošajai darbībai." @@ -8928,53 +9051,53 @@ msgstr "" "Ierobežo jauno konekciju skaitu, ko lietotājs var atvērt stundas laikā." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Nedarbojas šajā MySQL versijā." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Ļauj prlādēt servera iestādījumus un iztukšot servera kešu." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Dod lietotājam tiesības jautāt, kur ir replikācijas oriģināli / kopijas." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Nepieciešams replikāciju kopijām." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Ļauj lasīt datus." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Dod pieeju pilnam datubāzu sarakstam." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Ļauj apstādināt serveri." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8985,46 +9108,46 @@ msgstr "" "citu lietotāju procesu nogalināšana." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Ļauj veidot un dzēst indeksus." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Ļauj mainīt datus." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Nav privilēģiju." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nav" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Tabulu specifiskās privilēģijas" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Piezīme: MySQL privilēģiju apzīmējumi tiek rakstīti angļu valodā " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administrācija" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globālās privilēģijas" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Datubāžu specifiskās privilēģijas" @@ -9044,7 +9167,7 @@ msgstr "Piekļuves informācija" msgid "Do not change the password" msgstr "Nemainīt paroli" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9095,7 +9218,7 @@ msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." msgid "The privileges were reloaded successfully." msgstr "Privilēģijas tika veiksmīgi pārlādētas." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Mainīt privilēģijas" @@ -9103,34 +9226,34 @@ msgstr "Mainīt privilēģijas" msgid "Revoke" msgstr "Atsaukt" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Jebkurš" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Lietotāju pārskats" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Piešķirt" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Dzēst izvēlētos lietotājus" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Atņemt visas aktīvās privilēģijas lietotājiem, un pēc tam dzēst tos." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9143,51 +9266,51 @@ msgstr "" "lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams " "%spārlādēt privilēģijas%s pirms Jūs turpināt." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Kolonnu specifiskās privilēģijas" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Pievienot privilēģijas uz sekojošo datubāzi" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Aizstājējzīmes _ un % jāaizsargā ar \\ priekšā, lai izmantotu tās burtiski" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Pievienot privilēģijas uz sekojošo tabulu" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Mainīt piekļuves informāciju / Klonēt lietotāju" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Izveidot jaunu lietotāju ar tādām pašām privilēģijām un ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... paturēt veco lietotāju." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... dzēst veco lietotāju no lietotāju tabulas." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... atņemt vecajam lietotājam visas aktīvās privilēģijas, un pēc tam dzēst " "viņu." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9195,48 +9318,48 @@ msgstr "" " ... dzēst veco lietotāju no lietotāju tabulas, un pēc tam pārlādēt " "privilēģijas." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nav" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Lietotāji, kam ir pieja datubāzei "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globāls" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "datubāzei specifisks" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "aizstājējzīme" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy msgid "User has been added." msgstr "Lauks %s tika izdzēsts" @@ -10416,113 +10539,113 @@ msgid_plural "%d minutes" msgstr[0] "lietošanā" msgstr[1] "lietošanā" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL vaicājums" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Konekcijas" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10818,36 +10941,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pārbaudīt SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problēmas ar indeksiem tabulā `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Nosaukums" @@ -10856,64 +10979,64 @@ msgstr "Nosaukums" msgid "Table %1$s has been altered successfully" msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Sava garuma dēļ,
šis lauks var būt nerediģējams " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binārais - netiek labots" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Ievietot kā jaunu rindu" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Atgriezties atpakaļ iepriekšējā lapā" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Ievietot vēl vienu rindu" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Atgriezties šajā lapā" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Lietojiet TAB taustiņu, lai pārvietotos no vērtības līdz vērtībai, vai CTRL" "+bultiņas, lai pārvietotos jebkurā vietā" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10997,49 +11120,45 @@ msgstr "Tabula %s tika izdzēsta" msgid "View dump (schema) of table" msgstr "Apskatīt tabulas dampu (shēmu)" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Pievienot/Dzēst laukus (kolonnas)" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Kopā" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Saglabāt kā failu" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11274,25 +11393,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Izvēlieties laukus (kaut vienu):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Pievienot meklēšanas nosacījumus (\"where\" izteiksmes ķermenis):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Rindu skaits vienā lapā" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Attēlošanas secība:" @@ -12861,9 +12980,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Servera versija" -#~ msgid "Add a new User" -#~ msgstr "Pievienot jaunu lietotāju" - #, fuzzy #~ msgid "Delete the matches for the " #~ msgstr "Dati tabulai" diff --git a/po/mk.po b/po/mk.po index 5aca360245..bf3c899b18 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-05-19 17:04+0200\n" "Last-Translator: \n" "Language-Team: macedonian_cyrillic \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "прикажи ги сите" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Пребарување" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Пребарување" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -137,8 +138,8 @@ msgstr "Коментар на табелата" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -155,8 +156,8 @@ msgstr "Имиња на колони" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Тип" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Коментари" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Не" @@ -232,9 +233,9 @@ msgstr "Не" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -336,7 +337,7 @@ msgstr "Префрли се на копираната база на подато #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -366,15 +367,15 @@ msgstr "Релациона шема" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Табела" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -435,19 +436,19 @@ msgstr "Подредуваање" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Растечки редослед" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Опаѓачки редослед" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Прикажи" @@ -468,8 +469,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "или" @@ -502,7 +503,7 @@ msgstr "Користи табели" msgid "SQL query on database %s:" msgstr "SQL упит на базата на податоци %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Изврши SQL" @@ -542,8 +543,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s погодоци во табелата %s" msgstr[1] "%s погодоци во табелата %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Преглед" @@ -555,7 +556,7 @@ msgid "Delete the matches for the %s table?" msgstr "Приказ на податоци од табелата" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -633,7 +634,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -662,22 +663,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s е основно складиште на овој MySQL сервер." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Обележаното:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "обележи ги сите" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "ниедно" @@ -685,10 +686,10 @@ msgstr "ниедно" msgid "Check tables having overhead" msgstr "табели кои имаат пречекорувања" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -696,17 +697,17 @@ msgid "Export" msgstr "Извоз" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Преглед за печатење" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Испразни" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -754,9 +755,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "База на податоци" @@ -775,15 +776,15 @@ msgstr "Ажурирано" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Статус" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Акција" @@ -840,7 +841,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -875,6 +876,93 @@ msgstr "На веб серверот не му е допуштено да ја msgid "Dump has been saved to file %s." msgstr "Содржината на базата на податоци е сочувана во податотеката %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "Додади ново поле" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Линиите се завршуваат со" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Додади нов корисник" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Додади нов корисник" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "Додади %s полиња" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Додади нов корисник" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -915,7 +1003,7 @@ msgstr "Маркерот е избришан." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -938,7 +1026,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -962,15 +1050,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" командата е оневозможена." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Дали навистина сакате да " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Со ова ја БРИШЕТЕ комплетната база на податоци!" @@ -1040,8 +1128,8 @@ msgstr "Лозинка е празна!" msgid "The passwords aren't the same!" msgstr "Лозинките не се идентични!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1064,8 +1152,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1104,12 +1192,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1197,12 +1285,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1306,7 +1394,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "нема" @@ -1718,8 +1806,8 @@ msgstr "SQL упит" msgid "No rows selected" msgstr "Нема селектирани записи" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Промени" @@ -1731,8 +1819,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Сочувај" @@ -1746,7 +1834,7 @@ msgstr "SQL упит" msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1790,109 +1878,117 @@ msgstr "Додади/избриши колона" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Игнорирај" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Копирај" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Додади %s полиња" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Избери полиња за прикажување" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Генерирање на лозинка" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Генерирај" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Промена на лозинка" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1900,30 +1996,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Базата на податоци не постои" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "нема" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1931,96 +2027,96 @@ msgid "Next" msgstr "Следен" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Вкупно" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарен" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "мај" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2028,78 +2124,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "дек" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вто" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2107,105 +2203,110 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Саб" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вто" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Саб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "во секунда" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2313,13 +2414,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "База на податоци" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Грешка" @@ -2447,7 +2548,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2619,7 +2720,7 @@ msgstr "Табели" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Податоци" @@ -2687,7 +2788,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Сервер" @@ -2753,103 +2854,103 @@ msgstr "SQL упит" msgid "MySQL said: " msgstr "MySQL порака: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Прескокни ги објаснувањата на SQL-от" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "без PHP код" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Освежи" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Прескокни ја проверката на SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Провери SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Складишта" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "бајти" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Нед" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. во %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s денови, %s часови, %s минути и %s секунди" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Рутини" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2857,7 +2958,7 @@ msgctxt "First page" msgid "Begin" msgstr "Почеток" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2866,7 +2967,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Претходна" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2875,7 +2976,7 @@ msgctxt "Next page" msgid "Next" msgstr "Следен" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2883,34 +2984,34 @@ msgctxt "Last page" msgid "End" msgstr "Крај" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Премин на базата "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Структура" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2918,38 +3019,38 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Нов запис" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Операции" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директориум за праќање на веб серверот " -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Директориумот кој го избравте за праќање не е достапен" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3128,7 +3229,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Поништи" @@ -3386,7 +3487,7 @@ msgid "Character set of the file" msgstr "Кодна страна на податотеката:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Формат" @@ -5000,7 +5101,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Лозинка" @@ -5282,8 +5383,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Привилегии" @@ -5302,7 +5403,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5365,7 +5466,7 @@ msgid "Create" msgstr "Креирај" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Нема привилегии" @@ -5712,12 +5813,12 @@ msgstr "Подредување по клуч" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Операции" @@ -5753,8 +5854,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5763,10 +5864,6 @@ msgstr "" msgid "Browser transformation" msgstr "Транформации на веб прелистувачот" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5775,60 +5872,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Копирај" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Записот е избришан" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Прекини" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "во упитот" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Приказ на записи од " -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "вкупно" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Преглед за печатење (целосен текст)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF шема" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Верзија на серверот" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Врската не е пронајдена" @@ -6029,7 +6122,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Подредуваање" @@ -6365,7 +6458,7 @@ msgstr "Достапни MIME-типови" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6570,7 +6663,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6582,50 +6675,50 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерирал" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Базата на податоци не постои" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6676,7 +6769,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6697,6 +6790,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "MySQL 4.0 compatible" @@ -6750,7 +6867,7 @@ msgstr "" msgid "Add prefix" msgstr "Додади ново поле" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Нема измени" @@ -6759,7 +6876,7 @@ msgid "Charset" msgstr "Кодна страна" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Бинарен" @@ -7066,7 +7183,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Назив на корисник" @@ -7084,9 +7201,9 @@ msgid "Variable" msgstr "Променлива" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Вредност" @@ -7112,7 +7229,7 @@ msgstr "Било кој корисник" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Користи текст поле" @@ -7301,7 +7418,7 @@ msgid "Returns" msgstr "Опции на табелата" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Време" @@ -7459,8 +7576,8 @@ msgstr "" msgid "Routine parameters" msgstr "Рутини" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Функција" @@ -7779,8 +7896,8 @@ msgstr "" msgid "Current Server" msgstr "Сервер" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7802,7 +7919,7 @@ msgstr "Кодни страници" msgid "Engines" msgstr "Складишта" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Пребарување низ базата на податоци" @@ -7821,7 +7938,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Пребарување низ базата на податоци" @@ -7848,11 +7965,11 @@ msgstr "Календар" msgid "Columns" msgstr "Имиња на колони" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "дади дозвола на секој корисник да пристапува на овој упит." @@ -7880,7 +7997,7 @@ msgstr "Види само" msgid "Location of the text file" msgstr "Локација на текстуалната податотека" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "директориум за праќање на веб серверот " @@ -8085,23 +8202,29 @@ msgid "+ Add a value" msgstr "Додади нов корисник" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Прегледни ги надворешните вредности" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Оператор" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Пребарување" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Нов запис" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8298,8 +8421,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8327,8 +8450,8 @@ msgstr "Општи особини на релациите" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Корисник" @@ -8468,7 +8591,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Базата на податоци не постои" @@ -8496,7 +8619,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "Направи нова страница" @@ -8863,80 +8986,80 @@ msgstr "Видови на складишта" msgid "View dump (schema) of databases" msgstr "Прикажи содржина (шема) на базите" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Ги вклучува сите привилегии освен GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Дозволува промена на структурата на постоечките табели." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Дозволува промена и бришење на stored рутини." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Дозволува креирање на нови бази на податоци и табели." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Дозволува креирање на stored рутини." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Дозволува креирање на нови табела." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Дозволува креирање на привремени табели..." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозволува креирање, бришење и преименување на корсиничките имиња." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Дозволува креирање на нови погледи." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Дозволува бришење на податоци." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Дозволува бришење на бази на податоци и табели." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Дозволува бришење на табели." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Дозволува извршување на stored рутини." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Дозволува увоз на податоци и нивен извоз во податотеки." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8944,17 +9067,17 @@ msgstr "" "табелата на привилегии." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Дозволува креирање и бришење на клучева." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Дозволува вметнување и замена на података." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Дозволува заклучување на табели на тековните процеси." @@ -8990,54 +9113,54 @@ msgstr "" "еден час." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Нема ефект во оваа верзији на MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозволува повтоно вчитување на подесувањата на серверот и празнење на кешот " "на серверот." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Дава права на кориснику да праша каде се главните/помошни сервери." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Потребно заради помошните сервери за репликација." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Дозволува читање на податоци." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Дава пристап на комплетната листа на базите на податоци." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозволува извршување на SHOW CREATE VIEW упити." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Дозволува гасење на серверот." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9048,47 +9171,47 @@ msgstr "" "глобални променливи или прекин на процеси наостанатите корисници." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Дозволува креирање и бришење на клучева." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Дозволува измена на податоци." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Нема привилегии." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "нема" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Привилегии поврзани со табелата" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "" " Напомена: MySQL имињата на привилегите мора да бидат со латинични букви " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Администрација" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Глобални привилегии" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Привилегии во врска со базата на податоци" @@ -9110,7 +9233,7 @@ msgstr "Податоци за најавувањето" msgid "Do not change the password" msgstr "Немој да ја менуваш лозинката" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9161,7 +9284,7 @@ msgstr "Изабраните корисници успешно се избриш msgid "The privileges were reloaded successfully." msgstr "Привилегиите се успешно вчитани." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Промена на привилегии" @@ -9169,35 +9292,35 @@ msgstr "Промена на привилегии" msgid "Revoke" msgstr "Забрани" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Било кој" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Преглед на корисници" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Овозможи" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Избриши ги селектираните корисници" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Одземи ги сите привилегии на активните корисници а потоа избриши ги." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" "Избриши ги базите на податоци кои се именувани исто како и корисниците." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9211,49 +9334,49 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Привилегии врзани за колоните" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Додади привилегии на следната база" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Пред џокер знаците _ и % треба да стои знакот \\ ако ги користите самостојно" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Додади привилегии на следната табела" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Промени ги информациите за најавувањето / Копирај го корисникот" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Направи нов корисник со исти привилегии и ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... сочувај го стариот." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... избриши ги старите од табелата на корисници." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... прво одземи ги сите привилегии на корисниците а потоа избриши ги." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9261,48 +9384,48 @@ msgstr "" " ... избриши го стариот корисник од табелата на корисници а потоа повторно " "вчитај ги привилегиите." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "нема" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегии за базата на податоци "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Корисници кои имаат пристап "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "глобално" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "Специфично за базата на податоци" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "џокер" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10483,113 +10606,113 @@ msgid_plural "%d minutes" msgstr[0] "се користи" msgstr[1] "се користи" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL упит" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Конекции" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10885,36 +11008,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирање на табелата `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Назив" @@ -10923,7 +11046,7 @@ msgstr "Назив" msgid "Table %1$s has been altered successfully" msgstr "Изабраните корисници успешно се избришани." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" @@ -10931,58 +11054,58 @@ msgstr "" "Поради големина на полето
можеби нема да може да ја менувате неговата " "содржина" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Бинарен - не менувај" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Внеси како нов запис" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Назад на претходната страница" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Додади уште еден нов запис" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Врати се на оваа страница" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Ажурирање на следниот запис" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -11068,49 +11191,45 @@ msgstr "Табелата %s е избришана" msgid "View dump (schema) of table" msgstr "Прикажи содржина (шема) на табелите" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Додади/избриши колона" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Вкупно" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Сочувај како податотека" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11343,25 +11462,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Направи \"упит по пример\" (џокер знак: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Избери полиња (најмалку едно)" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Додади услови за пребарување (делот \"WHERE\" од упитот):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Број на записи на страница" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Редослед на приказ:" @@ -12940,9 +13059,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Верзија на серверот" -#~ msgid "Add a new User" -#~ msgstr "Додади нов корисник" - #~ msgid "Delete the matches for the " #~ msgstr "Приказ на податоци од табелата" diff --git a/po/ml.po b/po/ml.po index 9bc9bcbd16..0e3648d63b 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-02-10 14:03+0100\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malayalam \n" @@ -15,13 +15,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.7.0\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -36,19 +36,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -66,14 +67,14 @@ msgstr "" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -135,8 +136,8 @@ msgstr "" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -151,8 +152,8 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -163,7 +164,7 @@ msgstr "" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -206,10 +207,10 @@ msgstr "" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "" @@ -228,9 +229,9 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -331,7 +332,7 @@ msgstr "" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -354,15 +355,15 @@ msgstr "" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -421,19 +422,19 @@ msgstr "" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "" @@ -454,8 +455,8 @@ msgid "Del" msgstr "" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "" @@ -484,7 +485,7 @@ msgstr "" msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "" @@ -523,8 +524,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "" @@ -535,7 +536,7 @@ msgid "Delete the matches for the %s table?" msgstr "" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -604,7 +605,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -632,22 +633,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "" @@ -655,10 +656,10 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -666,17 +667,17 @@ msgid "Export" msgstr "" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -724,9 +725,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "" @@ -745,15 +746,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "" @@ -806,7 +807,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -839,6 +840,82 @@ msgstr "" msgid "Dump has been saved to file %s." msgstr "" +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +msgid "Add a point" +msgstr "" + +#: gis_data_editor.php:218 js/messages.php:287 +msgid "Linestring" +msgstr "" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +msgid "Add a linestring" +msgstr "" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +msgid "Add an inner ring" +msgstr "" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +msgid "Add a polygon" +msgstr "" + +#: gis_data_editor.php:304 +msgid "Add geometry" +msgstr "" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -879,7 +956,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -902,7 +979,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -926,15 +1003,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -996,8 +1073,8 @@ msgstr "" msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "" @@ -1015,8 +1092,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1052,12 +1129,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "" @@ -1136,12 +1213,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "" @@ -1230,7 +1307,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "" @@ -1589,8 +1666,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "" @@ -1602,8 +1679,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "" @@ -1615,7 +1692,7 @@ msgstr "" msgid "Show search criteria" msgstr "" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 msgid "Zoom Search" msgstr "" @@ -1655,99 +1732,107 @@ msgstr "" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1755,258 +1840,263 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "" -#: js/messages.php:344 +#: js/messages.php:356 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:349 +#: js/messages.php:361 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2110,13 +2200,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "" @@ -2239,7 +2329,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2403,7 +2493,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "" @@ -2467,7 +2557,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "" @@ -2532,152 +2622,152 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2685,37 +2775,37 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -2881,7 +2971,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "" @@ -3128,7 +3218,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "" @@ -4649,7 +4739,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "" @@ -4926,8 +5016,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "" @@ -4946,7 +5036,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5003,7 +5093,7 @@ msgid "Create" msgstr "" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -5302,12 +5392,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "" @@ -5335,8 +5425,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5345,10 +5435,6 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5357,57 +5443,53 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "" @@ -5586,7 +5668,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "" @@ -5891,7 +5973,7 @@ msgstr "" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "" @@ -6083,7 +6165,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6095,48 +6177,48 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6185,7 +6267,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6206,6 +6288,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6251,7 +6357,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "" @@ -6260,7 +6366,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "" @@ -6563,7 +6669,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "" @@ -6581,9 +6687,9 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "" @@ -6609,7 +6715,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "" @@ -6781,7 +6887,7 @@ msgid "Returns" msgstr "" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "" @@ -6918,8 +7024,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "" @@ -7200,8 +7306,8 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7223,7 +7329,7 @@ msgstr "" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "" @@ -7241,7 +7347,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "" @@ -7264,11 +7370,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7296,7 +7402,7 @@ msgstr "" msgid "Location of the text file" msgstr "" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "" @@ -7463,21 +7569,25 @@ msgid "+ Add a value" msgstr "" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 msgid "Table Search" msgstr "" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +msgid "Edit/Insert" +msgstr "" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7597,8 +7707,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -7622,8 +7732,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "" @@ -7743,7 +7853,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "" @@ -7768,7 +7878,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "" @@ -8099,96 +8209,96 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8215,52 +8325,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8268,43 +8378,43 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "" @@ -8324,7 +8434,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "" @@ -8373,7 +8483,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "" @@ -8381,34 +8491,34 @@ msgstr "" msgid "Revoke" msgstr "" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8417,93 +8527,93 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "" @@ -9636,110 +9746,110 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 msgid "Executed queries" msgstr "" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10029,34 +10139,34 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "" @@ -10065,60 +10175,60 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10189,43 +10299,39 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "" @@ -10446,23 +10552,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "" diff --git a/po/mn.po b/po/mn.po index a5a2a0a151..17e5b832df 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: mongolian \n" @@ -13,13 +13,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Бүгдийг харах" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -36,19 +36,20 @@ msgstr "" "Зорилтот хөтчийн цонх шинэчлэгдсэнгүй. Магадгүй та эх цонхыг хаасан эсвэл " "таны хөтөч хамгаалалтын тохиргооны улмаас шинэчлэлтийг хориглогдсон" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Хайх" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -66,14 +67,14 @@ msgstr "Хайх" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -135,8 +136,8 @@ msgstr "Хүснэгтийн тайлбар" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -153,8 +154,8 @@ msgstr "Баганын нэрс" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -165,7 +166,7 @@ msgstr "Төрөл" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -208,10 +209,10 @@ msgstr "Тайлбар" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Үгүй" @@ -230,9 +231,9 @@ msgstr "Үгүй" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -337,7 +338,7 @@ msgstr "Хуулагдсан ӨС руу шилжих" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -367,15 +368,15 @@ msgstr "Хамааралтай схем" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Хүснэгт " #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -436,19 +437,19 @@ msgstr "Эрэмбэлэх" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Өсөхөөр" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Буурахаар" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Харах" @@ -469,8 +470,8 @@ msgid "Del" msgstr "Устгах" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Эсвэл" @@ -503,7 +504,7 @@ msgstr "Хүснэгт хэрэглэх" msgid "SQL query on database %s:" msgstr "ӨС %s дахь SQL-асуулт:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Асуултыг илгээх" @@ -543,8 +544,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s олдоц(ууд) хүснэгт %s-д" msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Хөтлөх" @@ -556,7 +557,7 @@ msgid "Delete the matches for the %s table?" msgstr "Хүснэгтийн өгөгдлийг устгах" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -634,7 +635,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -662,22 +663,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Сонгогдсонтой:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Бүгдийг чагтлах" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Бүх чагтыг болих" @@ -685,10 +686,10 @@ msgstr "Бүх чагтыг болих" msgid "Check tables having overhead" msgstr "Дээдхийг шалгах" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -696,17 +697,17 @@ msgid "Export" msgstr "Гаргах" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Хэвлэхээр харах" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Хоосон" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -758,9 +759,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "ӨС" @@ -779,15 +780,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Статус" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Үйлдэл" @@ -840,7 +841,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -874,6 +875,92 @@ msgstr "Вэб-сервэр файл %s-г хадгалахад зөвшөөрө msgid "Dump has been saved to file %s." msgstr "Асгалт %s файлд хадгалагдсан." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "Шинэ талбар нэмэх" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Шугамыг төгсгөгч" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add constraints" +msgid "Add a linestring" +msgstr "Тогтмол нэмэх" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +msgid "Add an inner ring" +msgstr "" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "%s талбар(ууд) нэмэх" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new User" +msgid "Add geometry" +msgstr "Шинэ хэрэглэгч нэмэх" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -914,7 +1001,7 @@ msgstr "Тэмдэглэгээ устгагдсан." msgid "Showing bookmark" msgstr "Тэмдэглэл харуулах" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" @@ -937,7 +1024,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -961,15 +1048,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"ӨС устгах\" нь хаалттай." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Та үнэхээр " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Дүүрэн өгөгдлийн сан УСТГАХ тухай?" @@ -1039,8 +1126,8 @@ msgstr "Нууц үг хоосон байна!" msgid "The passwords aren't the same!" msgstr "Нууц їгнїїд ялгаатай байна!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1064,8 +1151,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1105,12 +1192,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1203,12 +1290,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "кБ" @@ -1313,7 +1400,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Байхгүй" @@ -1731,8 +1818,8 @@ msgstr "SQL асуудал харуулах" msgid "No rows selected" msgstr "Сонгогдсон мөргүй" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Солих" @@ -1744,8 +1831,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Хадгалах" @@ -1761,7 +1848,7 @@ msgstr "асуултад" msgid "Show search criteria" msgstr "SQL асуудал харуулах" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1805,109 +1892,117 @@ msgstr "Багана нэмэх/устгах" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Үл тоох" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Хуулах" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "%s талбар(ууд) нэмэх" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Хамаарагдсан түлхүүр сонгох" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Гадаад түлхүүр сонгох" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Үндсэн түлхүүр эсвэл орь ганц түлхүүр сонгон уу" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Харуулах талбарыг соль" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Нууц үг бий болгох" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Бий болгох" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Нууц үг солих" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Да" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1915,31 +2010,31 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "ӨС байхгүй" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "Байхгүй" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Өмнөх" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1947,96 +2042,96 @@ msgid "Next" msgstr "Цааш" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Нийт" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Хоёртын " -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "3-р" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "4-р" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "5-р" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "6-р" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "7-р" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "8-р" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "10р" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2044,78 +2139,78 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "12р" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ня" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Да" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Мя" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ба" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2123,105 +2218,110 @@ msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Бя" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ня" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Да" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Мя" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Лх" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пү" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ба" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Бя" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "хэрэглэгдэж байна" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундэд" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Үсгийн хэмжээ" @@ -2325,13 +2425,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Өгөгдлийн сангууд" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Алдаа" @@ -2464,7 +2564,7 @@ msgstr "Сэдэв %s олдсонгүй!" msgid "Theme path not found for theme %s!" msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2634,7 +2734,7 @@ msgstr "Хүснэгт" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Өгөгдөл" @@ -2707,7 +2807,7 @@ msgstr "%1$s сервэрийн хост буруу. Өөрийн тохирго #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Сервэр" @@ -2772,103 +2872,103 @@ msgstr "SQL-асуулт" msgid "MySQL said: " msgstr "MySQL хэлэх нь: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL тайлбар" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "SQL тайлбарлахыг орхих" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP-кодгүй" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP-код үүсгэх" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Да.дуудах" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL шалгалтыг алгасах" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL-ийг батлах" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Хөдөлгүүрүүд" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Байт" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Ня" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y оны %B сарын %d., %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s өдөр, %s цаг, %s минут, %s секунд" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "Шинэ талбар нэмэх" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2876,7 +2976,7 @@ msgctxt "First page" msgid "Begin" msgstr "Эхлэл" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2885,7 +2985,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Өмнөх" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2894,7 +2994,7 @@ msgctxt "Next page" msgid "Next" msgstr "Цааш" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2902,34 +3002,34 @@ msgctxt "Last page" msgid "End" msgstr "Төгс" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr ""%s" өгөгдлийн сан руу үсрэх." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Бүтэц" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2937,38 +3037,38 @@ msgstr "Бүтэц" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Оруулах" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Үйлдлүүд" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3146,7 +3246,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Да.эхлэх" @@ -3403,7 +3503,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Тогтнол" @@ -4998,7 +5098,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Нууц үг" @@ -5281,8 +5381,8 @@ msgid "Designer" msgstr "Дизайнч" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Онцгой эрхүүд" @@ -5301,7 +5401,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5362,7 +5462,7 @@ msgid "Create" msgstr "Үүсгэх" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Онцгой эрхгүй" @@ -5725,12 +5825,12 @@ msgstr "Түлхүүрээр эрэмбэлэх" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Сонголтууд" @@ -5764,8 +5864,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Нуух" @@ -5774,10 +5874,6 @@ msgstr "Нуух" msgid "Browser transformation" msgstr "Хөтчийн өөрчлөл" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5786,61 +5882,57 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Хуулах" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Мөр устгагдсан" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Алах" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "асуултад" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Мөрүүдийг харуулж байна " -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "Нийт" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Асуулт нь %01.4f сек авлаа" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схем харуулах" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Үүсгэх" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Холбоос олдсонгүй" @@ -6036,7 +6128,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "" @@ -6371,7 +6463,7 @@ msgstr "Идэвхтэй MIME-төрлүүд" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Хост" @@ -6574,7 +6666,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Шинэ phpMyAdmin цонх нээх" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6586,49 +6678,49 @@ msgstr "SQL-үр дүн" msgid "Generated by" msgstr "Үүсгэгч" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Зөвхөн бүтэц" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6680,7 +6772,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Хүснэгтийн нэр" @@ -6701,6 +6793,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6754,7 +6870,7 @@ msgstr "" msgid "Add prefix" msgstr "Шинэ талбар нэмэх" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Солигдохгүй" @@ -6763,7 +6879,7 @@ msgid "Charset" msgstr "Кодлол" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Хоёртын " @@ -7069,7 +7185,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Хэрэглэгчийн нэр" @@ -7087,9 +7203,9 @@ msgid "Variable" msgstr "Хувьсагч" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Утга" @@ -7115,7 +7231,7 @@ msgstr "Дурын хэрэглэгч" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Бичвэр талбар хэрэглэх" @@ -7306,7 +7422,7 @@ msgid "Returns" msgstr "Хүснэгтийн сонголтууд" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Цаг" @@ -7461,8 +7577,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Функц" @@ -7789,8 +7905,8 @@ msgstr "Үл мэдэгдэх хэл: %1$s." msgid "Current Server" msgstr "Сервэр" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7812,7 +7928,7 @@ msgstr "Кодлолууд" msgid "Engines" msgstr "Хөдөлгүүрүүд" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "" @@ -7830,7 +7946,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "" @@ -7855,11 +7971,11 @@ msgstr "" msgid "Columns" msgstr "Баганын нэрс" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" @@ -7887,7 +8003,7 @@ msgstr "Зөвхөн харах" msgid "Location of the text file" msgstr "Бичвэрфайлын байрлал" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "web-сервэр түлхэх хавтас" @@ -8092,23 +8208,29 @@ msgid "+ Add a value" msgstr "Шинэ хэрэглэгч нэмэх" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Browse foreign values" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Оператор" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Хайх" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Оруулах" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8293,8 +8415,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "ZIP архив дотор файл байхгүй байна!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "ZIP архивт байгаа алдаа:" @@ -8322,8 +8444,8 @@ msgstr "Ерөнхий хамаатай онцлог" msgid "Protocol version" msgstr "Протоколын хувилбар" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Хэрэглэгч" @@ -8461,7 +8583,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "ӨС байхгүй" @@ -8490,7 +8612,7 @@ msgstr "Харуулах/Нуух зүүн цэс" msgid "Save position" msgstr "Байрлал хадгалах" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Хүснэгт үүсгэх" @@ -8854,80 +8976,80 @@ msgstr "Агуулах хөдөлгүүрүүд" msgid "View dump (schema) of databases" msgstr "ӨС-ийн схем харах" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Байгаа хүснэгтийн бүтцийг өөрчлөхийг зөвшөөрөх." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Хадгалагдсан заншил устгах, өөрчлөхийг зөвшөөрөх." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Шинэ өгөгдлийн сан, хүснэгт үүсгэхийг зөвшөөрөх." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Хадгалагдсан заншил үүсгэхийг зөвшөөрөх." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Шинэ хүснэгт үүсгэхийг зөвшөөрөх." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Завсрын хүснэгт үүсгэхийг зөвшөөрөх." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Хэрэглэгчийн эрхийг үүсгэх, устгах, да.нэрлэхийг зөвшөөрөх." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Шинэ харц үүсгэхийг зөвшөөрөх." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Өгөгдөл устгахыг зөвшөөрөх." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "ӨС, хүснэгт устгахыг зөвшөөрөх " -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Хүснэгт устгахыг зөвшөөрөх." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Өгөгдөл оруулах, файл руу гаргахыг зөвшөөрөх." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8935,17 +9057,17 @@ msgstr "" "зөвшөөрөх." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Индекс үүсгэх, устгахыг зөвшөөрөх." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Тухайн процесст хүснэгт түгжихийг зөвшөөрөх." @@ -8974,52 +9096,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Хэрэглэгчдэд байх зэрэг холболтын хязгаарлах тоо." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "MySQL-ын энэ хувилбарт үйлчлэлгүй." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Сервэрийн тохиргоог дахин дуудахыг зөвшөөрөх." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Өгөгдөл уншихыг зөвшөөрөх." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Өгөгдлийн сангийн бүрэн жагсаалт руу хандахыг өгөх." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW асуултыг хийхийг зөвшөөрөх." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Сервэрийг унтраахыг зөвшөөрөх." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9029,45 +9151,45 @@ msgstr "" "процессыг үгүй хийх эсвэл глобал утгыг өөрчлөх шаардлагатай болно." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Өгөгдөл солихыг зөвшөөрөх." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Онцгой эрхгүй." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Байхгүй" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Хүснэгтийн тусгай онцгой эрхүүд" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Тэмдэглэл: MySQL онцгой эрхийн нэр нь англиар илэрхийлэгдсэн " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Зохион байгуулалт" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Глобал онцгой эрх" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Онцгой эрх, өгөгдлийн сангийн эрх" @@ -9087,7 +9209,7 @@ msgstr "Нэвтрэх мэдээлэл" msgid "Do not change the password" msgstr "Нууц үгийг солихгүй" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9138,7 +9260,7 @@ msgstr "Сонгогдсон хэрэглэгч устгагдлаа." msgid "The privileges were reloaded successfully." msgstr "Онцгой эрхүүд дахин дуудагдлаа." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Онцгой эрхүүдийг засах" @@ -9146,36 +9268,36 @@ msgstr "Онцгой эрхүүдийг засах" msgid "Revoke" msgstr "Хүчингүй" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Дурын" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "User overview" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Хандив" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Сонгогдсон хэрэглэгчдийг хасах" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Устгахын төгсгөлд нь хэрэглэгчдээс идэвхтэй бүх онцгой эрхийг хүчингүй " "болгох." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9188,48 +9310,48 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Онцгой эрх, баганын эрх" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Дараах хүснэгтэд онцгой эрх нэмэх" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Нэвтрэх мэдээллийг солих/ Хэрэглэгч хуулах" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Адил онцгой эрхтэй хэрэглэгч үүсгэх ба ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... хуучныг үлдээх." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... хэрэглэгчийн хүснэгтүүдээс устгах." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... хуучнаас бүх онцгой эрхийг хүчингүй болгоод дараа нь устга." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9237,48 +9359,48 @@ msgstr "" " ... хэрэглэгчийн хүснэгтүүдээс нэгийг устгаад дараа нь онцгой эрхийг дахин " "дууд." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Хэрэглэгчийн өгөгдлийн сан" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Байхгүй" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Хэрэглэгчдийн хандсан нь "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "Өгөгдлийн сангийн эрх" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "загвар" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10504,114 +10626,114 @@ msgid_plural "%d minutes" msgstr[0] "хэрэглэгдэж байна" msgstr[1] "хэрэглэгдэж байна" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Execute bookmarked query" msgid "Executed queries" msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "ХИ. давхацсан холболтууд" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10903,36 +11025,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "PHP кодоор харуулах" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL-ийг батлах" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Хүснэгт `%s`-ийн индекс асуудалтай" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Хаяг" @@ -10941,64 +11063,64 @@ msgstr "Хаяг" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Яагаад гэвэл урт нь их,
энэ талбар засагдахгүй " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Хоёртын өгөгдөл - засагдахгүй " -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Шинэ мөр оруулаад" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "ба тэгээд" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Буцах" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Өөр шинэ мөр оруулах" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Энэ хуудас руу буцах" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Дараагийн мөрийг засах" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -11083,49 +11205,45 @@ msgstr "" msgid "View dump (schema) of table" msgstr "Хүснэгтийн схем харах" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Багана нэмэх/устгах" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Нийт" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Илгээх" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11357,25 +11475,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Талбар сонгох (ядаж нэгийг):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Хайлтын нөхцөл нэмэх(\"where\" хэсгийн бие):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Хуудас дахь мөрийн тоо" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Харуулах эрэмбэ:" diff --git a/po/ms.po b/po/ms.po index 3087fef415..992dd3c1de 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-03-12 09:17+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: malay \n" @@ -13,13 +13,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.5.3\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Papar semua" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -34,19 +34,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Cari" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -64,14 +65,14 @@ msgstr "Cari" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -136,8 +137,8 @@ msgstr "Komen jadual" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -154,8 +155,8 @@ msgstr "Nama Kolum" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -166,7 +167,7 @@ msgstr "Jenis" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -209,10 +210,10 @@ msgstr "Komen" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Tidak" @@ -231,9 +232,9 @@ msgstr "Tidak" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -339,7 +340,7 @@ msgstr "Tukar kepada pengkalan data yang di salin" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -369,15 +370,15 @@ msgstr "Skema Hubungan" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Jadual" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -438,19 +439,19 @@ msgstr "Isih" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Menaik" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Menurun" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Papar" @@ -471,8 +472,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Atau" @@ -505,7 +506,7 @@ msgstr "Guna Jadual" msgid "SQL query on database %s:" msgstr "SQL- kueri pada pangkalan data %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Hantar Kueri" @@ -545,8 +546,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s padanan di dalam jadual %s" msgstr[1] "%s padanan di dalam jadual %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Lungsur" @@ -558,7 +559,7 @@ msgid "Delete the matches for the %s table?" msgstr "Melonggok data bagi jadual" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -636,7 +637,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -664,22 +665,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Dengan pilihan:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Tanda Semua" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Nyahtanda Semua" @@ -687,10 +688,10 @@ msgstr "Nyahtanda Semua" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -698,17 +699,17 @@ msgid "Export" msgstr "Eksport" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Paparan Cetak" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Kosong" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -760,9 +761,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Pangkalan Data" @@ -782,15 +783,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Aksi" @@ -847,7 +848,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -880,6 +881,91 @@ msgstr "" msgid "Dump has been saved to file %s." msgstr "" +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +msgid "Add a point" +msgstr "Tambah medan baru" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Baris ditamatkan oleh" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Tambah Pengguna Baru" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Tambah Pengguna Baru" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +msgid "Add a polygon" +msgstr "Tambah medan baru" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Tambah Pengguna Baru" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -920,7 +1006,7 @@ msgstr "TandaBuku telah dipadam." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -943,7 +1029,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -969,15 +1055,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Adakah anda ingin " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1041,8 +1127,8 @@ msgstr "Katalaluan adalah kosong!" msgid "The passwords aren't the same!" msgstr "Katalaluan tidak sama!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1063,8 +1149,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1103,12 +1189,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1195,12 +1281,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1299,7 +1385,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Tiada" @@ -1705,8 +1791,8 @@ msgstr "kueri-SQL" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Ubah" @@ -1718,8 +1804,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Simpan" @@ -1733,7 +1819,7 @@ msgstr "kueri-SQL" msgid "Show search criteria" msgstr "kueri-SQL" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1777,109 +1863,117 @@ msgstr "Tambah/Padam Kolum Medan" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Abai" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy msgid "Add columns" msgstr "Tambah medan baru" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Pilih Medan untuk dipapar" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ubah Katalaluan" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 #, fuzzy msgid "Generate" msgstr "Dijana oleh" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ubah Katalaluan" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Isn" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1887,30 +1981,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Tiada pangkalan data" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "Tiada" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Terdahulu" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1918,96 +2012,96 @@ msgid "Next" msgstr "Berikut" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mac" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mei" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ogos" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2015,78 +2109,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dis" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Aha" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Isn" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sel" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2094,105 +2188,110 @@ msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Aha" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Isn" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sel" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rab" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kha" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekod" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2297,13 +2396,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "pangkalan data" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Ralat" @@ -2427,7 +2526,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2592,7 +2691,7 @@ msgstr "Jadual-jadual" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Data" @@ -2659,7 +2758,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Pelayan" @@ -2724,99 +2823,99 @@ msgstr "kueri-SQL" msgid "MySQL said: " msgstr "MySQL berkata: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Terangkan Kod SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Tanpa Kod PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Cipta Kod PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Melangkau Pengesahan SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Mengesahkan SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Aha" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s hari, %s jam, %s minit dan %s saat" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2824,7 +2923,7 @@ msgctxt "First page" msgid "Begin" msgstr "Mula" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2833,7 +2932,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Terdahulu" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2842,7 +2941,7 @@ msgctxt "Next page" msgid "Next" msgstr "Berikut" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2850,34 +2949,34 @@ msgctxt "Last page" msgid "End" msgstr "Tamat" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktur" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2885,38 +2984,38 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Selit" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operasi" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direktori muatnaik pelayan-web" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3095,7 +3194,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Ulangtetap" @@ -3350,7 +3449,7 @@ msgid "Character set of the file" msgstr "Fail bagi set Aksara:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -4938,7 +5037,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Katalaluan" @@ -5221,8 +5320,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilej" @@ -5241,7 +5340,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5300,7 +5399,7 @@ msgid "Create" msgstr "Cipta" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Tiada Privilej" @@ -5643,12 +5742,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Operasi" @@ -5684,8 +5783,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5694,10 +5793,6 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5706,60 +5801,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Baris telah dipadam" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Bunuh" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "pada kueri" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Papar baris" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "jumlah" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Papar Skema PDF" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Versi Pelayan" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Pautan tidak dijumpai" @@ -5941,7 +6032,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Isih" @@ -6265,7 +6356,7 @@ msgstr "Paparkan Ciri-ciri" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Hos" @@ -6464,7 +6555,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6476,50 +6567,50 @@ msgstr "Hasil SQL" msgid "Generated by" msgstr "Dijana oleh" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Tiada pangkalan data" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Struktur sahaja" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6570,7 +6661,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6591,6 +6682,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6640,7 +6755,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Tiada perubahan" @@ -6649,7 +6764,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binari" @@ -6953,7 +7068,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Kata Pengenalan" @@ -6971,9 +7086,9 @@ msgid "Variable" msgstr "Pembolehubah" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Nilai" @@ -7000,7 +7115,7 @@ msgstr "Sebarang pengguna" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "" @@ -7187,7 +7302,7 @@ msgid "Returns" msgstr "Statistik pangkalan data" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Masa" @@ -7335,8 +7450,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Fungsi" @@ -7648,8 +7763,8 @@ msgstr "" msgid "Current Server" msgstr "Pelayan" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7672,7 +7787,7 @@ msgstr "" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Cari di pangkalan data" @@ -7691,7 +7806,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Cari di pangkalan data" @@ -7717,11 +7832,11 @@ msgstr "" msgid "Columns" msgstr "Nama Kolum" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "andabuku kueri-SQL ini" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7749,7 +7864,7 @@ msgstr "Paparan sahaja" msgid "Location of the text file" msgstr "Lokasi bagi fail teks" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "direktori muatnaik pelayan-web" @@ -7950,24 +8065,30 @@ msgid "+ Add a value" msgstr "Tambah Pengguna Baru" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 #, fuzzy msgid "Operator" msgstr "Operasi" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Cari" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Selit" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8091,8 +8212,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8120,8 +8241,8 @@ msgstr "Ciri-ciri hubungan am" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Pengguna" @@ -8255,7 +8376,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Tiada pangkalan data" @@ -8283,7 +8404,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "Cipta Halaman baru" @@ -8643,96 +8764,96 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Lihat longgokan (skema) pangkalan data" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8762,52 +8883,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8815,47 +8936,47 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 #, fuzzy msgid "No privileges." msgstr "Tiada Privilej" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Tiada" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: Nama privilej MySQL adalah dinyatakan dalam B.Inggeris " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 #, fuzzy msgid "Global privileges" msgstr "Tiada Privilej" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "" @@ -8876,7 +8997,7 @@ msgstr "Informasi MasaJana" msgid "Do not change the password" msgstr "Jangan tukar katalaluan" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -8927,7 +9048,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Ubah Privilej" @@ -8935,35 +9056,35 @@ msgstr "Ubah Privilej" msgid "Revoke" msgstr "TarikBalik" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Sebarang" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 #, fuzzy msgid "Grant" msgstr "Cetak" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8972,95 +9093,95 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Tiada" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy msgid "User has been added." msgstr "Medan %s telah digugurkan" @@ -10234,113 +10355,113 @@ msgid_plural "%d minutes" msgstr[0] "sedang digunakan" msgstr[1] "sedang digunakan" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "kueri-SQL" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Hubungan" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10636,36 +10757,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Mengesahkan SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Label" @@ -10674,63 +10795,63 @@ msgstr "Label" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Kerana kepanjangannya,
medan ini tidak boleh diedit " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binari - jgn diubah" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Selitkan baris baru" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Kembali ke muka sebelumnya" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Tambah baris yang baru" -#: tbl_change.php:1005 +#: tbl_change.php:1045 #, fuzzy msgid "Go back to this page" msgstr "Kembali ke muka sebelumnya" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10813,49 +10934,45 @@ msgstr "Jadual %s telah digugurkan" msgid "View dump (schema) of table" msgstr "Lihat longgokan (skema) pangkalan data" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Tambah/Padam Kolum Medan" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Jumlah" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Simpan sebagai fail" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11086,25 +11203,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Pilih medan (sekurang-kurangnya satu):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Tambah kriteria carian (badan bagi klausa \"where\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Bilangan baris per halaman" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Turutan paparan:" @@ -12627,9 +12744,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Versi Pelayan" -#~ msgid "Add a new User" -#~ msgstr "Tambah Pengguna Baru" - #~ msgid "Delete the matches for the " #~ msgstr "Melonggok data bagi jadual" diff --git a/po/nb.po b/po/nb.po index beb92a58b3..69aa87cc25 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-03-07 11:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: norwegian \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Vis alle" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ 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:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Søk" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "Søk" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -138,8 +139,8 @@ msgstr "Tabellkommentarer" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -154,8 +155,8 @@ msgstr "Kolonne" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -166,7 +167,7 @@ msgstr "Type" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -209,10 +210,10 @@ msgstr "Kommentarer" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Nei" @@ -231,9 +232,9 @@ msgstr "Nei" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -334,7 +335,7 @@ msgstr "Bytt til kopiert database" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -358,15 +359,15 @@ msgstr "Rediger eller eksporter relasjonsskjema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabell" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -426,19 +427,19 @@ msgstr "Sorter" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Stigende" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Synkende" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Vis" @@ -459,8 +460,8 @@ msgid "Del" msgstr "Slett" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Eller" @@ -489,7 +490,7 @@ msgstr "Bruk tabeller" msgid "SQL query on database %s:" msgstr "SQL-spørring i database %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Kjør spørring" @@ -528,8 +529,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s treff i tabell %s" msgstr[1] "%s treff i tabell %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Se på" @@ -540,7 +541,7 @@ msgid "Delete the matches for the %s table?" msgstr "Slett treffene for %s tabellen?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -613,7 +614,7 @@ msgstr "Overvåkning er aktiv." msgid "Tracking is not active." msgstr "Overvåkning er ikke aktiv." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -641,22 +642,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s er standard lagringsmotor for denne MySQL tjeneren." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Med avkrysset:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Merk alle" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Fjern merking" @@ -664,10 +665,10 @@ msgstr "Fjern merking" msgid "Check tables having overhead" msgstr "Merk overheng" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -675,17 +676,17 @@ msgid "Export" msgstr "Eksporter" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Tøm" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -739,9 +740,9 @@ msgstr "Overvåkede tabeller" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Database" @@ -760,15 +761,15 @@ msgstr "Oppdatert" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Handling" @@ -821,7 +822,7 @@ msgstr "Skriv inn hver verdi i separate felter." msgid "+ Restart insertion and add a new value" msgstr "+ Start innsettingen på ny og legg til en ny verdi" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Utdata" @@ -857,6 +858,95 @@ msgstr "Webserveren har ikke tillatelse til å lagre fila %s." msgid "Dump has been saved to file %s." msgstr "Dump har blitt lagret til fila %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Verdier for kolonnen \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add a point" +msgstr "Utfør indeks(er)" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Linker avsluttet med" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Legg til en ny bruker" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Legg til en ny bruker" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Legg til kolonne(r)" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "Legg til en ny tjener" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -905,7 +995,7 @@ msgstr "Bokmerket har blitt slettet." msgid "Showing bookmark" msgstr "Vis bokmerke" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Bokmerke %s opprettet" @@ -933,7 +1023,7 @@ msgstr "" "øker php tidsgrensen." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -957,15 +1047,15 @@ msgstr "Klikk for å velge" msgid "Click to unselect" msgstr "Klikk for å fjerne valg" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\"-uttrykk er avslått." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Vil du virkelig " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Du er i ferd med å SLETTE en komplett database!" @@ -1034,8 +1124,8 @@ msgstr "Passordet er blankt!" msgid "The passwords aren't the same!" msgstr "Passordene er ikke like!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1055,8 +1145,8 @@ msgid "Close" msgstr "Lukk" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1096,12 +1186,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1192,12 +1282,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1302,7 +1392,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Ingen" @@ -1706,8 +1796,8 @@ msgstr "Vis spørringsboks" msgid "No rows selected" msgstr "Ingen rader valgt" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Endre" @@ -1721,8 +1811,8 @@ msgstr "Maks kjøretid" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Lagre" @@ -1734,7 +1824,7 @@ msgstr "Skjul søkekriterier" msgid "Show search criteria" msgstr "Vis søkekriterier" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1778,105 +1868,113 @@ msgstr "Legg til/Slett kolonner" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "Legg til kolonne(r)" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Velg referert nøkkel" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Velg fremmednøkkel" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Velg primærnøkkelen eller en unik nøkkel" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Velg kolonne for visning" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Legg til valg for kolonne" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Klikk for å velge" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Gå til visning" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Generer passord" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generer" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Endre passord" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Mer" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1886,29 +1984,29 @@ msgstr "" "versjon er %s, utgitt den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", siste tilgjengelige versjon:" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Gå til database" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Utført" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1916,149 +2014,149 @@ msgid "Next" msgstr "Neste" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "I dag" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Januar" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Februar" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Mars" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "April" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mai" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Juni" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Juli" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "August" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "September" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Oktober" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "November" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Des" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Søndag" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Mandag" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Tirsdag" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Fredag" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2066,87 +2164,92 @@ msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Lør" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Søndag" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Man" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Tir" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Tor" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Uke" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Time" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minutt" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Sekund" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Fontstørrelse" @@ -2259,13 +2362,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Databaser" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Feil" @@ -2399,7 +2502,7 @@ msgstr "Stilen %s ble ikke funnet!" msgid "Theme path not found for theme %s!" msgstr "Stilsti ble ikke funnet for stilen %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2574,7 +2677,7 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Data" @@ -2642,7 +2745,7 @@ msgstr "Ugyldig tjenernavn for tjener %1$s. Kontroller din konfigurasjon." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Tjener" @@ -2707,101 +2810,101 @@ msgstr "SQL-spørring" msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Kunne ikke koble til SQL validerer!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Forklar SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Ikke forklar SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "uten PHP kode" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Lag PHP kode" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Oppdater" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Ikke teste SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Test SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Inline redigering av denne spørringa" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profilering" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Søn" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B, %Y %H:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dager, %s timer, %s minutter og %s sekunder" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutiner" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2809,7 +2912,7 @@ msgctxt "First page" msgid "Begin" msgstr "Start" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2818,7 +2921,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Forrige" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2827,7 +2930,7 @@ msgctxt "Next page" msgid "Next" msgstr "Neste" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2835,36 +2938,36 @@ msgctxt "Last page" msgid "End" msgstr "Slutt" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Hopp til databasen "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Klikk for å velge" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktur" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2872,37 +2975,37 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Sett inn" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operasjoner" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Bla gjennom datamaskinen:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen du anga for opplasting kan ikke nåes" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Det er ingen filer å laste opp" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3069,7 +3172,7 @@ msgstr "Tillat brukere å endre denne verdien" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Tilbakestill" @@ -3338,7 +3441,7 @@ msgid "Character set of the file" msgstr "Filas tegnsett" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -5021,7 +5124,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Passord" @@ -5317,8 +5420,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilegier" @@ -5337,7 +5440,7 @@ msgstr "Hendelser" msgid "Triggers" msgstr "Triggere" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5397,7 +5500,7 @@ msgid "Create" msgstr "Opprett" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Ingen privilegier" @@ -5739,12 +5842,12 @@ msgstr "Sorter etter nøkkel" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Innstillinger" @@ -5776,8 +5879,8 @@ msgstr "Vis binært innhold" msgid "Show BLOB contents" msgstr "Vis BLOB innhold" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Skjul" @@ -5786,10 +5889,6 @@ msgstr "Skjul" msgid "Browser transformation" msgstr "Nettvisertransformasjon" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5798,61 +5897,57 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Raden er slettet" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Avslutt" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "i spørring" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Viser rader " -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "totalt" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Spørring tok %01.4f sek" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Forhåndsvisning (med all tekst)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Vis PDF-skjema" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Opprett bruker" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Link ikke funnet" @@ -6057,7 +6152,7 @@ msgstr "" "verdi mellom 1 og 99. Standard er 50." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Port" @@ -6408,7 +6503,7 @@ msgstr "Vis MIME-typer" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Vert" @@ -6609,7 +6704,7 @@ msgstr "Eksporter innhold" msgid "Open new phpMyAdmin window" msgstr "Åpne nytt phpMyAdmin vindu" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6623,57 +6718,57 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Generert av" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 #, 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 #, 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:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Gå til database" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Mangler data for %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Gå til tabell" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Kun struktur" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Gå til visning" @@ -6722,7 +6817,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Tabellnavn" @@ -6747,6 +6842,32 @@ msgstr "Importer prosenter som ekte desimaler (12.00% til .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importer valuta ($5.00 til 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "Fila %s inneholder ingen nøkkel id" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6802,7 +6923,7 @@ msgstr "" msgid "Add prefix" msgstr "Utfør indeks(er)" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Ingen endring" @@ -6811,7 +6932,7 @@ msgid "Charset" msgstr "Tegnsett" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binær " @@ -7123,7 +7244,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Brukernavn" @@ -7141,9 +7262,9 @@ msgid "Variable" msgstr "Variabler" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Verdi" @@ -7171,7 +7292,7 @@ msgstr "Alle brukere" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Bruk tekstfelt" @@ -7367,7 +7488,7 @@ msgid "Returns" msgstr "Returtype" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Tid" @@ -7526,8 +7647,8 @@ msgstr "" msgid "Routine parameters" msgstr "Rutiner" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funksjon" @@ -7854,8 +7975,8 @@ msgstr "Ukjent språk: %1$s." msgid "Current Server" msgstr "Gjeldende tjener" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Synkroniser" @@ -7877,7 +7998,7 @@ msgstr "Tegnsett" msgid "Engines" msgstr "Motorer" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Kildedatabase" @@ -7895,7 +8016,7 @@ msgstr "Fjerntjener" msgid "Difference" msgstr "Differanse" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Måldatabase" @@ -7918,11 +8039,11 @@ msgstr "Fjern" msgid "Columns" msgstr "Kolonner" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "La alle brukere ha adgang til dette bokmerket" @@ -7950,7 +8071,7 @@ msgstr "Bare se" msgid "Location of the text file" msgstr "Plassering av filen" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "webtjener opplastingskatalog" @@ -8148,23 +8269,29 @@ msgid "+ Add a value" msgstr "+ Legg til ny verdi" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Se de eksterne verdiene" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operator" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Søk" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Sett inn" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8326,8 +8453,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Ingen filer funnet inne i ZIP arkivet!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Feil i ZIP arkivet:" @@ -8355,8 +8482,8 @@ msgstr "Flere innstillinger" msgid "Protocol version" msgstr "Protokollversjon" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Bruker" @@ -8519,7 +8646,7 @@ msgstr "" "Tjeneren kjører med Suhosin. Sjekk %sdokumentasjonen%s for potensielle " "problemer." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Ingen databaser" @@ -8546,7 +8673,7 @@ msgstr "Skjul/Vis venstre meny" msgid "Save position" msgstr "Lagre posisjon" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Opprett tabell" @@ -8920,80 +9047,80 @@ msgstr "Lagringsmotorer" msgid "View dump (schema) of databases" msgstr "Vis dumpet skjema av databaser" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Inkluder alle privilegier unntatt GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Tillater endring av struktur på eksisterende tabeller." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Tillater endring og sletting av lagrede rutiner." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Tillater oppretting av nye databaser og tabeller." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Tillater oppreting av lagrede rutiner." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Tillater oppretting av nye tabeller." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Tillater oppretting av midlertidige tabeller." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillater oppretting, sletting og navneendring av brukerkontoer." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Tillater oppretting av nye visninger." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Tillater sletting av data." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Tillater sletting av databaser og tabeller." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Tillater sletting av tabeller." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Tillater å sette opp hendelser for hendelseskalenderen" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Tillater utføring av lagrede rutiner." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Tillater import og eksport av data til og fra filer." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -9001,17 +9128,17 @@ msgstr "" "privilegietabellene." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Tillater oppretting og sletting av indekser." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Tillater å legge til og erstatte data." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Tillater låsing av tabeller for den kjørende tråden." @@ -9040,55 +9167,55 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Begrens antall samtidige tilkoblinger brukeren kan ha." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Tillater visning av prosessene til alle brukere" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "har ingen effekt i denne versjonen av MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillater oppfrisking av tjenerinnstillinger og oppfrisking av mellomlager." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Gir tillatelse til brukeren til å spørre hvor replikasjonsslaver eller -" "tjenere er." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Trenges av replikasjonsslavene." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Tillater lesing av data." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Gir adgang til komplett liste over databaser." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillater utføring av SHOW CREATE VIEW spørringer." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Tillater avslutting av tjener." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9099,43 +9226,43 @@ msgstr "" "avslutting av andre brukeres tråder." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Tillater opprettelse og sletting av triggere" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Tillater endring av data." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Ingen privilegier." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Ingen" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Tabell-spesifikke privilegier" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "OBS: MySQL privilegiumnavn er på engelsk" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administrasjon" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globale privilegier" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Databasespesifikke privilegier" @@ -9155,7 +9282,7 @@ msgstr "Innlogingsinformasjon" msgid "Do not change the password" msgstr "Ikke endre passordet" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Ingen bruker(e) funnet." @@ -9204,7 +9331,7 @@ msgstr "De valgte brukerne har blitt slettet." msgid "The privileges were reloaded successfully." msgstr "Oppfriskingen av privilegiene lyktes." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Rediger privilegier" @@ -9212,34 +9339,34 @@ msgstr "Rediger privilegier" msgid "Revoke" msgstr "Tilbakekall" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Alle" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Brukeroversikt" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Rettighet" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Fjern valgte brukere" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Tilbakekall alle aktive privilegier fra brukerne og slett dem etterpå." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Slett databasene som har det samme navnet som brukerne." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9252,95 +9379,95 @@ msgstr "" "privilegiene tjeneren bruker hvis det er utført manuelle endringer på den. I " "så fall bør du %soppfriske privilegiene%s før du fortsetter." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Kolonne-spesifikke privilegier" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Legg til privilegier til følgende database" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Jokertegnene _ og % må beskyttes med en \\ for å bruke dem direkte" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Legg til privilegier til følgende tabell" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Endre innloggingsinformasjon / kopiere bruker" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Opprett ny bruker med de samme privilegier og ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... behold den gamle." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... slett den gamle fra brukertabellene." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... tilbakekall alle aktive privilegier fra den gamle og slett den etterpå." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... slett den gamle fra brukertabellene og deretter oppfrisk privilegiene." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Brukerdatabase" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Ingen" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Opprett database med samme navn og gi alle rettigheter" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Gi alle rettigheter på jokertegnavn (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Gi alle privilegier for databasen "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Brukere som har adgang til "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "databasespesifikk" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "jokertegn" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10673,111 +10800,111 @@ msgid_plural "%d minutes" msgstr[0] "Minutt" msgstr[1] "Minutt" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Kunne ikke koble til kilden" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Kunne ikke koble til målet" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' database eksisterer ikke." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Struktursynkronisering" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Datasynkronisering" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "ikke tilstede" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Strukturdifferanse" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Datadifferanse" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Legg til kolonne(r)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Fjern kolonne(r)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Endre kolonne(r)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Fjern indeks(er)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Utfør indeks(er)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Oppdater rad(er)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Sett inn rad(er)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Ønsker du å slette alle tidligere rader fra måltabeller?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Utfør valgte endringer" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Synkroniser databaser" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Valgte måltabeller har blitt synkronisert med kildetabeller." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Måldatabase har blitt synkronisert med kildedatabase" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL spørringer" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Skriv inn manuelt" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Nåværende tilkobling" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Konfigurasjon: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11176,34 +11303,34 @@ msgstr "Nøkkelen er for kort, den bør ha minst 8 tegn" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Nøkkelen bør inneholde tall, bokstaver [em]og[/em] spesielle tegn" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Viser som PHP kode" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Validert SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene i tabellen `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Navn" @@ -11212,64 +11339,64 @@ msgstr "Navn" msgid "Table %1$s has been altered successfully" msgstr "Tabellen %1$s har blitt endrett" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" " På grunn av sin lengde,
så vil muligens denne kolonnen ikke være " "redigerbar" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Fjern BLOB lager referanse" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binær - må ikke redigeres " -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Last opp til BLOB lager" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Sett inn som ny rad" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Sett inn som ny rad og ignorer feil" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Viser SQL spørring" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "og så" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Returner" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Sett inn en ny post" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Tilbake til denne siden" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Rediger neste rad" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for " "å bevege deg hvor som helst" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11359,53 +11486,49 @@ msgstr "Tabellen %1$s har blitt opprettet." msgid "View dump (schema) of table" msgstr "Vis dump (skjema) av tabell" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Vis tjenerutvalg" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "CHAR textarea kolonner" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- ingen -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Antall loggfiler" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Lagre som fil" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11637,23 +11760,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "Fremmednøkkelbegrensning" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Velg kolonner (minst ett):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Legg til søkekriterier (innhold i \"where\"-setningen):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Antall poster per side" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Visningsrekkefølge:" @@ -13303,8 +13426,5 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Opprett bruker" -#~ msgid "Add a new User" -#~ msgstr "Legg til en ny bruker" - #~ msgid "Show table row links on left side" #~ msgstr "Vis logo i venstre ramme" diff --git a/po/nl.po b/po/nl.po index b94f6ff834..64d88c5e20 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-06-04 15:19+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: dutch \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Toon alles" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "Het doelvenster kon niet worden bijgewerkt. Misschien heeft u het venster " "afgesloten of uw browser blokkeert bijwerkingen van uw venster." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Zoeken" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "Zoeken" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -138,8 +139,8 @@ msgstr "Tabelopmerkingen" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -154,8 +155,8 @@ msgstr "Kolom" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -166,7 +167,7 @@ msgstr "Type" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -209,10 +210,10 @@ msgstr "Opmerkingen" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Nee" @@ -231,9 +232,9 @@ msgstr "Nee" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -334,7 +335,7 @@ msgstr "Overschakelen naar de gekopieerde database" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -359,15 +360,15 @@ msgstr "Bewerk of exporteer relationeel schema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabel" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -427,19 +428,19 @@ msgstr "Sorteren" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Oplopend" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Aflopend" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Toon" @@ -460,8 +461,8 @@ msgid "Del" msgstr "Verwijder" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Of" @@ -490,7 +491,7 @@ msgstr "Gebruik tabellen" msgid "SQL query on database %s:" msgstr "SQL-query op database %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Query uitvoeren" @@ -529,8 +530,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s overeenkomst in de tabel %s" msgstr[1] "%s overeenkomsten in de tabel %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Verkennen" @@ -541,7 +542,7 @@ msgid "Delete the matches for the %s table?" msgstr "Verwijder gevonden rijen voor de tabel %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -614,7 +615,7 @@ msgstr "Tracking is ingeschakeld." msgid "Tracking is not active." msgstr "Tracking is niet actief." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -643,22 +644,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s is de standaard storage engine op deze MySQL-server." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Met geselecteerd:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Selecteer alles" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Deselecteer alles" @@ -666,10 +667,10 @@ msgstr "Deselecteer alles" msgid "Check tables having overhead" msgstr "Selecteer tabellen met overhead" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -677,17 +678,17 @@ msgid "Export" msgstr "Exporteer" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Afdrukken" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Legen" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -735,9 +736,9 @@ msgstr "Tabellen met tracker" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Database" @@ -756,15 +757,15 @@ msgstr "Bijgewerkt" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Actie" @@ -817,7 +818,7 @@ msgstr "Plaats elke waarde in een log veld." msgid "+ Restart insertion and add a new value" msgstr "+ Herstart invoegen en voeg nieuwe waarde toe" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Uitvoer" @@ -854,6 +855,95 @@ msgstr "De web server heeft geen rechten om het bestand %s op te slaan." msgid "Dump has been saved to file %s." msgstr "Dump is bewaard als %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Waarden voor kolom \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add index" +msgid "Add a point" +msgstr "Voeg index toe" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Regels beëindigd door" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Voeg een nieuwe gebruiker toe" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Voeg een nieuwe gebruiker toe" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Voeg kolom toe" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "Een server toevoegen" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -905,7 +995,7 @@ msgstr "De boekenlegger (Bookmark) is verwijderd." msgid "Showing bookmark" msgstr "Toon bookmark" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s aangemaakt" @@ -933,7 +1023,7 @@ msgstr "" "worden versoepeld." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -959,15 +1049,15 @@ msgstr "Klik om te selecteren" msgid "Click to unselect" msgstr "Klik om te de-selecteren" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Weet u zeker dat u dit wilt " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "U staat op het punt een volledige database te VERWIJDEREN!" @@ -1031,8 +1121,8 @@ msgstr "Het wachtwoord is leeg!" msgid "The passwords aren't the same!" msgstr "De wachtwoorden zijn niet gelijk!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Gebruiker toevoegen" @@ -1050,8 +1140,8 @@ msgid "Close" msgstr "Sluiten" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1091,12 +1181,12 @@ msgid "Other" msgstr "Andere" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1187,12 +1277,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1297,7 +1387,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Geen" @@ -1693,8 +1783,8 @@ msgstr "SQL-query veld tonen" msgid "No rows selected" msgstr "Geen rijen geselecteerd" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Veranderen" @@ -1708,8 +1798,8 @@ msgstr "Maximale uitvoertijd" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Opslaan" @@ -1721,7 +1811,7 @@ msgstr "Verberg zoekcriteria" msgid "Show search criteria" msgstr "Toon zoek-criteria" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1765,34 +1855,42 @@ msgstr "Toevoegen/Verwijderen kolommen" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Negeer" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Kopiëren" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "Voeg kolom toe" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Selecteer de gerefereerde sleutel" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Selecteer vreemde sleutel" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Selecteer de primaire sleutel of een unieke sleutel" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Kies weer te geven veld" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1800,70 +1898,70 @@ msgstr "" "U hebt de layoutwijzigingen niet opgeslagen. Deze zullen verloren gaan als u " "deze niet opslaat. Wilt u doorgaan?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Voeg een optie toe voor komom " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Klik om te sorteren" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Klik om te markeren/demarkeren" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Ga naar view" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Genereer wachtwoord" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Genereer" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Wijzig wachtwoord" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Meer" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1873,27 +1971,27 @@ msgstr "" "overwegen. De nieuwe versie is %s, uitgebracht op %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", meest recente versie:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "Recent bijgewerkt" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Klaar" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1901,149 +1999,149 @@ msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Vandaag" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "januari" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "februari" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "maart" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "april" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "mei" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "juni" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "juli" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "augustus" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "september" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "oktober" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "november" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "dec" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "zondag" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "maandag" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "dinsdag" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "woensdag" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "donderdag" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "vrijdag" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "zaterdag" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2051,87 +2149,92 @@ msgid "Sun" msgstr "zo" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "ma" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "do" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "za" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "zo" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "do" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "vr" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "za" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Week" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Uur" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minuut" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Seconde" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Lettertypegrootte" @@ -2245,13 +2348,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Databases" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fout" @@ -2380,7 +2483,7 @@ msgstr "Thema %s niet gevonden!" msgid "Theme path not found for theme %s!" msgstr "Thema pad niet gevonden voor thema %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2558,7 +2661,7 @@ msgstr "Tabellen" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Data" @@ -2627,7 +2730,7 @@ msgstr "Ongeldige machinenaam voor server %1$s. Controleer uw configuratie." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2692,103 +2795,103 @@ msgstr "SQL-query" msgid "MySQL said: " msgstr "MySQL retourneerde: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Er kan geen verbinding worden gemaakt met de SQL-validator!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Verklaar SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Uitleg SQL overslaan" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "zonder PHP-Code" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Genereer PHP-Code" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Vernieuw" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL-validatie overslaan" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Valideer SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Rechtstreekse bewerking van deze query" # "Inline" vertaalt naar "rechtstreeks in het document", als het ware binnen # iets anders. -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Rechtstreeks" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profiling" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "zo" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y om %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagen, %s uren, %s minuten en %s seconden" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Routines" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2796,7 +2899,7 @@ msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2805,7 +2908,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Vorige" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2814,7 +2917,7 @@ msgctxt "Next page" msgid "Next" msgstr "Volgende" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2822,36 +2925,36 @@ msgctxt "Last page" msgid "End" msgstr "Einde" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Ga naar database "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Klik om te selecteren" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Structuur" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2859,37 +2962,37 @@ msgstr "Structuur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Invoegen" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Handelingen" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Blader op uw eigen pc:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecteer uit de web-server upload directory %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 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/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Er zijn geen bestanden om te uploaden" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3057,7 +3160,7 @@ msgstr "Sta gebruikers toe deze waarde aan te passen" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Herstel" @@ -3330,7 +3433,7 @@ msgid "Character set of the file" msgstr "Karakertset voor het bestand" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Opmaak" @@ -5012,7 +5115,7 @@ msgstr "Vereist dat SQL Validator geactiveerd is" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Wachtwoord" @@ -5319,8 +5422,8 @@ msgid "Designer" msgstr "Ontwerper" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Rechten" @@ -5339,7 +5442,7 @@ msgstr "Gebeurtenissen" msgid "Triggers" msgstr "Triggers" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5401,7 +5504,7 @@ msgid "Create" msgstr "Aanmaken" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Geen rechten" @@ -5729,12 +5832,12 @@ msgstr "Sorteren op sleutel" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Opties" @@ -5762,8 +5865,8 @@ msgstr "Toon binaire inhoud" msgid "Show BLOB contents" msgstr "Toon BLOB inhoud" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Verberg" @@ -5772,10 +5875,6 @@ msgstr "Verberg" msgid "Browser transformation" msgstr "Browser transformaties" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5784,57 +5883,53 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Kopiëren" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "De rij is verwijderd" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "stop proces" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Toon Records" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "totaal" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Query duurde %01.4f sec" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Query resultaat bewerkingen" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Afdrukken (met volledige teksten)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Grafiek weergeven" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "VIEW aanmaken" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Link niet gevonden" @@ -6039,7 +6134,7 @@ msgstr "" "geschoond." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Poort" @@ -6392,7 +6487,7 @@ msgstr "Toon beschikbare MIME-types" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Machine" @@ -6609,7 +6704,7 @@ msgstr "Exporteer inhoud" msgid "Open new phpMyAdmin window" msgstr "Open nieuw phpMyAdmin scherm" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6623,54 +6718,54 @@ msgstr "SQL-resultaat" msgid "Generated by" msgstr "Gegenereerd door" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultaat set terug (0 rijen)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "De inhoud van een structuur bekijken door er op te klikken" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Klik op de \"Structuur\"-koppeling om de structuur aan te passen" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Ga naar database" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Ontbrekende data voor %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Ga naar tabel" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Alleen structuur" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Ga naar view" @@ -6727,7 +6822,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Tabelnaam" @@ -6748,6 +6843,32 @@ msgstr "Percentages als decimalen importeren (12.00% naar ,12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Valuta importeren ($5.00 naar 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Deze pagina bevat geen tabellen!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "SQL-compatibiliteits mode:" @@ -6796,7 +6917,7 @@ msgstr "Voeg tabelvoorvoegsel toe" msgid "Add prefix" msgstr "Voeg voorvoegsel toe" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Geen verandering" @@ -6805,7 +6926,7 @@ msgid "Charset" msgstr "Karakterset" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binair" @@ -7119,7 +7240,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Gebruikersnaam" @@ -7137,9 +7258,9 @@ msgid "Variable" msgstr "Variabelen" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Waarde" @@ -7167,7 +7288,7 @@ msgstr "Een willekeurige gebruiker" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Gebruik tekstveld" @@ -7363,7 +7484,7 @@ msgid "Returns" msgstr "Retour type" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Tijd" @@ -7522,8 +7643,8 @@ msgstr "" msgid "Routine parameters" msgstr "Routines" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Functie" @@ -7844,8 +7965,8 @@ msgstr "Onbekende taal: %1$s." msgid "Current Server" msgstr "Huidige server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Synchronizatie" @@ -7867,7 +7988,7 @@ msgstr "Karaktersets" msgid "Engines" msgstr "Engines" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Bron database" @@ -7885,7 +8006,7 @@ msgstr "Andere server" msgid "Difference" msgstr "Verschil" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Doel database" @@ -7908,11 +8029,11 @@ msgstr "Clear" msgid "Columns" msgstr "Kolommen" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Sla deze SQL-query op" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Geef elke gebruiker toegang tot deze bookmark" @@ -7940,7 +8061,7 @@ msgstr "Alleen bekijken" msgid "Location of the text file" msgstr "Locatie van het tekstbestand" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "web-server upload directory" @@ -8138,23 +8259,29 @@ msgid "+ Add a value" msgstr "+ Een nieuwe waarde toevoegen" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Bekijk vreemde waarden" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operator" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Zoeken" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Invoegen" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8321,8 +8448,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Geen bestanden gevonden in ZIP archief!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Fout in ZIP-archief:" @@ -8346,8 +8473,8 @@ msgstr "Overige instellingen" msgid "Protocol version" msgstr "Protocolversie" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Gebruiker" @@ -8499,7 +8626,7 @@ msgid "" msgstr "" "De server gebruikt Suhosin. Zie de %sdocumentatie%s voor mogelijke problemen." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Geen databases" @@ -8526,7 +8653,7 @@ msgstr "Toon/Verberg linker menu" msgid "Save position" msgstr "Posities opslaan" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Maak tabel" @@ -8872,83 +8999,83 @@ msgstr "Opslag Engines" msgid "View dump (schema) of databases" msgstr "Bekijk dump (schema) van de databases" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Bevat alle privileges behalve GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Maakt het mogelijk de structuur van bestaande tabellen aan te passen." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Maakt het mogelijk om stored routines te bewerken en te verwijderen." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Maakt het mogelijk om nieuwe databases en tabellen te maken." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Maakt het mogelijk om stored routines aan te maken." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Maakt het mogelijk nieuwe tabellen te maken." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Maakt het mogelijk om tijdelijke tabellen te maken." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Maakt het mogelijk om gebruikersaccounts te maken, hernoemen en verwijderen." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Maakt het mogelijk om nieuwe views te maken." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Maakt het mogelijk om data te verwijderen." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Maakt het mogelijk om databases en tabellen te verwijderen." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Maakt het mogelijk tabellen te verwijderen." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Maakt het mogelijk om gebeurtenissen in de planner te zetten" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Maakt het mogelijk om stored routines uit te voeren." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" "Maakt het mogelijk om data te importeren en te exporteren van en naar " "bestanden." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8956,17 +9083,17 @@ msgstr "" "privilegestabel opnieuw op te vragen." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Maakt het mogelijk om indexen te creëren en te verwijderen." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Maakt het mogelijk om data in te voegen en te vervangen." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Maakt het mogelijk tabellen op slot te zetten voor de huidige thread." @@ -8998,56 +9125,56 @@ msgstr "" "hebben." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Maakt het mogelijk om processen van alle gebruikers te zien" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Heeft geen effect in deze MySQL versie." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Maakt het mogelijk om de serverinstellingen opnieuw op te vragen en de cache " "van de server leeg te maken." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Geeft het recht aan de gebruiker om te vragen waar de 'slaves' / 'masters' " "zijn." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Nodig om 'slaves' te repliceren." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Maakt het lezen van data mogelijk." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Geeft toegang tot de complete lijst van databases." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Maakt het mogelijk om SHOW CREATE VIEW queries uit te voeren." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Maakt het mogelijk om de server te stoppen." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9059,44 +9186,44 @@ msgstr "" "van andere gebruikers." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Maakt het mogelijk om triggers maken en te verwijderen" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Maakt het mogelijk data aan te passen." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Geen privileges." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Geen" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Tabel-specifieke privileges" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "" " Aantekening: de namen van de MySQL rechten zijn uitgedrukt in het Engels " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administratie" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globale privileges" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Database-specifieke privileges" @@ -9118,7 +9245,7 @@ msgid "Do not change the password" msgstr "Wijzig het wachtwoord niet" # Enkelvoud. -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Geen gebruiker gevonden." @@ -9167,7 +9294,7 @@ msgstr "De geselecteerde gebruikers zijn met succes verwijderd." msgid "The privileges were reloaded successfully." msgstr "De privileges zijn succesvol vernieuwd." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Wijzig rechten" @@ -9175,35 +9302,35 @@ msgstr "Wijzig rechten" msgid "Revoke" msgstr "Ongedaan maken" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Elke" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Gebruikers Overzicht" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Toekennen" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Verwijder de geselecteerde gebruikers" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Trek alle actieve privileges in van alle gebruikers en verwijder deze daarna." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9217,52 +9344,52 @@ msgstr "" "geval zijn dan moet men %sde privilege tabel vernieuwen%s voordat men verder " "gaat." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" "De geselecteerde gebruiker werd niet aangetroffen in de privileges tabel." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Kolom-specifieke privileges" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Voeg privileges toe aan de volgende database" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Wildcards _ en % moeten worden ge-escaped met een \\ om ze letterlijk te " "gebruiken" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Voeg privileges toe aan de volgende tabel" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Wijzig de Inlog Informatie / Kopieer gebruiker" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Maak een nieuwe gebruiker aan met dezelfde privileges en ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... behoud de oude." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... verwijder de oude van de user tabellen." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... herstel alle actieve privileges van de oude en verwijder deze daarna." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9270,46 +9397,46 @@ msgstr "" " ... verwijder de oude van de gebruikerstabellen en vernieuw de privileges " "achteraf." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Database voor gebruiker" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Geen" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Maak een database met dezelfde naam en geef alle rechten hierop" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Geef alle rechten op de wildcard naam (gebruikersnaam\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Geef alle rechten op de database "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Gebruikers die toegang hebben tot "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globaal" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "database-specifiek" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "jokerteken" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "Gebruiker is toegevoegd" @@ -10654,111 +10781,111 @@ msgid_plural "%d minutes" msgstr[0] "Minuut" msgstr[1] "Minuut" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Verbinding naar de brondatabase is mislukt" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Verbinding naar de bestemmingsdatabase is mislukt" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Database '%s' bestaat niet." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Structuur synchronizatie" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Gegevens synchronizatie" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "niet aanwezig" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Structuur verschillen" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Gegevens verschillen" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Kolom(men) toevoegen" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Kolom(men) verwijderen" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Kolom(men) wijzigen" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Index(en) verwijderen" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Index(en) toepassen" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Rij(en) bijwerken" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Rij(en) toevoegen" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Wilt u alle vorige rijen verwijderen uit de bestemmingstabellen?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Geselecteerde wijzigingen toepassen" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Synchronizeer databases" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "De geselecteerde tabellen zijn gesynchroniseerd met de bron tabellen." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "De bestemmings database is gesynchronizeerd met de bron database" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL-queries" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Geef handmatig op" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Huidige verbinding" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Configuratie: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11110,34 +11237,34 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" "Sleutel hoort letters, cijfers [em]en[/em] speciale tekens te bevatten." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bookmark \"%s\" wordt gebruikt als standaard browse query." -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rij nummer: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Getoond als PHP-code" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Gevalideerde SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemen met de indexen van de tabel `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Label" @@ -11146,62 +11273,62 @@ msgstr "Label" msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s is bijgewerkt" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "Vanwege z'n lengte,
is dit veld misschien niet te wijzigen " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Verwijder BLOB Bewaarplaats Referentie" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binair - niet aanpassen" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Upload naar BLOB bewaarplaats" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Voeg toe als nieuwe rij" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Voeg toe als nieuwe rij en negeer foutmeldingen" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Toon insert-query" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "en dan" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Terug" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Voeg een nieuw record toe" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Ga terug naar deze pagina" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Bewerk volgende rij" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Gebruik de TAB-knop om van waarde naar waarde te navigeren of CTRL+pijltjes " "om vrijuit te navigeren" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Herstart invoegen met %s rijen" @@ -11290,53 +11417,49 @@ msgstr "Tabel %1$s is aangemaakt." msgid "View dump (schema) of table" msgstr "Bekijk een dump (schema) van tabel" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Toon serverkeuze" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Breedte" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Hoogte" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Textarea columns" msgid "Label column" msgstr "Textarea kolommen" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- geen -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total count" msgid "Spatial column" msgstr "Totaal aantal" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Hertekenen" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Opslaan als bestand" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11564,23 +11687,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "FOREIGN KEY beperking" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Voer een query op basis van een vergelijking uit (wildcard: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Selecteer velden (minstens één):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Zoekcondities toevoegen (het \"where\" gedeelte van de query):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "records per pagina" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Weergave volgorde:" @@ -13269,9 +13392,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Gebruiker aanmaken" -#~ msgid "Add a new User" -#~ msgstr "Voeg een nieuwe gebruiker toe" - #~ msgid "Show table row links on left side" #~ msgstr "Toon links naar tabelrijen aan de linker zijder" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index ed2f0979a8..1a1d0e1e72 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,13 +18,13 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgid "" "cross-window updates." msgstr "" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -138,8 +139,8 @@ msgstr "" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -154,8 +155,8 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -166,7 +167,7 @@ msgstr "" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -209,10 +210,10 @@ msgstr "" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "" @@ -231,9 +232,9 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -334,7 +335,7 @@ msgstr "" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,15 +358,15 @@ msgstr "" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -424,19 +425,19 @@ msgstr "" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "" @@ -457,8 +458,8 @@ msgid "Del" msgstr "" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "" @@ -487,7 +488,7 @@ msgstr "" msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "" @@ -526,8 +527,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "" @@ -538,7 +539,7 @@ msgid "Delete the matches for the %s table?" msgstr "" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -607,7 +608,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, possible-php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -635,22 +636,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "" @@ -658,10 +659,10 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -669,17 +670,17 @@ msgid "Export" msgstr "" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -727,9 +728,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "" @@ -748,15 +749,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "" @@ -809,7 +810,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -842,6 +843,82 @@ msgstr "" msgid "Dump has been saved to file %s." msgstr "" +#: gis_data_editor.php:84 +#, possible-php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +msgid "Add a point" +msgstr "" + +#: gis_data_editor.php:218 js/messages.php:287 +msgid "Linestring" +msgstr "" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +msgid "Add a linestring" +msgstr "" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +msgid "Add an inner ring" +msgstr "" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +msgid "Add a polygon" +msgstr "" + +#: gis_data_editor.php:304 +msgid "Add geometry" +msgstr "" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, possible-php-format msgid "" @@ -882,7 +959,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, possible-php-format msgid "Bookmark %s created" msgstr "" @@ -905,7 +982,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -929,15 +1006,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -999,8 +1076,8 @@ msgstr "" msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "" @@ -1018,8 +1095,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1055,12 +1132,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "" @@ -1139,12 +1216,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "" @@ -1233,7 +1310,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "" @@ -1592,8 +1669,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "" @@ -1605,8 +1682,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "" @@ -1618,7 +1695,7 @@ msgstr "" msgid "Show search criteria" msgstr "" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 msgid "Zoom Search" msgstr "" @@ -1658,99 +1735,107 @@ msgstr "" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, possible-php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1758,258 +1843,263 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "" -#: js/messages.php:344 +#: js/messages.php:356 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:349 +#: js/messages.php:361 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "" +#: libraries/Advisor.class.php:145 +#, possible-php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2113,13 +2203,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "" @@ -2242,7 +2332,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2406,7 +2496,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "" @@ -2470,7 +2560,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "" @@ -2535,152 +2625,152 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, possible-php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, possible-php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, possible-php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2688,37 +2778,37 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, possible-php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -2884,7 +2974,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "" @@ -3131,7 +3221,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "" @@ -4652,7 +4742,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "" @@ -4929,8 +5019,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "" @@ -4949,7 +5039,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5006,7 +5096,7 @@ msgid "Create" msgstr "" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -5305,12 +5395,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "" @@ -5338,8 +5428,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5348,10 +5438,6 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5360,57 +5446,53 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, possible-php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "" @@ -5589,7 +5671,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "" @@ -5894,7 +5976,7 @@ msgstr "" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "" @@ -6086,7 +6168,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6098,48 +6180,48 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, possible-php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, possible-php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6188,7 +6270,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6209,6 +6291,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, possible-php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, possible-php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6254,7 +6360,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "" @@ -6263,7 +6369,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "" @@ -6566,7 +6672,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "" @@ -6584,9 +6690,9 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "" @@ -6612,7 +6718,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "" @@ -6784,7 +6890,7 @@ msgid "Returns" msgstr "" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "" @@ -6921,8 +7027,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "" @@ -7203,8 +7309,8 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7226,7 +7332,7 @@ msgstr "" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "" @@ -7244,7 +7350,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "" @@ -7267,11 +7373,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7299,7 +7405,7 @@ msgstr "" msgid "Location of the text file" msgstr "" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "" @@ -7466,21 +7572,25 @@ msgid "+ Add a value" msgstr "" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 msgid "Table Search" msgstr "" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +msgid "Edit/Insert" +msgstr "" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7600,8 +7710,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -7625,8 +7735,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "" @@ -7746,7 +7856,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "" @@ -7771,7 +7881,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "" @@ -8102,96 +8212,96 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8218,52 +8328,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8271,43 +8381,43 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "" @@ -8327,7 +8437,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "" @@ -8376,7 +8486,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "" @@ -8384,34 +8494,34 @@ msgstr "" msgid "Revoke" msgstr "" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, possible-php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8420,93 +8530,93 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, possible-php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, possible-php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "" @@ -9639,110 +9749,110 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, possible-php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 msgid "Executed queries" msgstr "" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, possible-php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10032,34 +10142,34 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, possible-php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "" -#: sql.php:918 +#: sql.php:928 #, possible-php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "" @@ -10068,60 +10178,60 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, possible-php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10192,43 +10302,39 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "" @@ -10449,23 +10555,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "" diff --git a/po/pl.po b/po/pl.po index e95b345347..021be2ef31 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-02-24 16:21+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: polish \n" @@ -15,13 +15,13 @@ msgstr "" "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Pokaż wszystko" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgstr "" "rodzic zostało zamknięte lub przeglądarka, uwzględniając ustawienia " "bezpieczeństwa, blokuje aktualizacje pomiędzy oknami" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Szukaj" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "Szukaj" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "Komentarze tabeli" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -156,8 +157,8 @@ msgstr "Kolumna" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -168,7 +169,7 @@ msgstr "Typ" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -211,10 +212,10 @@ msgstr "Komentarze" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Nie" @@ -233,9 +234,9 @@ msgstr "Nie" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -336,7 +337,7 @@ msgstr "Przełącz do przekopiowanej bazy danych" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -364,15 +365,15 @@ msgstr "Edytuj lub eksportuj schemat relacji" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -433,19 +434,19 @@ msgstr "Sortuj" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Rosnąco" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Malejąco" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Pokaż" @@ -466,8 +467,8 @@ msgid "Del" msgstr "Usuń" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "lub" @@ -498,7 +499,7 @@ msgstr "Użyj tabel" msgid "SQL query on database %s:" msgstr "Zapytanie SQL dla bazy danych %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Wykonaj zapytania" @@ -538,8 +539,8 @@ msgstr[0] "%s trafień wewnątrz tabeli %s" msgstr[1] "%s trafienia wewnątrz tabeli %s" msgstr[2] "%s trafień wewnątrz tabeli %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Przeglądaj" @@ -550,7 +551,7 @@ msgid "Delete the matches for the %s table?" msgstr "Usuń wszystkie trafienia dla tabeli %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -624,7 +625,7 @@ msgstr "Monitorowanie jest aktywne." msgid "Tracking is not active." msgstr "Monitorowanie nie jest aktywne." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -654,22 +655,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s to domyślny mechanizm składowania tego serwera MySQL." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Zaznaczone:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Zaznacz wszystkie" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Usuń zaznaczenie" @@ -677,10 +678,10 @@ msgstr "Usuń zaznaczenie" msgid "Check tables having overhead" msgstr "Zaznacz nieoptymalne" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -688,17 +689,17 @@ msgid "Export" msgstr "Eksport" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Widok do druku" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Wyczyść" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -748,9 +749,9 @@ msgstr "Monitorowane tabele" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Baza danych" @@ -769,15 +770,15 @@ msgstr "Zaktualizowane" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Działanie" @@ -830,7 +831,7 @@ msgstr "Wprowadź wartości w osobnych polach" msgid "+ Restart insertion and add a new value" msgstr "+ Zacznij od nowa i dodaj nową wartość" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Wyjście" @@ -865,6 +866,95 @@ msgstr "Serwer WWW nie ma praw do zapisu pliku %s." msgid "Dump has been saved to file %s." msgstr "Zrzut został zapisany do pliku %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Wartości dla kolumny \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add a point" +msgstr "Dołącz indeks(y)" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Linie zakończone przez" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Dodaj nowego użytkownika" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Dodaj nowego użytkownika" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "Dodaj %s pól" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "Dodaj nowy serwer" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -912,7 +1002,7 @@ msgstr "Zapamiętane zapytanie SQL zostało usunięte." msgid "Showing bookmark" msgstr "Pokaz zapamiętanego zapytania" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Zapytanie %s zostało zapamiętane" @@ -940,7 +1030,7 @@ msgstr "" "importu bez zwiększenia limitów czasowych PHP." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -966,15 +1056,15 @@ msgstr "Kliknij, aby zaznaczyć" msgid "Click to unselect" msgstr "Kliknij, aby usunąć zaznaczenie" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Polecenie \"DROP DATABASE\" jest zablokowane." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Czy na pewno wykonać " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Masz zamiar ZNISZCZYĆ całą bazę danych!" @@ -1042,8 +1132,8 @@ msgstr "Puste hasło!" msgid "The passwords aren't the same!" msgstr "Hasła nie są identyczne!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1065,8 +1155,8 @@ msgid "Close" msgstr "Zamknij" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1106,12 +1196,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr " " #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1202,12 +1292,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1314,7 +1404,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Brak" @@ -1722,8 +1812,8 @@ msgstr "Pokaż okno zapytań" msgid "No rows selected" msgstr "Żaden rekord nie został zaznaczony" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Zmień" @@ -1737,8 +1827,8 @@ msgstr "Maksymalny czas wykonania" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Zachowaj" @@ -1752,7 +1842,7 @@ msgstr "Ukryj okno zapytania SQL" msgid "Show search criteria" msgstr "Okno zapytania SQL" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1796,107 +1886,115 @@ msgstr "Dodaj/usuń kolumny" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignoruj" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Kopiuj" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Dodaj %s pól" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Wybierz klucz odwołujący" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Wybierz klucz zewnętrzny" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Należy wybrać klucz główny lub klucz jednoznaczny" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Wybierz kolumny do wyświetlenia" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Dodaj opcję do kolumny" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Kliknij, aby zaznaczyć" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Przejdź do widoku" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Wygeneruj hasło" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generuj" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Zmień hasło" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Więcej" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1906,29 +2004,29 @@ msgstr "" "werja to %s, wydana dnia %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", ostatnia stabiln()a wersja:" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Przejdź do bazy danych" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Zakończ" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Poprzedni" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1936,80 +2034,80 @@ msgid "Next" msgstr "Następne" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Dzisiaj" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Styczeń" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Luty" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Marzec" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Kwiecień" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Maj" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Czerwiec" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Lipiec" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Sierpień" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Wrzesień" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Październik" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Listopad" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Grudzień" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2017,70 +2115,70 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Gru" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Niedziela" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Poniedziałek" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Wtorek" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Środa" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Czwartek" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Piątek" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2088,101 +2186,106 @@ msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Nie" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Wto" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Śro" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Czw" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pią" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sob" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Wk" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Godzina" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minuta" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Sekunda" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Rozmiar pisma" @@ -2296,13 +2399,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Bazy danych" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Błąd" @@ -2439,7 +2542,7 @@ msgstr "Nie znaleziono motywu graficznego %s!" msgid "Theme path not found for theme %s!" msgstr "Nie znaleziono ścieżki do motywu %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2614,7 +2717,7 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Dane" @@ -2687,7 +2790,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Serwer" @@ -2752,105 +2855,105 @@ msgstr "Zapytanie SQL" msgid "MySQL said: " msgstr "MySQL zwrócił komunikat: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "Nie można połączyć się z serwerem MySQL" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Wyjaśnij SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Pomiń wyjaśnienie SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Bez kodu PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Utwórz kod PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Odśwież" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Pomiń sprawdzanie poprawności SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Sprawdź poprawność SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Szybka edycja tego zapytania" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Mechanizmy" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profilowanie" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "bajtów" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Nie" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s godzin, %s minut i %s sekund" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Procedury i funkcje" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2858,7 +2961,7 @@ msgctxt "First page" msgid "Begin" msgstr "Początek" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2867,7 +2970,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Poprzednie" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2876,7 +2979,7 @@ msgctxt "Next page" msgid "Next" msgstr "Następne" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2884,36 +2987,36 @@ msgctxt "Last page" msgid "End" msgstr "Koniec" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Przejście do bazy danych "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Kliknij, aby zaznaczyć" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2921,38 +3024,38 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Dodaj" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operacje" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Wyszukaj w komputerze" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "katalog serwera WWW dla uploadu" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Nie podałeś plików do wgrania na serwer" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3129,7 +3232,7 @@ msgstr "Zezwól użytkownikom na zmianę tej wartości" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Resetuj" @@ -3398,7 +3501,7 @@ msgid "Character set of the file" msgstr "Kodowanie pliku" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -5112,7 +5215,7 @@ msgstr "Wymaga włączenia walidatora SQL" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Hasło" @@ -5425,8 +5528,8 @@ msgid "Designer" msgstr "Widok projektu" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Uprawnienia" @@ -5445,7 +5548,7 @@ msgstr "Zdarzenia" msgid "Triggers" msgstr "Wyzwalacze" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5511,7 +5614,7 @@ msgid "Create" msgstr "Utwórz" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Brak uprawnień" @@ -5891,12 +5994,12 @@ msgstr "Sortuj wg klucza" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Opcje" @@ -5930,8 +6033,8 @@ msgstr "Pokaż zawartość binarną" msgid "Show BLOB contents" msgstr "Pokaż zawartość BLOB" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Ukryj" @@ -5940,10 +6043,6 @@ msgstr "Ukryj" msgid "Browser transformation" msgstr "Sposób prezentacji danych" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5952,60 +6051,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Kopiuj" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Rekord został skasowany" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Unicestwij" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "w zapytaniu" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Pokaż rekordy " -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "wszystkich" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Widok do druku (z pełnymi tekstami)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Wyświetl schemat PDF" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Utwórz związek" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Łącze nie znalezione" @@ -6211,7 +6306,7 @@ msgstr "" "między 1 i 99. Domyślną wartością jest 50." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Port" @@ -6571,7 +6666,7 @@ msgstr "Dostępne typy MIME" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6780,7 +6875,7 @@ msgstr "Eksportuj zawartość" msgid "Open new phpMyAdmin window" msgstr "Otwórz nowe okno phpMyAdmina" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6794,55 +6889,55 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Wygenerowany przez" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero rekordów)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 #, fuzzy #| msgid "View a structure`s contents by clicking on its name" msgid "View a structure's contents by clicking on its name" msgstr "Zobacz zawartość struktury klikając jej nazwę" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\"" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Przejdź do bazy danych" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Brakuje danych dla %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Przejdź do tabeli" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tylko struktura" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Przejdź do widoku" @@ -6896,7 +6991,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Nazwa tabeli" @@ -6918,6 +7013,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "Plik %s nie zawiera żadnego identyfikatora klucza" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6973,7 +7094,7 @@ msgstr "" msgid "Add prefix" msgstr "Dołącz indeks(y)" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Bez zmian" @@ -6982,7 +7103,7 @@ msgid "Charset" msgstr "Kodowanie napisów" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binarne " @@ -7294,7 +7415,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Nazwa użytkownika" @@ -7312,9 +7433,9 @@ msgid "Variable" msgstr "Zmienna" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Wartość" @@ -7342,7 +7463,7 @@ msgstr "Dowolny użytkownik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Użyj pola tekstowego" @@ -7540,7 +7661,7 @@ msgid "Returns" msgstr "Zwracany typ" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Czas" @@ -7700,8 +7821,8 @@ msgstr "" msgid "Routine parameters" msgstr "Procedury i funkcje" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funkcja" @@ -8038,8 +8159,8 @@ msgstr "Nieznany język: %1$s." msgid "Current Server" msgstr "Serwer" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Synchronizacja" @@ -8061,7 +8182,7 @@ msgstr "Kodowania napisów" msgid "Engines" msgstr "Mechanizmy" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Źródłowa baza danych" @@ -8079,7 +8200,7 @@ msgstr "Serwer zdalny" msgid "Difference" msgstr "Różnica" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Docelowa baza danych" @@ -8104,11 +8225,11 @@ msgstr "Wyczyść" msgid "Columns" msgstr "Nazwy kolumn" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Pamiętaj zapytanie SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Pozwól na dostęp wszystkim użytkownikom" @@ -8136,7 +8257,7 @@ msgstr "Tylko pokaż" msgid "Location of the text file" msgstr "Lokalizacja pliku tekstowego" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "katalog serwera WWW do przesyłania plików" @@ -8345,23 +8466,29 @@ msgid "+ Add a value" msgstr "Dodaj nowy serwer" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operator" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Szukaj" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Dodaj" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8570,8 +8697,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Archiwum ZIP jest puste!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Błąd w archiwum ZIP:" @@ -8601,8 +8728,8 @@ msgstr "Inne kluczowe ustawienia" msgid "Protocol version" msgstr "Wersja protokołu" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Użytkownik" @@ -8764,7 +8891,7 @@ msgstr "" "Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja" "%s." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Brak baz danych" @@ -8793,7 +8920,7 @@ msgstr "Pokaż/ukryj lewe menu" msgid "Save position" msgstr "Zapamiętaj pozycję" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Utwórz tabelę" @@ -9165,80 +9292,80 @@ msgstr "Mechanizmy składowania" msgid "View dump (schema) of databases" msgstr "Zrzut baz danych" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Wszystkie uprawnienia, oprócz GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Pozwól zmieniać strukturę istniejących tabel." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Pozwól modyfikować i usuwać procedury składowane." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Pozwól tworzyć nowe bazy danych i tabele." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Pozwól tworzyć procedury składowane." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Pozwól tworzyć nowe tabele." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Pozwala tworzyć tabele tymczasowe." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Pozwól tworzyć, usuwać i zmieniać nazwy kont użytkowników." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Pozwól tworzyć widoki." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Pozwól usuwać dane." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Pozwól usuwać bazy danych i tabele." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Pozwól usuwać tabele." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Pozwól ustawiać zdarzenia w harmonogramie zdarzeń" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Pozwól wykonywać procedury składowane." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Pozwól importować i eksportować dane z/do plików." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -9246,17 +9373,17 @@ msgstr "" "uprawnień." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Pozwól tworzyć i usuwać indeksy." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Pozwól dodawać i zamieniać dane." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Pozwól blokować tabele dla aktualnego wątku." @@ -9287,54 +9414,54 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Ogranicz liczbę jednoczesnych połączeń, które może użytkownik." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Pozwól oglądać procesy wszystkich użytkowników" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Nie ma żadnych skutków w tej wersji MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Pozwól przeładowywać ustawienia serwera i opróżniać pamięć podręczną serwera." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Nadaj użytkownikowi prawo, by zapytać gdzie są serwery podrzędne / nadrzędne." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Potrzebne dla replikacji serwera podrzędnego." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Pozwól czytać dane." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Daj dostęp do pełnej listy baz danych." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Pozwól wykonywać zapytania SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Pozwól wyłączyć serwer." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9345,45 +9472,45 @@ msgstr "" "ustawianie zmiennych globalnych czy unicestwianie wątków innych użytkowników." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Pozwól tworzyć i usuwać wyzwalacze." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Pozwól zmieniać dane." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Brak uprawnień." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Brak" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Uprawnienia specyficzne dla tabel" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Uwaga: Uprawnienia MySQL są oznaczone w języku angielskim " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administracja" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globalne uprawnienia" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Uprawnienia specyficzne dla baz danych" @@ -9403,7 +9530,7 @@ msgstr "Dane użytkownika" msgid "Do not change the password" msgstr "Nie zmieniaj hasła" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9454,7 +9581,7 @@ msgstr "Wybrani użytkownicy zostali pomyślnie usunięci." msgid "The privileges were reloaded successfully." msgstr "Uprawnienia zostały pomyślnie przeładowane." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Edytuj uprawnienia" @@ -9462,35 +9589,35 @@ msgstr "Edytuj uprawnienia" msgid "Revoke" msgstr "Cofnij" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Dowolny" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Opis użytkownika" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Nadawanie" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Usuń zaznaczonych użytkowników" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Cofnij wszystkie aktywne uprawnienia użytkownikom, a następnie usuń ich." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9503,100 +9630,100 @@ msgstr "" "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Uprawnienia specyficzne dla kolumn" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Dodaj uprawnienia dla następującej bazy danych" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Aby użyć symboli wieloznacznych _ i % w znaczeniu dosłownym, należy je " "poprzedzić znakiem \\ " -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Dodaj uprawnienia dla następującej tabeli" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Zmień dane użytkownika / Kopiuj użytkownika" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Utwórz nowego użytkownika z takimi samymi uprawnieniami i …" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "… pozostaw starego." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "… usuń starego z tabel użytkowników." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "… odbierz wszystkie aktywne uprawnienia staremu, a następnie go usuń." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " … usuń starego z tabel użytkowników, a następnie przeładuj uprawnienia." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Baza danych dla użytkownika" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Brak" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Utwórz bazę danych z taką samą nazwą i przyznaj wszystkie uprawnienia" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Przyznaj wszystkie uprawienia do baz danych o nazwach pasujących do maski " "(nazwaużytkownika_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Przyznanie wszystkich uprawnień do bazy danych "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Użytkownicy mający dostęp do "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globalnie" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "specyficzne dla bazy danych" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "znak wieloznaczny" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10937,115 +11064,115 @@ msgstr[0] "Minuta" msgstr[1] "Minuta" msgstr[2] "Minuta" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Nie można nawiązać połączenia z serwerem źródłowym" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Nie można nawiązać połączenia z serwerem docelowym" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Baza danych '%s' nie istnieje." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Synchronizacja struktury" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Synchronizacja danych" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "nie występuje" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Różnica w strukturze" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Różnica danych" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Dodaj kolumnę(y)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Usuń kolumnę(y)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Modyfikuj kolumnę(y)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Usuń indeks(y)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Dołącz indeks(y)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Zaktualizuj rekord(y)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Dodaj rekord(y)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Czy chcesz usunąć wszystkie poprzednie rekordy z tabel docelowych?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Zatwierdź wybrane zmiany" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Synchronizuj bazy danych" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" "Wybrane tabele docelowe zostały zsynchronizowane z tabelami źródłowymi." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Docelowa baza danych została zsynchronizowana ze źródłową" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "Zapytania SQL" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Niezabezpieczone połączenie" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, fuzzy, php-format #| msgid "Configuration" msgid "Configuration: %s" msgstr "Konfiguracja" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Gniazdo" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11444,36 +11571,36 @@ msgstr "Klucz jest za krótki, powinien mieć co najmniej 8 znaków." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Klucz powinien zawierać znaki alfanumeryczne [em]i[/em] i specjalne." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Identyfikator wstawionego rekordu: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Wyświetlany jest kod PHP." -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Wyświetlane jest zapytanie SQL." -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Sprawdź poprawność SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemy z indeksami tabeli `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Nazwa" @@ -11482,65 +11609,65 @@ msgstr "Nazwa" msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s została pomyślnie zmodyfikowana" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "To pole może nie dać się edytować
z powodu swojej długości " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Usuń odołanie do repozytorium BLOBów" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binarne - nie do edycji " -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Prześlij do repozytorium BLOBów" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Dodaj jako nowy rekord" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 #, fuzzy msgid "Show insert query" msgstr "Wyświetlane jest zapytanie SQL." -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "a następnie" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Wróć" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Dodaj nowy rekord" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Powrót do tej strony" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Edytuj następny rekord" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Klawisz TAB przemieszcza pomiędzy wartościami, CTRL+strzałka przenosi w " "dowolne miejsce" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11630,53 +11757,49 @@ msgstr "Tabela %1$s została utworzona." msgid "View dump (schema) of table" msgstr "Zrzut tabeli" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Wyświetlaj wybór serwerów" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Dodaj/usuń pola" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- brak -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Liczba plików dziennika" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Zapisz jako plik" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11910,25 +12033,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Wykonaj \"zapytanie przez przykład\" (znak globalny: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Wybór pól (co najmniej jedno):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj warunki przeszukiwania (warunek dla \"WHERE\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "rekordów na stronie" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Kolejność wyświetlania:" @@ -13592,9 +13715,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Utwórz użytkownika" -#~ msgid "Add a new User" -#~ msgstr "Dodaj nowego użytkownika" - #~ msgid "Show table row links on left side" #~ msgstr "Pokaż logo w lewej ramce" diff --git a/po/pt.po b/po/pt.po index ac08571a18..c91ab367fa 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-13 19:21+0200\n" "Last-Translator: \n" "Language-Team: portuguese \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Mostrar tudo" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgstr "" "navegador encontram-se definidas para não permitir actualizações entre " "janelas." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Pesquisar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "Pesquisar" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "Comentários da tabela" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -156,8 +157,8 @@ msgstr "Coluna" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -168,7 +169,7 @@ msgstr "Tipo" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -211,10 +212,10 @@ msgstr "Comentários" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Não" @@ -233,9 +234,9 @@ msgstr "Não" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -336,7 +337,7 @@ msgstr "Mudar para a Base de Dados copiada" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -361,15 +362,15 @@ msgstr "Editar ou exporta o esquema relacional (schema)" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -429,19 +430,19 @@ msgstr "Ordenação" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Ascendente" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Descendente" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Mostrar" @@ -462,8 +463,8 @@ msgid "Del" msgstr "Elim." #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Ou" @@ -492,7 +493,7 @@ msgstr "Usar Tabelas" msgid "SQL query on database %s:" msgstr "Comando SQL na base de dados %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Executar Comando SQL" @@ -531,8 +532,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultado na tabela %s" msgstr[1] "%s resultados na tabela %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Visualizar" @@ -543,7 +544,7 @@ msgid "Delete the matches for the %s table?" msgstr "Apagar os semelhantes para a %s tabela?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -614,7 +615,7 @@ msgstr "Detecção de Alterações está activa." msgid "Tracking is not active." msgstr "Detecção de Alterações está desactivada." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -645,22 +646,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o storage engine por defeito neste MySQL server." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Com os seleccionados:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Todos" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Nenhum" @@ -668,10 +669,10 @@ msgstr "Nenhum" msgid "Check tables having overhead" msgstr "Verificar tabelas com overhead" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -679,17 +680,17 @@ msgid "Export" msgstr "Exportar" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Vista de impressão" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Limpa" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -739,9 +740,9 @@ msgstr "Tabelas em tracking" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Base de Dados" @@ -760,15 +761,15 @@ msgstr "Actualizado" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Estado" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Acções" @@ -821,7 +822,7 @@ msgstr "Introduza cada valor num campo separado." msgid "+ Restart insertion and add a new value" msgstr "+ Reiniciar inserção e adicionar um novo valor" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -856,6 +857,92 @@ msgstr "O servidor web não tem permissões para gravar o ficheiro %s." msgid "Dump has been saved to file %s." msgstr "O Dump foi gravado para o ficheiro %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Valores para a coluna \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +msgid "Add a point" +msgstr "Adiciona novo campo" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Linhas terminadas por" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Acrescenta um utilizador" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Acrescenta um utilizador" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +msgid "Add a polygon" +msgstr "Adiciona novo campo" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Acrescenta um utilizador" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -908,7 +995,7 @@ msgstr "Marcador apagado com sucesso." msgid "Showing bookmark" msgstr "Mostrando Marcador" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" @@ -936,7 +1023,7 @@ msgstr "" "incremente os tempos de limite de php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -962,15 +1049,15 @@ msgstr "Clique para seleccionar" msgid "Click to unselect" msgstr "Clique para deseleccionar" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Os comandos \"DROP DATABASE\" estão inibidos." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Confirma : " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Estará prestes a DESTRUIR uma base de dados completa!" @@ -1037,8 +1124,8 @@ msgid "The passwords aren't the same!" msgstr "" "As palavras-passe são diferentes!\\nLembre-se de confirmar a palavra-passe!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Adicionar utilizador" @@ -1058,8 +1145,8 @@ msgid "Close" msgstr "Fechar" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1098,12 +1185,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1190,12 +1277,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1296,7 +1383,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nenhum" @@ -1693,8 +1780,8 @@ msgstr "Mostrar Caixa do query" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Muda" @@ -1706,8 +1793,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Guarda" @@ -1719,7 +1806,7 @@ msgstr "Esconder critérios de buca" msgid "Show search criteria" msgstr "Mostrar critérios de busca" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1763,112 +1850,120 @@ msgstr "Adicionar/Remover Colunas" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignora" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy msgid "Add columns" msgstr "Adiciona novo campo" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Seleccione chave de referencia" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Seleccione Foreign Key" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Por favor seleccione a chave primária ou a chave única " -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Escolha campo para mostrar" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Clique para seleccionar" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy msgid "Go to link" msgstr "Sem bases de dados" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Alterar a palavra-passe" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 #, fuzzy msgid "Generate" msgstr "Gerado por" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Alterar a palavra-passe" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Seg" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1876,30 +1971,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy msgid ", latest stable version:" msgstr "Versão do servidor" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Sem bases de dados" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy msgid "Done" msgstr "Dados" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1907,96 +2002,96 @@ msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binário " -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Abr" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mai" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ago" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Out" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2004,78 +2099,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dez" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dom" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Seg" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Ter" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Sex" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2083,105 +2178,110 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "em uso" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "por segundo" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2286,13 +2386,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Base de Dados" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Erro" @@ -2420,7 +2520,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2590,7 +2690,7 @@ msgstr "Tabelas" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Dados" @@ -2658,7 +2758,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Servidor" @@ -2723,99 +2823,99 @@ msgstr "Comando SQL" msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Saltar Explicar SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Saltar a validação SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d-%B-%Y às %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2823,7 +2923,7 @@ msgctxt "First page" msgid "Begin" msgstr "Inicio" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2832,7 +2932,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2841,7 +2941,7 @@ msgctxt "Next page" msgid "Next" msgstr "Próximo" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2849,36 +2949,36 @@ msgctxt "Last page" msgid "End" msgstr "Fim" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Saltar para a Base de Dados "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Clique para seleccionar" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Estrutura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2886,38 +2986,38 @@ msgstr "Estrutura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Insere" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operações" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Directoria no servidor web para fazer upload" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 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/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3095,7 +3195,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Limpa" @@ -3352,7 +3452,7 @@ msgid "Character set of the file" msgstr "Configurar o Mapa de Caracteres do ficheiro:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formato" @@ -4968,7 +5068,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Palavra-passe" @@ -5250,8 +5350,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilégios" @@ -5271,7 +5371,7 @@ msgstr "Enviado" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5330,7 +5430,7 @@ msgid "Create" msgstr "Criar" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Sem Privilégios" @@ -5676,12 +5776,12 @@ msgstr "Ordenar por chave" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Operações" @@ -5717,8 +5817,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Esconder" @@ -5727,10 +5827,6 @@ msgstr "Esconder" msgid "Browser transformation" msgstr "Transformação do navegador" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5739,60 +5835,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Registo eliminado" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Termina" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "na pesquisa" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Mostrando registos " -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "O Query demorou %01.4f sec" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Vista de impressão (com texto inteiro)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Mostrar o esquema de PDF" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Versão do servidor" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Link não encontrado" @@ -5974,7 +6066,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Ordenação" @@ -6303,7 +6395,7 @@ msgstr "MIME-types disponíveis" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Máquina" @@ -6507,7 +6599,7 @@ msgstr "Tipo de Exportação" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6519,51 +6611,51 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Gerado por" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 #, fuzzy msgid "Go to table" msgstr "Sem bases de dados" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Somente a estrutura" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6614,7 +6706,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6635,6 +6727,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6684,7 +6800,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Sem alterações" @@ -6693,7 +6809,7 @@ msgid "Charset" msgstr "Mapa de Caractere" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binário " @@ -7003,7 +7119,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Nome do Utilizador" @@ -7021,9 +7137,9 @@ msgid "Variable" msgstr "Variável" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valor" @@ -7050,7 +7166,7 @@ msgstr "Qualquer utilizador" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Usar campo de texto" @@ -7238,7 +7354,7 @@ msgid "Returns" msgstr "Opções da tabela" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Tempo" @@ -7389,8 +7505,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funções" @@ -7710,8 +7826,8 @@ msgstr "" msgid "Current Server" msgstr "Servidor" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7734,7 +7850,7 @@ msgstr "Mapas de Caracteres" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Pesquisar na Base de Dados" @@ -7753,7 +7869,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Pesquisar na Base de Dados" @@ -7779,11 +7895,11 @@ msgstr "" msgid "Columns" msgstr "Nome dos Campos" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Marcar este comando SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Deixar todos os utilizadores acederem a este marcador" @@ -7811,7 +7927,7 @@ msgstr "Ver apenas" msgid "Location of the text file" msgstr "Localização do arquivo de texto" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "Directoria no servidor web para fazer upload" @@ -8014,24 +8130,30 @@ msgid "+ Add a value" msgstr "Acrescenta um utilizador" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 #, fuzzy msgid "Operator" msgstr "Operações" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Pesquisar" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Insere" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8161,8 +8283,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8190,8 +8312,8 @@ msgstr "Características gerais de Relação" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Utilizador" @@ -8327,7 +8449,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Sem bases de dados" @@ -8355,7 +8477,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "Criar uma Página nova" @@ -8721,84 +8843,84 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Ver o esquema da base de dados" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "inclui todos os privilégios excepto Conceção - GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Permite alterar a estrutura de tabelas existentes." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Permite criar e apagar indexes." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Permite criar novas Bases de Dados e tabelas." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 #, fuzzy msgid "Allows creating stored routines." msgstr "Permite criar novas tabelas." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Permite criar novas tabelas." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Permite criar tabelas temporárias." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 #, fuzzy msgid "Allows creating new views." msgstr "Permite criar novas tabelas." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Permite apagar dados." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Permite apagar Bases de Dados e tabelas." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Permite apagar Bases de Dados." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 #, fuzzy msgid "Allows executing stored routines." msgstr "Permite criar novas tabelas." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Permite importar dados de... e exportar dados para ficheiros." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8806,17 +8928,17 @@ msgstr "" "privilégios." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Permite criar e apagar indexes." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Permite inserir e substituir dados." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8846,52 +8968,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Não tem efeito nesta versão do MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Permite ler dados." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Dá acesso à lista de bases de dados completa." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Permite desligar o servidor." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8899,46 +9021,46 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Permite criar e apagar indexes." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Permite alterar dados." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Sem privilégios." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nenhum" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: os nomes dos privilégios do MySQL são em Inglês " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administração" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Privilégios Globais" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Privilégios específicos da Base de Dados" @@ -8958,7 +9080,7 @@ msgstr "Informação de Login " msgid "Do not change the password" msgstr "Mantendo a palavra-passe " -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9009,7 +9131,7 @@ msgstr "Os utilizadores selecionado foram apagados com sucesso." msgid "The privileges were reloaded successfully." msgstr "O privilégios foram recarregados com sucesso." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Alterar Privilegios" @@ -9017,35 +9139,35 @@ msgstr "Alterar Privilegios" msgid "Revoke" msgstr "Anula" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Todos" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Conceder/Grant" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Remover utilizadores seleccionados" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios dos utilizadores e apagá-los a seguir." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" "Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9058,49 +9180,49 @@ msgstr "" "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "O utilizador selecionado não se encontra na tabela de privilégios." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Privilégios específicos da Coluna" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Adicionar privilégios na base de dados seguinte" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Todos privilégios na tabela seguinte" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Mudar a informação de login / Copiar Utilizador" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Criar um novo utilizador com os mesmo privilégios e ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... manter o antigo." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... apagar o antigo das tabelas do utilizador." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... revogar todos os privilégios activos do antigo e a seguir apagá-lo." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9108,48 +9230,48 @@ msgstr "" " ... apagar o antigo das tabelas do utilizador e depois recarregue os " "privilégios." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nenhum" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verificar Privilégios para a Base de Dados "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Utilizadores que tem acesso a "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "Especifico da Base de Dados" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10327,114 +10449,114 @@ msgid_plural "%d minutes" msgstr[0] "em uso" msgstr[1] "em uso" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 #, fuzzy msgid "Structure Difference" msgstr "Somente estrutura" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "Comando SQL" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Ligações" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10731,37 +10853,37 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Etiqueta" @@ -10770,63 +10892,63 @@ msgstr "Etiqueta" msgid "Table %1$s has been altered successfully" msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Devido ao seu tamanho,
este campo pode não ser editável " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binário - não editar " -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Insere como novo registo" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Voltar atrás" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Inserir novo registo" -#: tbl_change.php:1005 +#: tbl_change.php:1045 #, fuzzy msgid "Go back to this page" msgstr "Voltar atrás" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Editar próxima coluna" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10909,49 +11031,45 @@ msgstr "A tabela %s foi eliminada" msgid "View dump (schema) of table" msgstr "Ver o esquema da tabela" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Adicionar/Remover Campos" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Total" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "envia" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11186,25 +11304,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Seleccione os campos (no mínimo 1)" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Condição de Pesquisa (Complemento da cláusula \"where\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Número de registos por página" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Ordem de visualização:" @@ -12771,6 +12889,3 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Criar Utilizador" - -#~ msgid "Add a new User" -#~ msgstr "Acrescenta um utilizador" diff --git a/po/pt_BR.po b/po/pt_BR.po index 5ca4d959b5..534bb3c83c 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-07-30 02:20+0200\n" "Last-Translator: Julio Cesar Zuppa \n" "Language-Team: brazilian_portuguese \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Mostrar todos" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ 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:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Procurar" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Procurar" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Comentários da tabela" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Coluna" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Tipo" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Comentários" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Não" @@ -232,9 +233,9 @@ msgstr "Não" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Mudar para o Banco de Dados copiado" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Editar ou exportar esquema relacional" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -428,19 +429,19 @@ msgstr "Ordenar" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Ascendente" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Descendente" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Mostrar" @@ -461,8 +462,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Ou" @@ -491,7 +492,7 @@ msgstr "Usar tabelas" msgid "SQL query on database %s:" msgstr "Consulta SQL ao Banco de Dados %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Enviar consulta SQL" @@ -530,8 +531,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s resultado dentro da tabela %s" msgstr[1] "%s resultados dentro da tabela %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Visualizar" @@ -542,7 +543,7 @@ msgid "Delete the matches for the %s table?" msgstr "Excluir correspondentes para a tabela %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -611,7 +612,7 @@ msgstr "Rastreamento está ativo." msgid "Tracking is not active." msgstr "Rastreamento não está ativo." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -641,22 +642,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s é o mecanismo de armazenamento padrão neste servidor MySQL." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Com marcados:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Marcar todos" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Desmarcar todos" @@ -664,10 +665,10 @@ msgstr "Desmarcar todos" msgid "Check tables having overhead" msgstr "Verificar sobre-carga" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -675,17 +676,17 @@ msgid "Export" msgstr "Exportar" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Visualização para impressão" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Limpar" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -733,9 +734,9 @@ msgstr "Tabelas rastreadas" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Banco de Dados" @@ -754,15 +755,15 @@ msgstr "Atualizado" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Ação" @@ -815,7 +816,7 @@ msgstr "Digite cada valor em um campo separado" msgid "+ Restart insertion and add a new value" msgstr "+ Reiniciar a inserção e adicionar um novo valor" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Saída" @@ -850,6 +851,95 @@ msgstr "O servidor web não tem permissão para salvar o arquivo %s." msgid "Dump has been saved to file %s." msgstr "Dump foi salvo no arquivo %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Valores do campo \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Geometria" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add index" +msgid "Add a point" +msgstr "Adicionar índice" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Linhas terminadas por" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Adicionar novo usuário" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Adicionar novo usuário" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Adicionar coluna" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Geometria" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -899,7 +989,7 @@ msgstr "O marcador foi removido." msgid "Showing bookmark" msgstr "Exibindo marcadores" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Marcador %s criado" @@ -927,7 +1017,7 @@ msgstr "" "aumente o tempo limite do PHP." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -952,15 +1042,15 @@ msgstr "Clique para selecionar" msgid "Click to unselect" msgstr "Clique para desmarcar" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "O comando \"DROP DATABASE\" está desabilitado." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Você realmente deseja" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Você está prestes à DESTRUIR completamente o Banco de Dados!" @@ -1024,8 +1114,8 @@ msgstr "A senha está em branco!" msgid "The passwords aren't the same!" msgstr "As senhas não são iguais!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Adicionar usuário" @@ -1043,8 +1133,8 @@ msgid "Close" msgstr "Fechar" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1080,12 +1170,12 @@ msgid "Other" msgstr "Outro" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1172,12 +1262,12 @@ msgid "System swap" msgstr "Área de Troca (Swap) do sistema" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1290,7 +1380,7 @@ msgstr "Por favor adicione no mínimo uma variável à série" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nenhum" @@ -1679,8 +1769,8 @@ msgstr "Mostrar caixa de consulta" msgid "No rows selected" msgstr "Nenhum registro selecionado" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Alterar" @@ -1694,8 +1784,8 @@ msgstr "Tempo máximo de execução" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Salvar" @@ -1707,7 +1797,7 @@ msgstr "Ocultar critério de pesquisa" msgid "Show search criteria" msgstr "Exibir critério de pesquisa" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1751,34 +1841,42 @@ msgstr "Adicionar/Remover colunas" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Copiar" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "Adicionar coluna" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Seleciona chave referenciada" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Selecionar Chave Estrangeira" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Por favor, selecione uma chave primária ou uma chave única" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Marque a coluna para exibir" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1786,71 +1884,71 @@ msgstr "" "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:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Adicionar uma opção para a coluna" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Arraste para reordenar" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Clique para selecionar" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Clique para marcar/desmarcar" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Clique na seta
para alternar a visibilidade da coluna" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy msgid "Go to link" msgstr "Sem bases" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Gerar senha" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Gerar" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Alterar senha" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Mais" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1860,27 +1958,27 @@ msgstr "" "atualização. A nova versão é %s, lançada em %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ". última versão estável:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "até à data" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Concluído" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1888,149 +1986,149 @@ msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Hoje" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Janeiro" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Fevereiro" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Março" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Abril" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Maio" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Junho" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Julho" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Agosto" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Setembro" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Outubro" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Novembro" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dez" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Segunda" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Sexta" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2038,101 +2136,106 @@ msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Sem" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Hora" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minuto" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Segundo" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Tamanho da fonte" @@ -2244,13 +2347,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Banco de Dados" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Erro" @@ -2379,7 +2482,7 @@ msgstr "Tema %s não encontrado!" msgid "Theme path not found for theme %s!" msgstr "Encontrado caminho inválido para o tema %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2553,7 +2656,7 @@ msgstr "Tabelas" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Dados" @@ -2622,7 +2725,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Servidor" @@ -2687,101 +2790,101 @@ msgstr "consulta SQL" msgid "MySQL said: " msgstr "Mensagens do MySQL : " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Falha ao conectar ao validador SQL!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Explicar SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Pular Explicação SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "sem código PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Criar código PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Atualizar" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Pular validação SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Validar SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Na linha de edição da presente consulta" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "na linha" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Perfil" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Dom" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d/%m/%Y às %Hh%Mmin" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dias, %s horas, %s minutos e %s segundos" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rotinas" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2789,7 +2892,7 @@ msgctxt "First page" msgid "Begin" msgstr "Início" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2798,7 +2901,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2807,7 +2910,7 @@ msgctxt "Next page" msgid "Next" msgstr "Próximo" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2815,34 +2918,34 @@ msgctxt "Last page" msgid "End" msgstr "Fim" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Ir para o Banco de Dados "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Estrutura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2850,38 +2953,38 @@ msgstr "Estrutura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserir" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operações" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir do diretório de upload do servidor %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "" "O diretório que você especificou para subir arquivos não foi encontrado" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Não existem arquivos para fazer upload" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Executar" @@ -3048,7 +3151,7 @@ msgstr "Permitir a todos os usuários alterar esse valor" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Restaurar" @@ -3322,7 +3425,7 @@ msgid "Character set of the file" msgstr "Conjunto de caracteres do arquivo" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formato" @@ -4905,7 +5008,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Senha" @@ -5189,8 +5292,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilégios" @@ -5209,7 +5312,7 @@ msgstr "Eventos" msgid "Triggers" msgstr "Gatilhos" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5272,7 +5375,7 @@ msgid "Create" msgstr "Criar" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Sem privilégios" @@ -5615,12 +5718,12 @@ msgstr "Ordenar pela chave" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Opções" @@ -5655,8 +5758,8 @@ msgstr "Mostrar conteúdo binário" msgid "Show BLOB contents" msgstr "Exibir conteúdo BLOB" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Ocultar" @@ -5665,10 +5768,6 @@ msgstr "Ocultar" msgid "Browser transformation" msgstr "Transformações do navegador" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Geometria" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5677,59 +5776,55 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Copiar" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Registro eliminado" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Matar" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "na consulta" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Mostrando registros " -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Consulta levou %01.4f segundos" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Ver impressão (com textos completos)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Exibir gráfico" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Visualisar dados GIS" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Criar usuário" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Link não encontrado" @@ -5929,7 +6024,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Porta" @@ -6255,7 +6350,7 @@ msgstr "MIME-type disponíveis" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Servidor" @@ -6457,7 +6552,7 @@ msgstr "Tipo de exportação" msgid "Open new phpMyAdmin window" msgstr "Abrir nova janela do phpMyAdmin" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6471,52 +6566,52 @@ msgstr "Resultado SQL" msgid "Generated by" msgstr "Gerado por" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL retornou um conjunto vazio (ex. zero registros)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Sem bases" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "dado faltante para %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 #, fuzzy msgid "Go to table" msgstr "Sem bases" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Somente estrutura" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6568,7 +6663,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Nome da Tabela" @@ -6589,6 +6684,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "Arquivo %s não contém qualquer identificação da chave" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "Modo de compatibilidade SQL" @@ -6640,7 +6761,7 @@ msgstr "" msgid "Add prefix" msgstr "Adicionar índice" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Sem Mudança" @@ -6649,7 +6770,7 @@ msgid "Charset" msgstr "Conjunto de caracteres" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binário" @@ -6957,7 +7078,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Nome do usuário" @@ -6977,9 +7098,9 @@ msgid "Variable" msgstr "Variáveis" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valor" @@ -7005,7 +7126,7 @@ msgstr "Qualquer usuário" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Usar campo texto" @@ -7200,7 +7321,7 @@ msgid "Returns" msgstr "Tipo de returno" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Tempo" @@ -7357,8 +7478,8 @@ msgstr "Executar rotina" msgid "Routine parameters" msgstr "Rotinas" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Função" @@ -7685,8 +7806,8 @@ msgstr "Linguagem desconhecida: %1$s." msgid "Current Server" msgstr "Servidor" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7708,7 +7829,7 @@ msgstr "Conjuntos de caracteres" msgid "Engines" msgstr "Engines" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Procurar no Banco de Dados" @@ -7727,7 +7848,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Procurar no Banco de Dados" @@ -7753,11 +7874,11 @@ msgstr "Limpar" msgid "Columns" msgstr "Nome das colunas" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Gravar essa consulta SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Deixar qualquer usuário acessar esse marcador" @@ -7785,7 +7906,7 @@ msgstr "Apenas visualizar" msgid "Location of the text file" msgstr "Localização do arquivo texto" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "Servidor web subiu o diretório" @@ -7991,23 +8112,29 @@ msgid "+ Add a value" msgstr "+ Adicionar um valor" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operador" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Procurar" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Inserir" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8207,8 +8334,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Nenhum arquivo encontrado dentro do arquivo ZIP!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Erro no arquivo ZIP:" @@ -8236,8 +8363,8 @@ msgstr "Recursos de relações gerais" msgid "Protocol version" msgstr "Versão do Protocolo" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Usuário" @@ -8383,7 +8510,7 @@ msgstr "" "Servidor rodando com 'Suhosin'. Verifique a %sdocumentation%s para possíveis " "razões do erro." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Sem bases" @@ -8412,7 +8539,7 @@ msgstr "Exibir/Ocultar menu da esquerda" msgid "Save position" msgstr "Salvar posição" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Criar tabela" @@ -8784,80 +8911,80 @@ msgstr "Storage Engines" msgid "View dump (schema) of databases" msgstr "Ver dump (esquema) dos Bancos de Dados" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Incluir todos os privilégios, exceto GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Permitir alterar a estrutura das tabelas existentes." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Permitir alterar e apagar stored routines." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Permitir criar novas tabelas e Banco de Dados." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Permitir criar stored routines." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Permitir criar novas tabelas." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Permitir criar tabelas temporárias." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permitir criar, apagar e renomear contas dos usuários." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Permitir criar novas visões." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Permitir apagar dados." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Permitir eliminar Banco de Dados e tabelas." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Permitir eliminar tabelas." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Permitir iniciar eventos no cronograma de eventos" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Permitir executar stored routines." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Permitir importar dados e exportar dados em arquivos." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8865,17 +8992,17 @@ msgstr "" "privilégios." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Permitir criar e eliminar índices." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Permitir inserir e substituir dados." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Permitir bloquear tabelas para a processo atual." @@ -8905,54 +9032,54 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limitar o número de conexões simultâneas que o usuário pode ter." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Permitir visualizar processos de todos os usuários" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Sem efeitos nesta versão do MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permitir recarregar configurações do servidor e descarregar o cache do " "servidor." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permitir que o usuário pergunte onde estão os escravos / mestres." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Precisar dos escravos de replicação." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Permitir leitura dos dados." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Permitir acesso completo à lista de Bancos de Dados." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permitir executar consultas SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Permitir desligar o servidor." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8963,45 +9090,45 @@ msgstr "" "processos de outros usuários." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Permitir criar e e largar em cadeia" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Permitir modificar dados." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Sem privilégios." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nenhum" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Privilégios específicos da tabela" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Nota: nomes de privilégios do MySQL são expressos em inglês " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administração" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Privilégios globais" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Privilégios específicos do Banco de Dados" @@ -9021,7 +9148,7 @@ msgstr "Informação de login" msgid "Do not change the password" msgstr "Não mudar a senha" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9072,7 +9199,7 @@ msgstr "Os usuários selecionados foram apagados com sucesso." msgid "The privileges were reloaded successfully." msgstr "Os privilégios foram recarregados com sucesso." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Editar Privilégios" @@ -9080,34 +9207,34 @@ msgstr "Editar Privilégios" msgid "Revoke" msgstr "Revogar" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Qualquer" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Avaliação dos usuários" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Conceder/Grant" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Remover os usuários selecionados" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Revogar todos os privilégios ativos dos usuarios e depois apagar eles." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9120,50 +9247,50 @@ msgstr "" "privilégios que o servidor usa se alterações manuais forem feitas nele. " "Neste caso, você deve usar %sRELOAD PRIVILEGES%s antes de continuar.." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "O usuário selecionado não foi encontrado na tabela de privilégios." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Privilégios específicos da coluna" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Adicionar privilégios nas seguintes Banco de Dados" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Coringas _ e % precisam ser precedidos com uma \\ para serem usados " "literalmente" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Adicionar privilégios nas seguintes tabelas" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Mudar informações de login / Copiar usuário" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Criar um novo usuário com os mesmos privilégios e ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... manter o antigo." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... apagar o antigo da tabela de usuários." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... revogar todos privilégios do usuário antigo e depois apagar ele." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9171,48 +9298,48 @@ msgstr "" " ... apagar o antigo da tabela de usuários e depois recarregar os " "privilégios." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Banco de Dados para usuário" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nenhum" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Criar Banco de Dados com o mesmo nome e conceder todos os privilégios" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Conceder todos os privilégios no banco de dados "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Usuários que têm acesso à "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "Específico do Banco de Dados" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "coringa" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10532,115 +10659,115 @@ msgid_plural "%d minutes" msgstr[0] "Minuto" msgstr[1] "Minuto" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "O banco de dados '%s' não existe." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 #, fuzzy msgid "Structure Difference" msgstr "Estrutura para visualizar" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 #, fuzzy msgid "Data Difference" msgstr "Estrutura para visualizar" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Adicionar coluna(s)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Remover coluna(s)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Alterar coluna(s)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Remover índice(s)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Aplicar índice(s)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Atualizar linha(s)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Inserir linha(s)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Aplicar mudanças selecionadas" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Sincronizar Bando de Dados" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Consultas SQL" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Inserir manualmente" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Conexão atual" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, fuzzy, php-format #| msgid "Configuration" msgid "Configuration: %s" msgstr "Configuração" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10948,34 +11075,34 @@ msgstr "A chave é muito curta, deveria ter pelo menos 8 caracteres." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usando marcador \"%s\" como padrão." -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Exibindo como código PHP" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas com o índice da tabela `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Nome" @@ -10984,63 +11111,63 @@ msgstr "Nome" msgid "Table %1$s has been altered successfully" msgstr "A tabela %1$s foi alterada com sucesso" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "Por causa da sua largura,
esse campo pode não ser editável" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Remover referência a repositório BLOB" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binário - não edite" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Inserir como um novo registro" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Inserir como uma linha nova e ignorar erros" -#: tbl_change.php:985 +#: tbl_change.php:1025 #, fuzzy msgid "Show insert query" msgstr "Exibindo consulta SQL" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "e então" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Retornar" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Inserir novo registro" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Voltar para esta página" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Editar próximo registro" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Usar a tecla TAB para se mover de valor em valor, ou CTRL+setas para mover " "em qualquer direção" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11134,51 +11261,47 @@ msgstr "A tabela %1$s foi criada." msgid "View dump (schema) of table" msgstr "Ver o esquema da tabela" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "Mostrar visualização GIS" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Largura" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Altura" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Adicionar/Remover colunas" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- nenhum -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Total" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Redesenhar" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Salvar como arquivo" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11409,25 +11532,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "Restrição de chave estrangeira" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Faça uma \"consulta por exemplo\" (coringa: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Selecionar os campos (no mínimo 1)" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Condição de pesquisa (complemento da cláusula \"onde\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "registros por página" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Ordenado por:" @@ -13087,6 +13210,3 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Criar usuário" - -#~ msgid "Add a new User" -#~ msgstr "Adicionar novo usuário" diff --git a/po/ro.po b/po/ro.po index 9918429f9d..05d5f6aa41 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-07-22 02:28+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: romanian \n" @@ -15,13 +15,13 @@ msgstr "" "20)) ? 1 : 2);;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Arată toate" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgstr "" "închisă, sau fereastra-părinte blochează ferestrele din cauza securității " "sistemului." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Caută" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "Caută" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "Comentarii tabel" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -158,8 +159,8 @@ msgstr "Denumirile coloanelor" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -170,7 +171,7 @@ msgstr "Tip" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -213,10 +214,10 @@ msgstr "Comentarii" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Nu" @@ -235,9 +236,9 @@ msgstr "Nu" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -341,7 +342,7 @@ msgstr "Schimbă la tabela copiată" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -371,15 +372,15 @@ msgstr "Schema relațională" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabel" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -441,19 +442,19 @@ msgstr "Sortare" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Crescătoare" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Descrescător" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Afișează" @@ -474,8 +475,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Sau" @@ -508,7 +509,7 @@ msgstr "Utilizare tabele" msgid "SQL query on database %s:" msgstr "Comandă SQL pe baza de date %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Trimite comanda" @@ -549,8 +550,8 @@ msgstr[0] "%s rezultat(e) în interiorul tabelului %s" msgstr[1] "%s rezultat(e) în interiorul tabelului %s" msgstr[2] "%s rezultat(e) în interiorul tabelului %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Navigare" @@ -561,7 +562,7 @@ msgid "Delete the matches for the %s table?" msgstr "Șterge datele urmărite din acest tabel" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -638,7 +639,7 @@ msgstr "Monitorizarea este activată" msgid "Tracking is not active." msgstr "Monitorizarea nu este activată" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -667,22 +668,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Cele bifate:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Marchează toate" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Demarchează toate" @@ -690,10 +691,10 @@ msgstr "Demarchează toate" msgid "Check tables having overhead" msgstr "Verificare depășit" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -701,17 +702,17 @@ msgid "Export" msgstr "Exportă" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Vizualizare imprimare" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Golește" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -765,9 +766,9 @@ msgstr "Tabelele urmărite" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Baza de date" @@ -786,15 +787,15 @@ msgstr "Actualizat(ă)" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Stare" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Acțiune" @@ -854,7 +855,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -889,6 +890,94 @@ msgstr "Serverul web nu are drepturile necesare pentru a salva fișierul %s." msgid "Dump has been saved to file %s." msgstr "Copia a fost salvată în fișierul %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a point" +msgstr "Adaugă %s cîmp(uri)" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Linii terminate de" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Adaugă un utilizator nou" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Adaugă un utilizator nou" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "Adaugă %s cîmp(uri)" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "Adaugă un server nou" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -939,7 +1028,7 @@ msgstr "Eticheta a fost ștearsă." msgid "Showing bookmark" msgstr "Afișînd semn de carte" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Semnul de carte %s a fost creat" @@ -966,7 +1055,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -992,15 +1081,15 @@ msgstr "Click pentru a selecta" msgid "Click to unselect" msgstr "Click pentru a deselecta" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Comenzile \"DROP DATABASE\" sînt dezactivate." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Sigur doriți să " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Sînteți pe cale să DISTRUGEȚI o întreagă bază de date!" @@ -1069,8 +1158,8 @@ msgstr "Parola este goală!" msgid "The passwords aren't the same!" msgstr "Parolele nu corespund!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1094,8 +1183,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1134,12 +1223,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1231,12 +1320,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiO" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiO" @@ -1343,7 +1432,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Nici unul(a)" @@ -1759,8 +1848,8 @@ msgstr "Comanda SQL" msgid "No rows selected" msgstr "Nu e nici un rînd selectat" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Schimbare" @@ -1772,8 +1861,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Salveaza" @@ -1787,7 +1876,7 @@ msgstr "Comanda SQL" msgid "Show search criteria" msgstr "Comanda SQL" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1831,112 +1920,120 @@ msgstr "Adaugă/șterge coloane" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignoră" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Adaugă %s cîmp(uri)" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Alegere cheie referențiată" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Alegeți cheia străină" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Vă rugăm să alegeți cheia primară sau o cheie unică" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Selectează un cîmp" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Click pentru a selecta" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy msgid "Go to link" msgstr "Nu sînt baze de date" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generează parolă" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generează" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Schimbare parolă" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Lun" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1946,30 +2043,30 @@ msgstr "" "procesul de actualizare. Noua versiune este %s, publicată în data de %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "Ultima versiune" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Nu sînt baze de date" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Gata" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1977,84 +2074,84 @@ msgid "Next" msgstr "Următorul" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Total" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Ianuarie" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Februarie" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Martie" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Aprilie" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mai" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Iunie" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Iulie" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Septembrie" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Octombrie" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Noiembrie" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Decembrie" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2062,78 +2159,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dec" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Dum" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Lun" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Mar" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Vin" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2141,107 +2238,112 @@ msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sâm" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Dum" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Lun" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Mar" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mie" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Joi" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Vin" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sâm" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Wiki" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "în folosință" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "pe secundă" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Dimensiune font" @@ -2349,13 +2451,13 @@ msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters." #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Baze de date" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Eroare" @@ -2494,7 +2596,7 @@ msgstr "Tema %s nu a fost găsită!" msgid "Theme path not found for theme %s!" msgstr "Calea temei nu a fost găsită pentru tema %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2670,7 +2772,7 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Date" @@ -2745,7 +2847,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2810,104 +2912,104 @@ msgstr "Comanda SQL" msgid "MySQL said: " msgstr "MySQL zice: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 #, fuzzy msgid "Failed to connect to SQL validator!" msgstr "Comprimă conexiunea la serverul MySQL" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Explică SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Sari peste explicarea SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "fără cod PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Creează cod PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Reîncarcă" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Sari peste validarea SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Validează SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Motoare" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Creare profil" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "octeți" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiO" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiO" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiO" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiO" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Dum" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y la %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s zile, %s ore, %s minute și %s secunde" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutine" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2915,7 +3017,7 @@ msgctxt "First page" msgid "Begin" msgstr "Începe" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2924,7 +3026,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Anterior" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2933,7 +3035,7 @@ msgctxt "Next page" msgid "Next" msgstr "Următorul" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2941,36 +3043,36 @@ msgctxt "Last page" msgid "End" msgstr "Sfîrșit" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Sari la baza de date "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Click pentru a selecta" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Structură" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2978,38 +3080,38 @@ msgstr "Structură" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Inserare" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operații" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, 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/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3188,7 +3290,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Resetare" @@ -3449,7 +3551,7 @@ msgid "Character set of the file" msgstr "Setul de caractere al fișierului" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -5081,7 +5183,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Parola" @@ -5370,8 +5472,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Drepturi de acces" @@ -5390,7 +5492,7 @@ msgstr "Evenimente" msgid "Triggers" msgstr "Declanșatori" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5451,7 +5553,7 @@ msgid "Create" msgstr "Creează" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Nu există drepturi de acces" @@ -5822,12 +5924,12 @@ msgstr "Sortare după cheie" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Opțiuni" @@ -5861,8 +5963,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Ascunde" @@ -5871,10 +5973,6 @@ msgstr "Ascunde" msgid "Browser transformation" msgstr "Transformare navigator" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5883,60 +5981,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Linia a fost ștearsă" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Oprește" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "în interogarea" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Afișează înregistrări" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "total" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "comanda a durat %01.4f sec" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Vizualizare listare (împreună cu text)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Arată schema PDF" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Creare relație" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Legatură nevalidă" @@ -6143,7 +6237,7 @@ msgstr "" "a value between 1 and 99. The default is 50." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Sortare" @@ -6503,7 +6597,7 @@ msgstr "Tipuri MIME disponibile" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Gazda" @@ -6707,7 +6801,7 @@ msgstr "Modul de export" msgid "Open new phpMyAdmin window" msgstr "Deschide fereastră phpMyAdmin nouă" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6719,51 +6813,51 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Generat de" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 #, fuzzy msgid "Go to table" msgstr "Nu sînt baze de date" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Numai structura" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6815,7 +6909,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Denumire tabel" @@ -6836,6 +6930,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "File %s does not contain any key id" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6887,7 +7007,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Nici o schimbare" @@ -6896,7 +7016,7 @@ msgid "Charset" msgstr "Set de caractere" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binar" @@ -7203,7 +7323,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Nume utilizator" @@ -7223,9 +7343,9 @@ msgid "Variable" msgstr "Variabil" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Valoare" @@ -7251,7 +7371,7 @@ msgstr "Oricare utilizator" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Utilizare cîmp text" @@ -7445,7 +7565,7 @@ msgid "Returns" msgstr "Tipul întors" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Timp" @@ -7603,8 +7723,8 @@ msgstr "" msgid "Routine parameters" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funcție" @@ -7936,8 +8056,8 @@ msgstr "Limbă necunoscută: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7959,7 +8079,7 @@ msgstr "Seturi de caractere" msgid "Engines" msgstr "Motoare" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Caută în baza de date" @@ -7979,7 +8099,7 @@ msgstr "Server Web" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Caută în baza de date" @@ -8006,11 +8126,11 @@ msgstr "Calendar" msgid "Columns" msgstr "Denumirile coloanelor" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" @@ -8038,7 +8158,7 @@ msgstr "Numai vizualizare" msgid "Location of the text file" msgstr "Locația fișierului textual" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "director de încărcare al serverului Web" @@ -8244,23 +8364,29 @@ msgid "+ Add a value" msgstr "Adaugă un server nou" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Caută printre valori necunoscute" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operand" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Caută" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Inserare" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8466,8 +8592,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Niciun fișier nu a fost găsit în arhiva ZIP!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Eroare în arhiva ZIP:" @@ -8495,8 +8621,8 @@ msgstr "Facilități generale" msgid "Protocol version" msgstr "Versiune protocol" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Utilizator" @@ -8641,7 +8767,7 @@ msgstr "" "Server running with Suhosin. Please refer to %sdocumentation%s for possible " "issues." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Nu sînt baze de date" @@ -8670,7 +8796,7 @@ msgstr "Arată/ascunde meniul stîng" msgid "Save position" msgstr "Salvează poziție" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Creare tabel" @@ -9043,81 +9169,81 @@ msgstr "Motoare de stocare" msgid "View dump (schema) of databases" msgstr "Vizualizarea schemei bazei de date" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Include toate privilegiile, excluzand GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Permite alterarea structurii la tabelele deja existente." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Permite alterarea și aruncarea rutinelor stocate." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Permite crearea de noi baze de date și tabele." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Permite crearea rutinelor stocate." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Permite crearea de noi tabele." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Permite crearea de tabele temporare." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Permite crearea, aruncarea și redenumirea conturilor de utilizator." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Permite crearea noilor viziuni." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Permite stergere de date." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Permite stergerea unei baze de date sau a unor tabele." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Permite aruncarea a unei baze de date." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Permite configurarea evenimentelor pentru planificatorul de evenimente" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Permite executarea rutinelor stocate." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" "Permite importarea datelor in fisiere și exportarea acestora din fisiere." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -9125,17 +9251,17 @@ msgstr "" "de drepturi." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Permite crearea și stergerea indexurilor." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Permite inserarea și înlocuirea datelor." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Permite blocarea tabelelor din firul curent de execuție." @@ -9169,54 +9295,54 @@ msgstr "" "Limitează numărul conexiunilor simultane pe care le poate avea utilizatorul." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Permite vizualizarea proceselor tuturor utilizatorilor" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Nu are efect în această versiune MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Permite reîncărcarea setărilor de server și golirea memoriei cache a " "serverului." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Permite utilizatorului de a interoga locația slave/master." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Necesară pentru „slave replication”." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Permite citirea datelor." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Permite accesul la lista completă a bazelor de date." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Permite executarea interogărilor SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Permite oprirea serverului." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9227,45 +9353,45 @@ msgstr "" "variabilelor globale sau oprirea firelor de execuție a altor utilizatori." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Permite crearea și eliminarea declanșatorilor" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Permite schimbarea datelor." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Fără drepturi." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Nici unul(a)" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Drepturi specifice de tabele" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Important: numele drepturilor de acces MySQL apar în engleză" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administrare" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Privilegii globale" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Drepturi specifice bazei de date" @@ -9287,7 +9413,7 @@ msgstr "Informații de autentificare" msgid "Do not change the password" msgstr "Nu schimbați parola" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9338,7 +9464,7 @@ msgstr "Utilizatorii selectați au fost eliminați." msgid "The privileges were reloaded successfully." msgstr "Drepturile au fost reîncarcate cu succes." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Editează drepturile de acces" @@ -9346,36 +9472,36 @@ msgstr "Editează drepturile de acces" msgid "Revoke" msgstr "Revocare" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Oricare" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Descriere utilizator" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Permite" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Eliminarea utilizatorilor selectați" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Revocarea tuturor drepturilor active ale utilizatorilor și stergerea " "acestora." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Aruncă baza de date care are același nume ca utilizatorul." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9388,98 +9514,98 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Drepturi specifice coloanei" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Adaugă drepturi la baza de date următoare" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Metacaracterele _ și % trebuiesc însoțite de \\ pentru a le aplica" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Adaugă drepturi la următorul tabel" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Schimbă informațiile de autentificare/Copiază utilizator" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Creează un utilizator nou cu aceleași privilegii și..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... menține cel vechi." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... șterge cel vechi din tabelul de utilizatori." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ...revocă toate privilegiile active de la utilizatorul vechi și șterge-l " "după aceea." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... șterge cel vechi din tabelul de utilizatori și reîncarcă privilegiile." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Bază de date pentru utilizatorul" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Nici unul(a)" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Creează o bază de date cu același nume și acordă toate privilegiile" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Grant all privileges on wildcard name (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Verifică privilegiile pentru baza de date "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Utilizatorul are acces la "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "specific bazei de date" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "Metacaracter" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10780,116 +10906,116 @@ msgstr[0] "în folosință" msgstr[1] "în folosință" msgstr[2] "în folosință" -#: server_synchronize.php:92 +#: server_synchronize.php:99 #, fuzzy msgid "Could not connect to the source" msgstr "Comprimă conexiunea la serverul MySQL" -#: server_synchronize.php:95 +#: server_synchronize.php:102 #, fuzzy msgid "Could not connect to the target" msgstr "Comprimă conexiunea la serverul MySQL" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 #, fuzzy msgid "Structure Difference" msgstr "Structură pentru vizualizare" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 #, fuzzy msgid "Data Difference" msgstr "Structură pentru vizualizare" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Faceți modificările selectate" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "Comanda SQL" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy msgid "Current connection" msgstr "Comprimă conexiunea" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11188,36 +11314,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rînd inserat: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Afișare ca și cod PHP" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validează SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleme cu indexul tabelului `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Etichetă" @@ -11226,66 +11352,66 @@ msgstr "Etichetă" msgid "Table %1$s has been altered successfully" msgstr "Tabelul %1$s a fost alterat cu succes" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "" "Datorită lungimii sale,
acest cîmp s-ar putea să nu fie editabil" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Remove BLOB Repository Reference" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binar - a nu se edita" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Upload to BLOB repository" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Inserează ca o nouă linie" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 #, fuzzy msgid "Show insert query" msgstr "Afișare interogare SQL" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "și apoi" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Revenire" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Adaugă o nouă înregistrare" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Înapoi la această pagină" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Editează rîndul următor" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Folosiți tasta TAB pentru a trece de la o valoare la alta sau CTRL+săgeți " "pentru a merge în oricare direcție" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11374,49 +11500,45 @@ msgstr "Tabelul %1$s a fost creat." msgid "View dump (schema) of table" msgstr "Vizualizarea schemei tabelului" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Adaugă/șterge coloane" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Număr de fișiere-jurnal" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Trimite" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11649,25 +11771,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "Constrângeri ale cheii străine" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Selectează cîmpurile (cel puțin unul):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Adaugă condiție de căutare (parte a comenzii \"where\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Numărul de înregistrări pe pagină" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Ordine de afișare:" @@ -13282,9 +13404,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Creare relație" -#~ msgid "Add a new User" -#~ msgstr "Adaugă un utilizator nou" - #~ msgid "Delete the matches for the " #~ msgstr "Șterge datele urmărite din acest tabel" diff --git a/po/ru.po b/po/ru.po index 9eb49dc507..67f128f5cb 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-07-03 19:50+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: russian \n" @@ -15,13 +15,13 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Показать все" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgstr "" "родительское окно или ваш браузер блокирует межоконные обновления из-за " "настроек безопасности." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Поиск" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "Поиск" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "Комментарий к таблице" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -156,8 +157,8 @@ msgstr "Поле" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -168,7 +169,7 @@ msgstr "Тип" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -211,10 +212,10 @@ msgstr "Комментарии" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Нет" @@ -233,9 +234,9 @@ msgstr "Нет" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -336,7 +337,7 @@ msgstr "Переключиться на скопированную базу да #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -361,15 +362,15 @@ msgstr "Редакция или экспорт схемы связей" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Таблица" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -431,19 +432,19 @@ msgstr "Отсортировать" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "По возрастанию" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "По убыванию" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Показать" @@ -464,8 +465,8 @@ msgid "Del" msgstr "Удалить" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Или" @@ -494,7 +495,7 @@ msgstr "Использовать таблицы" msgid "SQL query on database %s:" msgstr "SQL-запрос к базе данных %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Выполнить запрос" @@ -534,8 +535,8 @@ msgstr[0] "%s соответствие в таблице %s" msgstr[1] "%s соответствия в таблице %s" msgstr[2] "%s соответствий в таблице %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Обзор" @@ -546,7 +547,7 @@ msgid "Delete the matches for the %s table?" msgstr "Удалить соответствия для таблицы %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -616,7 +617,7 @@ msgstr "Слежение включено." msgid "Tracking is not active." msgstr "Слежение выключено." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -646,22 +647,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "С отмеченными:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Отметить все" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Снять выделение" @@ -669,10 +670,10 @@ msgstr "Снять выделение" msgid "Check tables having overhead" msgstr "Отметить требующие оптимизации" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -680,17 +681,17 @@ msgid "Export" msgstr "Экспорт" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Версия для печати" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Очистить" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -738,9 +739,9 @@ msgstr "Отслеживаемые таблицы" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "База данных" @@ -759,15 +760,15 @@ msgstr "Обновлён" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Состояние" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Действие" @@ -820,7 +821,7 @@ msgstr "Добавьте каждое значение в отдельное п msgid "+ Restart insertion and add a new value" msgstr "Обновить вставку и добавить новое значение" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Вывод" @@ -855,6 +856,95 @@ msgstr "Не достаточно прав для сохранения файл msgid "Dump has been saved to file %s." msgstr "Дамп был сохранен в файл %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Значения для поля \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Используйте в качестве основного слоя OpenStreetMaps" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Геометрия" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Добавить процедуру" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Разделитель строк" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Добавить нового пользователя" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Добавить нового пользователя" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Добавить столбец" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Геометрия" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -905,7 +995,7 @@ msgstr "Закладка удалена." msgid "Showing bookmark" msgstr "Отображение закладки" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Закладка "%s" создана" @@ -934,7 +1024,7 @@ msgstr "" "пока не будет увеличено ограничение времени выполнения php-сценариев." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -958,15 +1048,15 @@ msgstr "Выделение" msgid "Click to unselect" msgstr "Снятие выделения" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Команда \"DROP DATABASE\" (удалить базу данных) - отключена." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Вы действительно хотите выполнить запрос" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "База данных будет полностью УДАЛЕНА!" @@ -1028,8 +1118,8 @@ msgstr "Пароль не задан!" msgid "The passwords aren't the same!" msgstr "Некорректное подтверждение пароля!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Добавить пользователя" @@ -1047,8 +1137,8 @@ msgid "Close" msgstr "Закрыть" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1084,12 +1174,12 @@ msgid "Other" msgstr "Другое" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1178,12 +1268,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "КБ" @@ -1288,7 +1378,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Нет" @@ -1683,8 +1773,8 @@ msgstr "Отобразить поле запроса" msgid "No rows selected" msgstr "Для совершения действия необходимо выбрать одну или несколько строк" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Изменить" @@ -1698,8 +1788,8 @@ msgstr "Максимальное время выполнения" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Сохранить" @@ -1711,7 +1801,7 @@ msgstr "Скрыть параметры поиска" msgid "Show search criteria" msgstr "Отобразить параметры поиска" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1755,36 +1845,44 @@ msgstr "Добавить/удалить столбцы" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Игнорировать" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Копировать" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "Добавить столбец" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Выберите ссылочный ключ" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Выберите внешний ключ" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" "Выберите поле являющееся первичным (PRIMARY), или уникальным (UNIQUE) " "индексом" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Выбор отображаемого столбца" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1792,70 +1890,70 @@ msgstr "" "Вы не сохранили изменения в раскладке. Без сохранения, они будут потеряны. " "Продолжить?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Добавить параметр для столбца" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Изменить порядок перетаскиванием" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Кликнуть для сортировки" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Кликнуть для снятия/установки отметки" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Перейти к представлению (VIEW)" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Создать пароль" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Генерировать" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Изменить пароль" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Ещё" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1865,27 +1963,27 @@ msgstr "" "Новейшая версия %s, выпущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", последняя стабильная версия:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "актуально" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Готово" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Предыдущий" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1893,149 +1991,149 @@ msgid "Next" msgstr "Следующий" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Сегодня" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Январь" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Февраль" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Март" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Апрель" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Май" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Июнь" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Июль" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Август" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Сентябрь" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Октябрь" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Ноябрь" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Декабрь" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Дек" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Воскресенье" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Понедельник" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Вторник" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Среда" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Четверг" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Пятница" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Суббота" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2043,87 +2141,92 @@ msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Вс" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Нед." -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Час" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Минута" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Секунда" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Размер шрифта" @@ -2235,13 +2338,13 @@ msgstr "Индексы %1$s и %2$s равнозначны и один из ни #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Базы данных" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Ошибка" @@ -2372,7 +2475,7 @@ msgstr "Тема %s не найдена!" msgid "Theme path not found for theme %s!" msgstr "Путь к файлам темы %s не найден!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Тема" @@ -2545,7 +2648,7 @@ msgstr "Таблицы" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Данные" @@ -2615,7 +2718,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Сервер" @@ -2681,101 +2784,101 @@ msgstr "SQL-запрос" msgid "MySQL said: " msgstr "Ответ MySQL: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Невозможно соединиться с SQL валидатором!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Анализ SQL запроса" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Убрать анализ SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Убрать PHP-код" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Обновить" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Убрать проверку синтаксиса SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Проверка синтаксиса" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Быстрое редактирование запроса" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Быстрая правка" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Профилирование" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Байт" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "ЭБ" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Вс" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y г., %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дней, %s часов, %s минут и %s секунд" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routine parameters" msgid "Missing parameter:" msgstr "Параметры процедуры" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2783,7 +2886,7 @@ msgctxt "First page" msgid "Begin" msgstr "Начало" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2792,7 +2895,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Назад" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2801,7 +2904,7 @@ msgctxt "Next page" msgid "Next" msgstr "Следующий" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2809,37 +2912,37 @@ msgctxt "Last page" msgid "End" msgstr "Конец" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Перейти к базе данных "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" "Работа параметра "%s" подвержена ошибке, описание смотрите на %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Выделение" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Структура" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2847,37 +2950,37 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Вставить" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Операции" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Обзор вашего компьютера:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Выберите из каталога загрузки сервера %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Установленный каталог загрузки не доступен" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Файлы для загрузки отсутствуют" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Выполнить" @@ -3043,7 +3146,7 @@ msgstr "Разрешить пользователям изменять данн #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Сбросить" @@ -3318,7 +3421,7 @@ msgid "Character set of the file" msgstr "Кодировка файла" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Формат" @@ -5006,7 +5109,7 @@ msgstr "Требуется подключенный SQL валидатор" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Пароль" @@ -5317,8 +5420,8 @@ msgid "Designer" msgstr "Дизайнер" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Привилегии" @@ -5337,7 +5440,7 @@ msgstr "События" msgid "Triggers" msgstr "Триггеры" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5396,7 +5499,7 @@ msgid "Create" msgstr "Создать" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Нет привилегий" @@ -5721,12 +5824,12 @@ msgstr "Сортировать по индексу" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Параметры" @@ -5754,8 +5857,8 @@ msgstr "Показать бинарные данные" msgid "Show BLOB contents" msgstr "Показать BLOB содержимое" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Скрыть" @@ -5764,10 +5867,6 @@ msgstr "Скрыть" msgid "Browser transformation" msgstr "Преобразование" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Геометрия" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "Текст (WKT)" @@ -5776,57 +5875,53 @@ msgstr "Текст (WKT)" msgid "Well Known Binary" msgstr "Бинарный (WKB)" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Копировать" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Запись была удалена" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Завершить" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "по запросу" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Отображает строки" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "всего" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "запрос занял %01.4f сек." -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Версия для печати (полностью)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Отобразить график" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Визуализация GIS данных" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Создать представление" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Связь не найдена" @@ -6028,7 +6123,7 @@ msgstr "" "Процентное соотношение захламления в файле хранилища до его уплотнения." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Порт" @@ -6381,7 +6476,7 @@ msgstr "Отобразить MIME типы" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Хост" @@ -6601,7 +6696,7 @@ msgstr "Экспортировать содержимое" msgid "Open new phpMyAdmin window" msgstr "Открыть phpMyAdmin в новом окне" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "Данные для визуализации GIS не найдены." @@ -6613,54 +6708,54 @@ msgstr "Результат SQL-запроса" msgid "Generated by" msgstr "Создан" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Следующие структуры были созданы, либо изменены. Вы можете:" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 #, 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:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Изменить любую настройку нажав на соответствующую ссылку \"Параметры\"" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Отредактировать структуру перейдя по ссылке \"Структура\"" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Перейти к базе данных" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Отсутствуют данные для %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Перейти к таблице" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Только структура" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Перейти к представлению (VIEW)" @@ -6716,7 +6811,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Имя таблицы" @@ -6738,6 +6833,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Импортировать денежные единицы (напр. $5.00 в 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Данная страница не содержит таблиц!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "Режим совместимости SQL:" @@ -6786,7 +6907,7 @@ msgstr "Добавить префикс таблицы" msgid "Add prefix" msgstr "Добавить префикс" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Нет изменений" @@ -6795,7 +6916,7 @@ msgid "Charset" msgstr "Кодировка" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Двоичный" @@ -7106,7 +7227,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Имя пользователя" @@ -7124,9 +7245,9 @@ msgid "Variable" msgstr "Переменная" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Значение" @@ -7154,7 +7275,7 @@ msgstr "Любой пользователь" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Использовать текстовое поле" @@ -7360,7 +7481,7 @@ msgid "Returns" msgstr "Возвращаемый тип" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Время" @@ -7506,8 +7627,8 @@ msgstr "Выполнить процедуру" msgid "Routine parameters" msgstr "Параметры процедуры" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Функция" @@ -7827,8 +7948,8 @@ msgstr "Неизвестный язык: %1$s." msgid "Current Server" msgstr "Текущий сервер" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Синхронизировать" @@ -7850,7 +7971,7 @@ msgstr "Кодировки" msgid "Engines" msgstr "Типы таблиц" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Источник" @@ -7868,7 +7989,7 @@ msgstr "Удалённый сервер" msgid "Difference" msgstr "Различие" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Целевая база данных" @@ -7891,11 +8012,11 @@ msgstr "Очистить" msgid "Columns" msgstr "Столбцы" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Создание закладки" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Доступна для всех пользователей" @@ -7923,7 +8044,7 @@ msgstr "Просмотр" msgid "Location of the text file" msgstr "Выбор файла" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "Из каталога загрузки" @@ -8117,23 +8238,29 @@ msgid "+ Add a value" msgstr "+ Добавить значение" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Обзор внешних значений" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Оператор" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Поиск" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Вставить" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8299,8 +8426,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Файлов внутри ZIP-архива не найдено!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Ошибка в ZIP-архиве:" @@ -8324,8 +8451,8 @@ msgstr "Дополнительные настройки" msgid "Protocol version" msgstr "Версия протокола" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Пользователь" @@ -8477,7 +8604,7 @@ msgstr "" "Сервер использует защитную систему Suhosin. Для решения возможных проблем " "обратитесь к %sдокументации%s." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Базы данных отсутствуют" @@ -8504,7 +8631,7 @@ msgstr "Показать/скрыть левое меню" msgid "Save position" msgstr "Сохранить расположение таблиц" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Создать таблицу" @@ -8844,81 +8971,81 @@ msgstr "Типы таблиц" msgid "View dump (schema) of databases" msgstr "Отобразить дамп (схему) баз данных" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Содержит все привилегии, за исключением GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Разрешает изменение структуры существующих таблиц." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Разрешает изменение и удаление хранимых процедур." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Разрешает создание новых баз данных и таблиц." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Разрешает создание хранимых процедур." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Разрешает создание новых таблиц." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Разрешает создание временных таблиц." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Разрешает создание, удаление и переименование учетных записей пользователей." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Разрешает создание новых представлений (CREATE VIEW)." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Разрешает удаление данных." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Разрешает удаление баз данных и таблиц." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Разрешает удаление таблиц." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Разрешает настройку отложенных событий" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Разрешает выполнение хранимых процедур." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Разрешает импорт и экспорт данных в файлы." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8926,17 +9053,17 @@ msgstr "" "привилегий." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Разрешает создание и удаление индексов." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Разрешает вставку и замену данных." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Разрешает блокировку таблиц для текущего потока." @@ -8969,53 +9096,53 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Максимальное количество одновременных подключений одного пользователя." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Разрешает просмотр процессов всех пользователей" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Не доступно в данной версии MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Разрешает перезагрузку настроек сервера и очистку его кешей." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Разрешает запрашивать местонахождение головного и подчиненных серверов." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Необходимо для подчиненных серверов при репликации." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Разрешает выборку данных." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Разрешает доступ к полному списку баз данных." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Разрешает вывод запроса создающего представление (SHOW CREATE VIEW)." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Разрешает остановку сервера." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9027,43 +9154,43 @@ msgstr "" "пользователей)." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Разрешает создание и удаление триггеров" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Разрешает изменение данных." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Нет привилегий." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Нет" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Привилегии уровня таблицы" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Примечание: типы привилегий MySQL отображаются по-английски" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Администрирование" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Глобальные привилегии" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Привилегии уровня базы данных" @@ -9084,7 +9211,7 @@ msgstr "Информация учетной записи" msgid "Do not change the password" msgstr "Не менять пароль" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Пользователь не найден." @@ -9133,7 +9260,7 @@ msgstr "Выбранные пользователи были успешно уд msgid "The privileges were reloaded successfully." msgstr "Привилегии были успешно перезагружены." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Редактирование привилегий" @@ -9141,34 +9268,34 @@ msgstr "Редактирование привилегий" msgid "Revoke" msgstr "Отменить" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Любой" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Обзор учетных записей" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Удалить выделенных пользователей" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Отменить все активные привилегии пользователей и затем удалить их." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Удалить базы данных, имена которых совпадают с именами пользователей." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9181,100 +9308,100 @@ msgstr "" "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В таком случае необходимо %sперезагрузить привилегии%s." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Выделенный пользователь не был найден в таблице привилегий." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Привилегии уровня столбца" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Добавить привилегии на следующую базу" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "При использовании в имени базы данных символов нижнего подчеркивания _ и " "процента %, необходимо экранировать их символом обратной косой черты \\, в " "противном случае они будут интерпретированы как групповые символы" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Добавить привилегии на следующую таблицу" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Изменить/Копировать учетную запись" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Создать нового пользователя с такими же привилегиями..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "и сохранить старого." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "и удалить старого из таблиц пользователей." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr ", отменить все активные привилегии старого и затем удалить его." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr ", удалить старого из таблиц пользователей и перезагрузить привилегии." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "База данных для пользователя" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Нет" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" "Создать базу данных с именем пользователя в названии и предоставить на нее " "полные привилегии" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Предоставить полные привилегии на базы данных подпадающие под шаблон (имя " "пользователя\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Выставить полные привилегии на базу данных "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Пользователи с правами доступа к "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "Глобальный уровень" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "Уровень базы данных" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "Групповой символ" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "Пользователь был добавлен." @@ -10615,112 +10742,112 @@ msgstr[0] "%d минута" msgstr[1] "%d минуты" msgstr[2] "%d минут" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Не получилось соединиться с источником" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Не получилось соединиться с целевой базой данных" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "База данных '%s' не существует." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Синхронизация структуры" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Синхронизация данных" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "отсутствует" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Различие структуры" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Различие данных" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Добавить поле(я)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Удалить поле(я)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Изменить поле(я)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Удалить индекс(ы)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Применить индекс(ы)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Обновить строку(и)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Вставить строку(и)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Удалить все предыдущие строки из целевой таблицы?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Применить выбранные изменения" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Синхронизировать базы данных" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Выбранные целевые таблицы были синхронизированы с таблицами источника." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Целевая база данных была синхронизирована с базой данных источника" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Выполнено запросов" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Ввести вручную" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Текущее соединение" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Настройки: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Сокет" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11075,34 +11202,34 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Ключ должен содержать символы алфавита, цифры [em]и[/em] знаки." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Для обзора данных использован запрос из закладки \"%s\"." -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Отображает как PHP-код" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "SQL синтаксис проверен" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблемы с индексами таблицы `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Метка" @@ -11111,62 +11238,62 @@ msgstr "Метка" msgid "Table %1$s has been altered successfully" msgstr "Таблица %1$s была успешно изменена" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "Из-за большого количества данных
изменение поля невозможно" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Удалить ссылку хранилища BLOB данных" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Двоичные данные - не редактируются" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Загрузить в хранилище BLOB данных" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Вставить запись" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Вставить в виде новой строки и игнорировать появляющиеся ошибки" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Отобразить запрос вставки" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "и затем" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Вернуться на предыдущую страницу" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Добавить новую запись" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Вернуться к данной странице" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Редактировать следующую строку" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Продолжить вставку с %s строки" @@ -11237,43 +11364,39 @@ msgstr "Таблица %1$s была создана." msgid "View dump (schema) of table" msgstr "Отобразить дамп (схему) таблицы" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "Визуализация GIS данных" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Ширина" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Высота" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Название столбца" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- Пусто --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "Пространственный столбец" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Используйте в качестве основного слоя OpenStreetMaps" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Пересоздать" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Сохранить в файл" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Имя файла" @@ -11496,23 +11619,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "Ограничение внешнего ключа" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Выполнить \"запрос по образцу\" (групповой символ: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Выберите поля (не менее одного):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Добавить условия поиска (тело для условия \"WHERE\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Количество строк на странице" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Сортировка:" @@ -13209,9 +13332,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Создать пользователя" -#~ msgid "Add a new User" -#~ msgstr "Добавить нового пользователя" - #~ msgid "Show table row links on left side" #~ msgstr "Вывести ссылки слева" diff --git a/po/si.po b/po/si.po index 2d57d84fb9..dd46b43fc7 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-06-04 15:35+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: sinhala \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "ඉලක්කගත බ්‍රව්සර කවුලුව යාවත්කාලීන කල නොහැක. ඔබ එහි මව් කවුලුව වසා තිබීම හෝ ඔබගේ බ්‍රව්සරයේ " "ආරක්ෂක සැකසුම් cross-window යාවත්කාලීන කිරීම් අවහිර කරන ලෙස සකසා තිබීම මීට හේතු විය හැක." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "සෙවීම" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "සෙවීම" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -136,8 +137,8 @@ msgstr "වගු විස්තර" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -152,8 +153,8 @@ msgstr "තීර" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -164,7 +165,7 @@ msgstr "වර්ගය" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -207,10 +208,10 @@ msgstr "විස්තරය" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "නැත" @@ -229,9 +230,9 @@ msgstr "නැත" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -332,7 +333,7 @@ msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙ #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -357,15 +358,15 @@ msgstr "ක්‍රමානුරූපය සංස්කරණය හෝ අ #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "වගුව" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -425,19 +426,19 @@ msgstr "සුබෙදන්න" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "ආරෝහන" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "අවරෝහන" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "පෙන්වන්න" @@ -458,8 +459,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "හෝ" @@ -488,7 +489,7 @@ msgstr "වගු භාවිතා කරන්න" msgid "SQL query on database %s:" msgstr "%s දත්තගබඩාව මත SQL විමසුම:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "විමසුම ඉදිරිපත් කරන්න" @@ -527,8 +528,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s වගුව තුල ගැලපීම් %s කි" msgstr[1] "%s වගුව තුල ගැලපීම් %s කි" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "පිරික්සන්න" @@ -539,7 +540,7 @@ msgid "Delete the matches for the %s table?" msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -612,7 +613,7 @@ msgstr "අවධානය සක්‍රීයයි." msgid "Tracking is not active." msgstr "අවධානය අක්‍රීයයි." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -641,22 +642,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s is the default storage engine on this MySQL server." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "තෝරාගත්:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "කතිර කොටුගත කිරීම ඉවත් කරන්න" @@ -664,10 +665,10 @@ msgstr "කතිර කොටුගත කිරීම ඉවත් කරන msgid "Check tables having overhead" msgstr "Check tables having overhead" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -675,17 +676,17 @@ msgid "Export" msgstr "අපනයනය" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "මුද්‍රණ දර්ශනය" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "හිස්" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -733,9 +734,9 @@ msgstr "අවධානය සක්‍රීය වගු" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "දත්තගබඩාව" @@ -754,15 +755,15 @@ msgstr "යාවත්කාලීන කරන ලදි" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "තත්වය" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "ක්‍රියාව" @@ -816,7 +817,7 @@ msgstr "එක් එක් අගයන් වෙන වෙනම ක්ෂේ msgid "+ Restart insertion and add a new value" msgstr "+ ඇතුලත් කිරීම නැවත අරඹා අලුත් අගයක් එකතු කරන්න" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "ප්‍රතිදානය" @@ -850,6 +851,95 @@ msgstr "The web server does not have permission to save the file %s." msgid "Dump has been saved to file %s." msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකින ලදි." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "\"%s\" තීරුව සඳහා අගයන්" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add index" +msgid "Add a point" +msgstr "සුචිය එක් කරන්න" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "පේළි අවසන් කිරීමේ සළකුණ" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "නව භාවිතා කරන්නේක් එක් කරන්න" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "නව භාවිතා කරන්නේක් එක් කරන්න" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "තීරයක් එක් කරන්න" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "නව සේවාදායකයක් එක් කරන්න" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -897,7 +987,7 @@ msgstr "පොත් සලකුණ ඉවත් කරන ලදි." msgid "Showing bookmark" msgstr "පොත් සලකුණ පෙන්වන්න" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "%s පොත් සලකුණ සාදන ලදි" @@ -924,7 +1014,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -948,15 +1038,15 @@ msgstr "තේරීමට ක්ලික් කරන්න" msgid "Click to unselect" msgstr "තේරීම අවලංගු කිරීමට ක්ලික් කරන්න" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ප්‍රකාශ අක්‍රීය කර ඇත." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "ඔබට ඇත්තෙන්ම අවශ්‍යද " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "ඔබ සූදානම් වන්නේ සම්පූර්ණ දත්තගබඩාවක් විනාශකර දැමීමටයි!" @@ -1020,8 +1110,8 @@ msgstr "The password is empty!" msgid "The passwords aren't the same!" msgstr "The passwords aren't the same!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1041,8 +1131,8 @@ msgid "Close" msgstr "වසන්න" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1082,12 +1172,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1178,12 +1268,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1286,7 +1376,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "කිසිවක් නැත" @@ -1683,8 +1773,8 @@ msgstr "විමසුම් කවුළුව පෙන්වන්න" msgid "No rows selected" msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "වෙනස් කරන්න" @@ -1698,8 +1788,8 @@ msgstr "SQL ක්‍රියාත්මක කිරීම" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "සුරකින්න" @@ -1713,7 +1803,7 @@ msgstr "SQL විමසුම" msgid "Show search criteria" msgstr "SQL විමසුම" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1757,36 +1847,44 @@ msgstr "තීර එක් කරන්න/ඉවත් කරන්න" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "නොසලකන්න" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "පිටපත් කරන්න" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "තීරයක් එක් කරන්න" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "සම්බන්දිත මූලය තෝරන්න" # ප්‍රාථමික මූලය = Primary key. Source: Glossary of Information Technology # Terms - ICTA -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "අන්‍ය මූලය තෝරන්න" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "කරුණාකර ප්‍රාථමික මූලය හෝ අනුපම මූලයක් තෝරන්න" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන්න" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1795,71 +1893,71 @@ msgstr "" "යන්න?" # අභිරුචිය = option. Source: Glossary of Information Technology Terms - ICTA -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "ක්ෂේත්‍රයට අභිරුචියක් එක් කරන්න " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "තේරීමට ක්ලික් කරන්න" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy msgid "Go to link" msgstr "දත්තගබඩා නොමැත" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "මුරපදය උත්පාදනය කරන්න" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "උත්පාදනය කරන්න" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "මුරපදය වෙනස් කරන්න" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "තවත්" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1869,27 +1967,27 @@ msgstr "" "අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", නවතම ස්ථායි අනුවාදය:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "යාවත්කාලීන" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "තෝරන්න" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "පෙර" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1897,149 +1995,149 @@ msgid "Next" msgstr "මීලඟ" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "අද දින" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "ජනවාරි" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "පෙබරවාරි" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "මාර්තු" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "අ‍ප්‍රේල්" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "මැයි" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "ජුනි" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "ජූලි" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "අගෝස්තු" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "සැප්තැම්බර්" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "ඔක්තෝම්බර්" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "නොවැම්බර්" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "දෙසැම්බර්" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "ජුනි" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "දෙසැම්බර්" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "ඉරිදා" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "සඳුදා" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "අඟහරු‍වදා" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "බදාදා" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "බ්‍රහස්පතින්දා" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "සිකුරාදා" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "සෙනසුරාදා" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2047,87 +2145,92 @@ msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "සඳුදා" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "අඟහ" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "බ්‍රහස්" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "සිකුරා" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "සෙනසු" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "ඉරි" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "සඳු" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "අඟ" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "බදා" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "බ්‍රහ" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "සිකු" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "සෙන" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "සති" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "පැය" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "මිනිත්තු" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "තත්පර" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "ෆොන්ට් එකෙහි ප්‍රමාණය" @@ -2235,13 +2338,13 @@ msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එ #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "දත්තගබඩා" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "දෝෂය" @@ -2369,7 +2472,7 @@ msgstr "Theme %s not found!" msgid "Theme path not found for theme %s!" msgstr "Theme path not found for theme %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2541,7 +2644,7 @@ msgstr "වගු" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "දත්ත" @@ -2609,7 +2712,7 @@ msgstr "Invalid hostname for server %1$s. Please review your configuration." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "සේවාදායකය" @@ -2674,101 +2777,101 @@ msgstr "SQL විමසුම" msgid "MySQL said: " msgstr "MySQL said: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "SQL වලංගු කරණයට සම්බන්ද වීම අසමත් විය!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL ය පහදන්න" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Skip Explain SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP කේත නොමැතිව" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP කේත සාදන්න" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "අලුත් කරන්න" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Skip Validate SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Validate SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "මෙම විමසුමේ පේළිගත සංස්කරණය" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "පේළිගත" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "ඉරිදා" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "දින %s, පැය %s, මිනිත්තු %s සහ තප්පර %s" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "නෛත්‍යක" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2776,7 +2879,7 @@ msgctxt "First page" msgid "Begin" msgstr "Begin" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2785,7 +2888,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "පෙර" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2794,7 +2897,7 @@ msgctxt "Next page" msgid "Next" msgstr "මීලඟ" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2802,36 +2905,36 @@ msgctxt "Last page" msgid "End" msgstr "අවසානය‍" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr ""%s" දත්තගබඩාව වෙත යන්න ." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "තේරීමට ක්ලික් කරන්න" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "සැකිල්ල" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2839,37 +2942,37 @@ msgstr "සැකිල්ල" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "ඇතුල් කරන්න" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "මෙහෙයුම්" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "පරිගණකය තුළ පිරික්සන්න:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3035,7 +3138,7 @@ msgstr "මෙම අගය වෙනස් කිරීමට භවිතා #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "ප්‍රතිසකසන්න" @@ -3289,7 +3392,7 @@ msgid "Character set of the file" msgstr "ගොනුවේ අක්ෂර කට්ටලය" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "ආකෘතිය" @@ -4850,7 +4953,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "මුරපදය" @@ -5131,8 +5234,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "වරප්‍රසාද" @@ -5151,7 +5254,7 @@ msgstr "සිද්ධි" msgid "Triggers" msgstr "ප්‍රේරක" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5214,7 +5317,7 @@ msgid "Create" msgstr "සාදන්න" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "වරප්‍රසාද නොමැත" @@ -5545,12 +5648,12 @@ msgstr "යතුර අනුව තෝරන්න" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "විකල්ප" @@ -5585,8 +5688,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "සඟවන්න" @@ -5595,10 +5698,6 @@ msgstr "සඟවන්න" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5607,57 +5706,53 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "පිටපත් කරන්න" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "පෙළ ඉවත් කරන ලදි" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Kill" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "in query" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "පේළි පෙන්වමින්" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "මුළු එකතුව" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "විමසුම් ප්‍රථිඵල සඳහා මෙහෙයුම්" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "මුද්‍රණ දර්ශනය (පූර්ණ පෙළ සමඟින්)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "ප්‍රස්තාරගත කරන්න" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "දසුනක් සාදන්න" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Link not found" @@ -5854,7 +5949,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "‍තෝරනවා" @@ -6177,7 +6272,7 @@ msgstr "Available MIME types" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "දායකයා" @@ -6376,7 +6471,7 @@ msgstr "අපනයන වර්ගය" msgid "Open new phpMyAdmin window" msgstr "නව phpMyAdmin කවුළුවක් විවෘත කරන්න" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6390,52 +6485,52 @@ msgstr "SQL ප්‍රතිළුල" msgid "Generated by" msgstr "උත්පාදනය කරන ලද්දේ" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "දත්තගබඩා නොමැත" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "%s සඳහා දත්ත නොමැත" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 #, fuzzy msgid "Go to table" msgstr "දත්තගබඩා නොමැත" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "සැකිල්ල පමණයි" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6487,7 +6582,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 #, fuzzy msgid "Table name" msgstr "වගුවේ නම" @@ -6509,6 +6604,30 @@ msgstr "ප්‍රතිශත පූර්ණ සංඛ්‍යා ලෙස msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "ව්‍යවහාර මුදල් අගයන් ආනයනය කරන්න (උදා. $5.00, 5.00 ලෙස)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "SQL ගැළපුම් ප්‍රකාරය:" @@ -6560,7 +6679,7 @@ msgstr "" msgid "Add prefix" msgstr "සුචිය එක් කරන්න" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "වෙනස්කම් නැත" @@ -6569,7 +6688,7 @@ msgid "Charset" msgstr "අක්ෂර කට්ටලය" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "ද්වීමය" @@ -6873,7 +6992,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "භාවිත නාමය" @@ -6893,9 +7012,9 @@ msgid "Variable" msgstr "විචල්‍යය" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "අගය" @@ -6921,7 +7040,7 @@ msgstr "ඕනෑම භාවිතා කරන්නෙක්" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Use text field" @@ -7115,7 +7234,7 @@ msgid "Returns" msgstr "වගු විකල්ප" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "වේලාව" @@ -7274,8 +7393,8 @@ msgstr "" msgid "Routine parameters" msgstr "නෛත්‍යක" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "ශ්‍රිතය" @@ -7601,8 +7720,8 @@ msgstr "%1$s නොදන්නා භාෂාවකි." msgid "Current Server" msgstr "වත්මන් සේවාදායකය" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "සමමුහුර්ත කරන්න" @@ -7624,7 +7743,7 @@ msgstr "අක්ෂර කට්ටලය" msgid "Engines" msgstr "යන්ත්‍රයන්" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "දත්තගබඩාවේ සොයන්න" @@ -7643,7 +7762,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "දත්තගබඩාවේ සොයන්න" @@ -7670,11 +7789,11 @@ msgstr "දින දර්ශනය" msgid "Columns" msgstr "තීර නම්" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" @@ -7702,7 +7821,7 @@ msgstr "දර්ශනය කිරීම පමණි" msgid "Location of the text file" msgstr "පාඨ ගොනුවෙහි පිහිටුම" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය" @@ -7906,23 +8025,29 @@ msgid "+ Add a value" msgstr "+ නව භාවිතා කරන්නෙක් එක් කරන්න" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "අන්‍ය අගයන් පිරික්සන්න" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "මෙහෙයවනය" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "සෙවීම" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "ඇතුල් කරන්න" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8107,8 +8232,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "No files found inside ZIP archive!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "ZIP ආරක්ෂණයේ දෝෂයක් ඇත:" @@ -8135,8 +8260,8 @@ msgstr "තවත් සිටුවම්" msgid "Protocol version" msgstr "ප්‍රෝටකෝල අනුවාදය" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "භාවිතා කරන්නා" @@ -8270,7 +8395,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "දත්තගබඩා නොමැත" @@ -8298,7 +8423,7 @@ msgstr "වම් මෙනුව පෙන්වන්න/සඟවන්න" msgid "Save position" msgstr "ස්ථාපිතය සුරකින්න" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "වගුව සාදන්න" @@ -8643,97 +8768,97 @@ msgstr "ගබඩා යන්ත්‍ර" msgid "View dump (schema) of databases" msgstr "View dump (schema) of databases" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Includes all privileges except GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Allows altering the structure of existing tables." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Allows creating new databases and tables." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Allows creating stored routines." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Allows creating new tables." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Allows creating temporary tables." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Allows creating, dropping and renaming user accounts." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Allows creating new views." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Allows deleting data." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Allows dropping databases and tables." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Allows dropping tables." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Allows executing stored routines." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tables." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Allows creating and dropping indexes." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Allows inserting and replacing data." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." @@ -8762,52 +8887,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of simultaneous connections the user may have." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Allows viewing processes of all users" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Allows the user to ask where the slaves / masters are." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Allows reading data." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Allows performing SHOW CREATE VIEW queries." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Allows shutting down the server." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8818,44 +8943,44 @@ msgstr "" "killing threads of other users." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Allows creating and dropping indexes." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Allows changing data." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "වරප්‍රසාද නොමැත." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "කිසිවක් නැත" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "වගු-විශේෂී වරප්‍රසාද" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "සටහන: MySQL වරප්‍රසාද නම් සඳහන් වනුයේ ඉංග්‍රීසියෙනි" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "පරිපාලනය" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "ගෝලීය වරප්‍රසාද" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "දත්තගබඩා විශේෂිත වරප්‍රසාද" @@ -8875,7 +9000,7 @@ msgstr "ලොගින තොරතුරු" msgid "Do not change the password" msgstr "මුරපදය වෙනස් නොකරන්න" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "භාවිතා කරන්නන් හමු නොවිණි." @@ -8924,7 +9049,7 @@ msgstr "තෝරාගත් භාවිතා කරන්නන් සාර msgid "The privileges were reloaded successfully." msgstr "සාර්ථකව වරප්‍රසාද පූරණය කරන්න ලදි." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "වරප්‍රසාද සංස්කරණය කරන්න" @@ -8932,34 +9057,34 @@ msgstr "වරප්‍රසාද සංස්කරණය කරන්න" msgid "Revoke" msgstr "අහෝසි කරන්න" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "ඕනෑම" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "භාවිත කරන්නන් පිළිබඳ දළ විශ්ලේෂණය" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "ප්‍රදානය කරන්න" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත් කරන්න" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "භාවිත කරන්නන්ගෙන් සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව ඔවුන් ඉවත් කරන්න." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8971,93 +9096,93 @@ msgstr "" "සේවාදායකයේ වරප්‍රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්‍රසාද වලට " "වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්‍රසාද පූරණය%s කල යුතුය." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "තෝරාගත් භාවිත කරන්නා වරප්‍රසාද වගුවේ හමු නොවිණි." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "තීර-විශේෂී වරප්‍රසාද" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "පහත දත්තගබඩාවට වරප්‍රසාද එක් කරන්න" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Wildcards % and _ should be escaped with a \\ to use them literally" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "පහත වගුවට වරප්‍රසාද එක් කරන්න" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "ලොගින් තොරතුරු වෙනස් කරන්න / භාවිතා කරන්නා පිටපත් කරන්න" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "සහ එකම වරප්‍රසාද සහිතව නව භාවිතා කරන්නෙක් එක් කරන්න ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... පැරණි එක තබා ගන්න." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කරන්න." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... පැරැන්නෙන් සියලුම සක්‍රීය වරප්‍රසාද අහෝසි කර අනතුරුව එය ඉවත් කරන්න." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... භාවිතා කරන්නන්ගේ වගුවෙන් පැරණි එක ඉවත් කර වරප්‍රසාද නැවත අලුත් කරන්න." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "භාවිතා කරන්නා සඳහා දත්තගබඩාව" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "කිසිවක් නැත" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "එකම නමින් දත්තගබඩාවක සාදා සියලු වරප්‍රසාද එයට දෙන්න" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "අභිමත ආදේශක නාමයන් සඳහා සියලු වරප්‍රසාද දෙන්න (භාවිත නාමය\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" දත්තගබඩාව සඳහා සියලු වරප්‍රසාද ප්‍රදානය කරන්න." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr ""%s" වෙත ප්‍රවේශ වරප්‍රසාද ඇති භාවිතා කරන්නන්" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "ගෝලීය" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "දත්තගබඩා විශේෂිත" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10365,111 +10490,111 @@ msgid_plural "%d minutes" msgstr[0] "මිනිත්තු" msgstr[1] "මිනිත්තු" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "මූලාශ්‍රය වෙත සම්බන්ද විය නොහැකි විය" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "ඉලක්කය වෙත සම්බන්ද විය නොහැකි විය" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' දත්තගබඩාව නොමැත." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "සැකිල්ල සමමුහුර්ත කරණය" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "දත්ත සමමුහුර්ත කරණය" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "නොමැති" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "ආකෘති වෙනස" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "දත්ත වෙනස" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "පේළි(යක්) එක් කරන්න" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "පේළි(යක්) ඉවත් කරන්න" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "පේළි(යක්) වෙනස් කරන්න" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "සුචි(ය) ඉවත් කරන්න" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "සුචි(ය) යොදන්න" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "පේළි(ය) යාවත්කාලීන කරන්න" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "පේළි(ය) ඇතුල් කරන්න" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "ඉලක්කගත වගුවෙන් සියලුම පෙර තීරු ඉවත් කිරීමට‍ ඔබ කැමතිද?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "තෝරාගත් වෙනස්කම් යොදන්න" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "දත්තගබඩා සමමුහුර්ත කරන්න" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "ඉලක්ක ලෙස තෝරාගත් වගු මූලාශ්‍ර වගු සමඟ සමමුහුර්ත කර ඇත." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "ඉලක්ක දත්තගබඩා මූලාශ්‍ර දත්තගබඩා සමඟ සමමුහුර්ත කර ඇත" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL විමසුම" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "වත්මන් සම්බන්දතාව" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "සැකසුම : %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "සොකට්" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10775,34 +10900,34 @@ msgstr "මූලය කෙටිය. අවම වශයෙන් අක්ෂ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em] විශේෂ සලකුණු තිබිය යුතුය." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්." -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "%1$d පේළිය ඇතුල් කරන ලදි" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "PHP කේත ලෙස පෙන්වමින්" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "SQL විමසුම පෙන්වමින්" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "තහවුරු කරන ලද SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "ලේබලය" @@ -10811,61 +10936,61 @@ msgstr "ලේබලය" msgid "Table %1$s has been altered successfully" msgstr "%1$s වගුව සාර්ථකව වෙනස් කරන ලදි" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "මෙහි දිග නිසා,
මෙම තීරුව සංස්කරණය කල නොහැකි විය හැකිය " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "ද්වීමය - සංස්කරණය නොකරන්න" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "නව පේළියක් ලෙස ඇතුල් කරන්න" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "දෝෂ නොසලකමින් නව පේළියක් ලෙස ඇතුල් කරන්න" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "ඇතුල් කිරීමේ විමසුම පෙන්වන්න" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "අනතුරුව" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "පෙර පිටුවට ආපසු යන්න" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "නව පේළියක් එක් කරන්න" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "මෙම පිටුව වෙත ආපසු යන්න" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "මීලඟ පේළිය එක් කරන්න" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "පේළි %s බැගින් තවදුරටත් ඇතුල් කරන්න" @@ -10952,53 +11077,49 @@ msgstr "%1$s වගුව සාදන ලදි." msgid "View dump (schema) of table" msgstr "View dump (schema) of table" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "සේවාදායක තේරීම පෙන්වන්න" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "පළල" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "උස" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "ක්ෂේත්‍ර තීර එක් කරන්න/ඉවත් කරන්න" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- කිසිවක් නොමැත -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "මුළු එකතුව" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "නැවත අඳින්න" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "ගොනුවක් ලෙස තෝරන්න" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy msgid "File name" msgstr "වගුවේ නම" @@ -11222,23 +11343,23 @@ msgstr "අදාල අන්‍ය මූලය ඇති විට අභ් msgid "Foreign key constraint" msgstr "අන්‍ය මූල නිරෝධය" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"උදාහරණයෙන් විමසුම\" ක් සිදු කරන්න (wildcard: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "පේළි තෝරන්න (අවම වශයෙන් එකක්):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "සෙවීම් කොන්දේසි එක් කරන්න (\"where\" වාක්‍යාංශය යටතේ):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "පිටුවකට පේළි ගණන" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "දර්ශනය කිරීමේ අනුපිළිවෙල:" @@ -12898,9 +13019,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "භාවිතා කරන්නෙක් සාදන්න" -#~ msgid "Add a new User" -#~ msgstr "නව භාවිතා කරන්නේක් එක් කරන්න" - #~ msgid "Background color" #~ msgstr "පසුබිම් වර්ණය" diff --git a/po/sk.po b/po/sk.po index dcb8e21c46..c007efbbea 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-07-27 15:32+0200\n" "Last-Translator: Martin Lacina \n" "Language-Team: slovak \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Zobraziť všetko" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "rodičovské okno, alebo prehliadač blokuje operácie medzi oknami z dôvodu " "bezpečnostných nastavení." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Hľadať" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Hľadať" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Komentár k tabuľke" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Stĺpce" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Typ" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Komentáre" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Nie" @@ -232,9 +233,9 @@ msgstr "Nie" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Prepnúť na skopírovanú databázu" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Upraviť alebo exportovať relačnú schému" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabuľka" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -429,19 +430,19 @@ msgstr "Triediť" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Vzostupne" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Zostupne" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Ukázať" @@ -462,8 +463,8 @@ msgid "Del" msgstr "Zmazať" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "alebo" @@ -492,7 +493,7 @@ msgstr "Použiť tabuľky" msgid "SQL query on database %s:" msgstr "SQL dopyt v databáze %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Odošli dopyt" @@ -532,8 +533,8 @@ msgstr[0] "%s výskyt v tabuľke %s" msgstr[1] "%s výskyty v tabuľke %s" msgstr[2] "%s výskytov v tabuľke %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Prechádzať" @@ -544,7 +545,7 @@ msgid "Delete the matches for the %s table?" msgstr "Odstrániť nájdené záznamy z tabuľky %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -614,7 +615,7 @@ msgstr "Sledovanie je aktívne." msgid "Tracking is not active." msgstr "Sledovanie nie je aktívne." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -643,22 +644,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "Na tomto MySQL serveri je prednastaveným úložným systémom %s." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Výber:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Označiť všetko" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Odznačiť všetko" @@ -666,10 +667,10 @@ msgstr "Odznačiť všetko" msgid "Check tables having overhead" msgstr "Zvoliť neoptimálne" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -677,17 +678,17 @@ msgid "Export" msgstr "Exportovať" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Náhľad k tlači" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Vyprázdniť" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -735,9 +736,9 @@ msgstr "Sledované tabuľky" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Databáza" @@ -756,15 +757,15 @@ msgstr "Aktualizované" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Stav" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Akcia" @@ -817,7 +818,7 @@ msgstr "Zadajte každú hodnotu do samostatného políčka." msgid "+ Restart insertion and add a new value" msgstr "+ Začať nové vkladanie a pridať novú hodnotu" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Výstup" @@ -852,6 +853,95 @@ msgstr "Web server nemá oprávenia na uloženie do súboru %s." msgid "Dump has been saved to file %s." msgstr "Výpis bol uložený do súboru %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Hodnoty pre pole \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Geometria" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add index" +msgid "Add a point" +msgstr "Pridať index" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Riadky ukončené" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Pridať nového používateľa" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Pridať nového používateľa" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Pridať stĺpec" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Geometria" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -901,7 +991,7 @@ msgstr "Záznam z obľúbených bol zmazaný." msgid "Showing bookmark" msgstr "Zobrazujem obľúbený príkaz" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Príkaz %s bol zaradený medzi obľúbené" @@ -929,7 +1019,7 @@ msgstr "" "časový limit behu skriptu v php." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -953,15 +1043,15 @@ msgstr "Kliknite pre vybranie" msgid "Click to unselect" msgstr "Kliknite pre zrušenie vyberu" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Príkaz \"DROP DATABASE\" je zakázaný." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Skutočne chcete vykonať príkaz " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte sa ZRUŠIŤ celú databázu!" @@ -1024,8 +1114,8 @@ msgstr "Heslo je prázdne!" msgid "The passwords aren't the same!" msgstr "Heslá sa nezhodujú!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Pridať používateľa" @@ -1043,8 +1133,8 @@ msgid "Close" msgstr "Zavrieť" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1080,12 +1170,12 @@ msgid "Other" msgstr "Ostatné" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1174,12 +1264,12 @@ msgid "System swap" msgstr "Stránkovacia oblasť" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1286,7 +1376,7 @@ msgstr "Pridajte prosím aspoň jednu hodnotu do série" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Žiadny" @@ -1675,8 +1765,8 @@ msgstr "Zobrazit vyhľadávacie pole" msgid "No rows selected" msgstr "Nebol vybraný žiadny riadok" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Zmeniť" @@ -1690,8 +1780,8 @@ msgstr "Maximálny čas behu" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Uložiť" @@ -1703,7 +1793,7 @@ msgstr "Skryť parametre vyhľadávania" msgid "Show search criteria" msgstr "Zobraziť parametre vyhľadávania" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1747,34 +1837,42 @@ msgstr "Pridať/Odobrať stĺpce" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignorovať" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Kopírovať" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "Pridať stĺpec" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Zvoliť odkazovaný kľúč" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Zvoliť cudzí kľúč" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Zoľte, prosím, primárny alebo unikátny kľúč" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Zvoľte, ktoré polia zobraziť" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1782,70 +1880,70 @@ msgstr "" "Neuložili ste zmeny v schéme. Ak ich neuložíte, tieto zmeny budú stratené. " "Chcete pokračovať?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Pridať voľbu pre stĺpec " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Usporiadajte pretiahnutím" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Kliknite pre zoradenie" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Kliknite pre označenie/odznačenie" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Kliknite na šípku
pre zmenu viditeľnosti stĺpca" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Prejsť na Prejsť na pohľad" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Vytvoriť heslo" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Vytvoriť" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Zmeniť heslo" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Viac" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1855,27 +1953,27 @@ msgstr "" "Najnovšia verzia je %s a bola vydaná %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", posledná stabilná verzia:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "aktuálne" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Hotovo" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Predchádzajúci" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1883,149 +1981,149 @@ msgid "Next" msgstr "Ďalší" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Dnes" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Január" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Február" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Marec" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Apríl" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Máj" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Jún" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Júl" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "August" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "September" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Október" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "November" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dec" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Nedeľa" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Pondelok" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Utorok" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Streda" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Štvrtok" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Piatok" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2033,87 +2131,92 @@ msgid "Sun" msgstr "Ne" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Št" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Pi" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "týž" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minúty" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Sekundy" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Veľkosť písma" @@ -2227,13 +2330,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Databázy" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Chyba" @@ -2364,7 +2467,7 @@ msgstr "Vzhľad %s nebol nájdený!" msgid "Theme path not found for theme %s!" msgstr "Nebola nájdená platná cesta ku vzhľadu %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Vzhľad" @@ -2536,7 +2639,7 @@ msgstr "Tabuľky" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Dáta" @@ -2604,7 +2707,7 @@ msgstr "Chybné meno servera %1$s. Prosím, skontrolujte konfiguráciu." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2669,100 +2772,100 @@ msgstr "SQL dopyt" msgid "MySQL said: " msgstr "MySQL hlási: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Nepodarilo sa pripojiť k SQL validátoru!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Vysvetliť SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Preskočiť vysvetlenie SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Bez PHP kódu" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Vytvoriť PHP kód" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Obnoviť" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Bez kontroly SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Skontrolovať SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Upraviť dopyt na tejto stránke" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Upraviť tu" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profilovanie" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Ne" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%a %d.%B %Y, %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dní, %s hodín, %s minút a %s sekúnd" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy msgid "Missing parameter:" msgstr "Odstrániť index/indexy" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2770,7 +2873,7 @@ msgctxt "First page" msgid "Begin" msgstr "Začiatok" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2779,7 +2882,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Predchádzajúci" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2788,7 +2891,7 @@ msgctxt "Next page" msgid "Next" msgstr "Ďalší" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2796,34 +2899,34 @@ msgctxt "Last page" msgid "End" msgstr "Koniec" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Prejsť na databázu "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Kliknite pre prepnutie" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Štruktúra" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2831,37 +2934,37 @@ msgstr "Štruktúra" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Vložiť" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operácie" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Prechádzať váš počítač:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvoľte súbor z upload adresára %s web servera:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Adresár určený pre upload súborov sa nedá otvoriť" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Žiadny súbor pre nahrávanie" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Spustiť" @@ -3027,7 +3130,7 @@ msgstr "Povoliť užívateľom prispôsobiť túto hodnotu" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Vynulovať" @@ -3295,7 +3398,7 @@ msgid "Character set of the file" msgstr "Znaková sada súboru" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formát" @@ -4958,7 +5061,7 @@ msgstr "Vyžaduje povolené kontrolovanie SQL" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Heslo" @@ -5253,8 +5356,8 @@ msgid "Designer" msgstr "Dizajnér" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Oprávnenia" @@ -5273,7 +5376,7 @@ msgstr "Udalosti" msgid "Triggers" msgstr "Spúšťače" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5332,7 +5435,7 @@ msgid "Create" msgstr "Vytvoriť" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Žiadne oprávnenia" @@ -5652,12 +5755,12 @@ msgstr "Zoradiť podľa kľúča" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Nastavenia" @@ -5685,8 +5788,8 @@ msgstr "Zobraziť binárny obsah" msgid "Show BLOB contents" msgstr "Zobraziť obsah BLOBu" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Skryť" @@ -5695,10 +5798,6 @@ msgstr "Skryť" msgid "Browser transformation" msgstr "Transformácia pri prehliadaní" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Geometria" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "Text (Well Known Text)" @@ -5707,57 +5806,53 @@ msgstr "Text (Well Known Text)" msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Kopírovať" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Riadok bol zmazaný" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Zabiť" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "v dopyte" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Zobrazené riadky" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "celkovo" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Dopyt zabral %01.4f s" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Náhľad tlače (s kompletnými textami)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Zobraziť graf" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Zobraziť GIS data" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Vytvoriť pohľad" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Linka nebola nájdená" @@ -5955,7 +6050,7 @@ msgstr "" "Percentuílny podiel odpadu v úložnom súbore predtým, než je súbor zhustený." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Port" @@ -6267,7 +6362,7 @@ msgstr "Zobraziť MIME typy" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Hostiteľ" @@ -6464,7 +6559,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "Otvoriť nové okno phpMyAdmina" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6478,54 +6573,54 @@ msgstr "výsledok SQL" msgid "Generated by" msgstr "Vygenerované" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 #, 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 #, 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:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Prejsť do databázy" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Chýba hodnota pre %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Prejsť do tabuľky" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Iba štruktúru" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Prejsť na Prejsť na pohľad" @@ -6574,7 +6669,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Názov tabuľky" @@ -6595,6 +6690,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "Súbor %s neobsahuje ID kľúč" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "Režim kompatibility SQL:" @@ -6641,7 +6762,7 @@ msgstr "" msgid "Add prefix" msgstr "Odstrániť index/indexy" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Žiadna zmena" @@ -6650,7 +6771,7 @@ msgid "Charset" msgstr "Znaková sada" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binárny" @@ -6958,7 +7079,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Meno používateľa" @@ -6978,9 +7099,9 @@ msgid "Variable" msgstr "Premenná" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Hodnota" @@ -7006,7 +7127,7 @@ msgstr "Akýkoľvek používateľ" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Požiť textové pole" @@ -7202,7 +7323,7 @@ msgid "Returns" msgstr "Návratový typ" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Čas" @@ -7356,8 +7477,8 @@ msgstr "Spustiť rutinu" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funkcia" @@ -7666,8 +7787,8 @@ msgstr "Neznámy jazyk: %1$s." msgid "Current Server" msgstr "Aktuálny server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Synchronizovať" @@ -7689,7 +7810,7 @@ msgstr "Znakové sady" msgid "Engines" msgstr "Systémy" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Zdrojová databáza" @@ -7707,7 +7828,7 @@ msgstr "Vzdialený server" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Cieľová databáza" @@ -7730,11 +7851,11 @@ msgstr "Vyčistiť" msgid "Columns" msgstr "Stĺpce" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Dovoliť používať túto položku všetkým používateľom" @@ -7762,7 +7883,7 @@ msgstr "Iba prezrieť" msgid "Location of the text file" msgstr "Umiestnenie textového súboru" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "upload adresár web serveru" @@ -7958,23 +8079,29 @@ msgid "+ Add a value" msgstr "Pridať nového používateľa" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Prejsť hodnoty cudzích kľúčov" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operátor" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Hľadať" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Vložiť" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8124,8 +8251,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "V ZIP archíve neboli nájdené žiadne súbory!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Chyba v ZIP archíve:" @@ -8149,8 +8276,8 @@ msgstr "Ďalšie nastavenia" msgid "Protocol version" msgstr "Verzia protokolu" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Používateľ" @@ -8289,7 +8416,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Žiadne databázy" @@ -8316,7 +8443,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Vytvoriť tabuľku" @@ -8658,96 +8785,96 @@ msgstr "Úložné Systémy" msgid "View dump (schema) of databases" msgstr "Export databáz" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Všetky oprávnenia okrem GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Povolí meniť štruktúru existujúcich tabuliek." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Umožňuje upravovať a odstraňovať uložené procedúry." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Povolí vytváranie nových databáz a tabuliek." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Umožňuje vytvárať uložené procedúry." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Povolí vytváranie nových tabuliek." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Povolí vytváranie dočasných tabuliek." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Umožňuje vytvárať, odstraňovať a premenovávať používateľské kontá." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Umožňuje vytvárať nové pohľady." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Povolí mazanie dát." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Povolí odstraňovanie databáz a tabuliek." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Povolí odstraňovanie tabuliek." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Umožňuje spúšťať uložené procedúry." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Povolí importovanie a exportovanie dát zo/do súborov na serveri." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "Povolí pridávanie uživatelov a práv bez znovunačítania tabuliek práv." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Povolí vytváranie a mazanie indexov." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Povolí vkladanie a nahradzovanie dát." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Povolí zmaknutie tabuliek pre aktuálne vlákno." @@ -8777,54 +8904,54 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Obmedzuje počet simultánnych pripojení používateľa." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Nefunguje v tejto verzii MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Povolí znovunačítanie nastavení a vyprázdňovanie vyrovnávacích pamätí " "serveru." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Povolí používateľovi zistiť kde je hlavný / pomocný server." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Potrebné pre replikáciu pomocných serverov." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Povolí čítanie dát." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Povolí prístup ku kompletnému zoznamu databáz." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Umožňuje spúšťať príkazy so SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Povolí vypnutie serveru." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8835,43 +8962,43 @@ msgstr "" "premenných alebo zabíjanie procesov iných používateľov." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Povolí vytváranie a mazanie spúšťačov" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Povolí menenie dát." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Žiadne práva." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Žiadny" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Oprávnenia pre jednotlivé tabuľky" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Poznámka: názvy MySQL oprávnení sú uvádzané po anglicky " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administrácia" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globálne práva" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Oprávnenia pre jednotlivé databázy" @@ -8892,7 +9019,7 @@ msgstr "Prihlásenie" msgid "Do not change the password" msgstr "Nezmeniť heslo" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Nebol nájdený žiadny používateľ." @@ -8941,7 +9068,7 @@ msgstr "Vybraní používatelia bol úspešne odstránený." msgid "The privileges were reloaded successfully." msgstr "Práva boli úspešne znovunačítané." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Upraviť oprávnenia" @@ -8949,35 +9076,35 @@ msgstr "Upraviť oprávnenia" msgid "Revoke" msgstr "Zrušiť" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Akýkoľvek" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Prehľad používatelov" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Prideliť" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Odstrániť vybraných používateľov" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Odobranie všetkých aktívnych práv používateľom a ich následné odstránenie." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8990,51 +9117,51 @@ msgstr "" "tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať " "%sznovunačítanie práv%s predtým ako budete pokračovať." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Oprávnenia pre jednotlivé stĺpce" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Pridať oprávnenia pre nasledujúcu databázu" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Náhradzujúcim znakom % a _ by mal predchádzať znak \\, pokiaľ ich nechcete " "použiť doslovne" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Pridať oprávnenia pre nasledujúcu tabuľku" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Zmeniť informácie o používateľovi / Kopírovať používateľa" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Vytvoriť nového používateľa s rovnakými právami a ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... zachovať pôvodného používateľa." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... zmazať pôvodného používateľa z tabuliek používateľov." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... odobrať všetky oprávnenia pôvodnému používateľovi a následne ho zmazať." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9042,46 +9169,46 @@ msgstr "" " ... zmazať pôvodného používateľa z tabuliek používateľov a potom " "znovunačítať oprávnenia." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Databáza pre používateľa" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Žiadny" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Vytvoriť databázu s rovnakým menom a prideliť všetky oprávnenia" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Prideliť všetky oprávnenia pomocou masky (používateľ\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Prideliť všetky oprávnenia na databázu "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Používatelia majúci prístup k "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globálny" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "závislé na databáze" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "nahradzujúci znak" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "Užívateľ bol pridaný." @@ -10386,112 +10513,112 @@ msgstr[0] "Minúty" msgstr[1] "Minúty" msgstr[2] "Minúty" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Nepodarilo sa pripojiť k zdroju" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Nepodarilo sa pripojiť k cieľu" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' databáza neexistuje." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Pridať stĺpce" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Odstrániť stĺpce" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Upraviť stĺpce" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Odstrániť indexy" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Aplikovať indexy" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Upraviť riadky" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Vložiť riadky" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Aplikovať Vybrané Zmeny" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Synchronizovať Databázy" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Vykonaných dopytov" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Súčasné pripojenie" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Konfigurácia: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10788,34 +10915,34 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Zobrazujem ako PHP kód" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Skontrolované SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexami v tabuľke `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Názov" @@ -10824,63 +10951,63 @@ msgstr "Názov" msgid "Table %1$s has been altered successfully" msgstr "Tabuľka %1$s bola úspešné upravená" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "Kvôli dĺžke poľa,
toto pole sa nemusí dať upraviť " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binárny - neupravujte" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Vložiť ako nový riadok" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 #, fuzzy msgid "Show insert query" msgstr "Zobrazujem SQL dotaz" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "a potom" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Späť" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Vložiť nový záznam" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Späť na túto stránku" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Upraviť nasledujúci riadok" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Pre pohyb medzi hodnotami použite klávesu TAB alebo pre pohyb všetkými " "smermi klávesy CTRL+šípky" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10959,51 +11086,47 @@ msgstr "Tabuľka %1$s bola vytvorená." msgid "View dump (schema) of table" msgstr "Zobraziť dump (schému) tabuľky" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Zobraziť výber serverov" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Textarea columns" msgid "Label column" msgstr "Stĺpce s textovou oblasťou" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Celkom" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Uložiť ako súbor" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11227,23 +11350,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Zvoliť stĺpec (najmenej jeden):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Pridať vyhľadávacie parametre (obsah dopytu po \"where\" príkaze):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "záznamov na stránku" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Zobraziť zoradené:" @@ -12879,9 +13002,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Vytvoriť uživateľa" -#~ msgid "Add a new User" -#~ msgstr "Pridať nového používateľa" - #~ msgid "Show table row links on left side" #~ msgstr "Zobrazí odkazy riadkov tabuľky na ľavej strane" diff --git a/po/sl.po b/po/sl.po index 92fbd46375..877790d8fb 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-16 22:58+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" @@ -11,17 +11,17 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " -"n%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" +"%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Pokaži vse" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ 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:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Iskanje" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Iskanje" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Pripomba tabele" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Stolpec" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Vrsta" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Pripombe" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Ne" @@ -232,9 +233,9 @@ msgstr "Ne" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Preklopi na kopirano zbirko podatkov" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Uredi ali izvozi relacijsko shemo" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -429,19 +430,19 @@ msgstr "Razvrsti" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Naraščajoče" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Padajoče" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Pokaži" @@ -462,8 +463,8 @@ msgid "Del" msgstr "Briši" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Ali" @@ -492,7 +493,7 @@ msgstr "Uporabi tabele" msgid "SQL query on database %s:" msgstr "Poizvedba SQL na zbirki podatkov %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Izvedi poizvedbo" @@ -533,8 +534,8 @@ msgstr[1] "%s zadetka v tabeli %s" msgstr[2] "%s zadetki v tabeli %s" msgstr[3] "%s zadetkov v tabeli %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Prebrskaj" @@ -545,7 +546,7 @@ msgid "Delete the matches for the %s table?" msgstr "Izbrišem zadetke v tabeli %s?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -616,7 +617,7 @@ msgstr "Sledenje je aktivno." msgid "Tracking is not active." msgstr "Sledenje ni aktivno." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -644,22 +645,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Z označenim:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Označi vse" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Odznači vse" @@ -667,10 +668,10 @@ msgstr "Odznači vse" msgid "Check tables having overhead" msgstr "Preveri prekoračene" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -678,17 +679,17 @@ msgid "Export" msgstr "Izvozi" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Pogled za tiskanje" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Izprazni" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -736,9 +737,9 @@ msgstr "Sledene tabele" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Zbirka podatkov" @@ -757,15 +758,15 @@ msgstr "Posodobljeno" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Stanje" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Dejanje" @@ -818,7 +819,7 @@ msgstr "Vnesite vsako vrednost v svoje polje." msgid "+ Restart insertion and add a new value" msgstr "+ Ponovno začni vstavljanje in dodaj novo vrednost" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Izhod" @@ -853,6 +854,95 @@ msgstr "Spletni strežnik nima dovoljenja za shranjevanje datoteke %s." msgid "Dump has been saved to file %s." msgstr "Dump je shranjen v datoteko %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Vrednosti za stolpec \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Uporabi OpenStreetMaps kot osnovni sloj" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Geometrija" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Dodaj rutino" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Vrstice zaključene z" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Dodaj novega uporabnika" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Dodaj novega uporabnika" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Dodaj stolpec" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Geometrija" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -901,7 +991,7 @@ msgstr "Zaznamek je odstranjen." msgid "Showing bookmark" msgstr "Prikazovanje zaznamka" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Zaznamek %s je ustvarjen" @@ -929,7 +1019,7 @@ msgstr "" "povečate vaše časovne omejitve PHP." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -953,15 +1043,15 @@ msgstr "Kliknite za označitev" msgid "Click to unselect" msgstr "Kliknite za odznačitev" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Poizvedbe \"DROP DATABASE\" so izključene." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Ali res želite " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" @@ -1025,8 +1115,8 @@ msgstr "Geslo je prazno!" msgid "The passwords aren't the same!" msgstr "Gesli se ne ujemata!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Dodaj uporabnika" @@ -1044,8 +1134,8 @@ msgid "Close" msgstr "Zapri" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1081,12 +1171,12 @@ msgid "Other" msgstr "Drugo" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1141,17 +1231,14 @@ msgid "" msgstr "" #: js/messages.php:96 -#| msgid "Query cache" msgid "Query cache efficiency" msgstr "Učinkovitost predpomnilnika poizvedb" #: js/messages.php:97 po/advisory_rules.php:70 -#| msgid "Query cache" msgid "Query cache usage" msgstr "Uporaba predpomnilnika poizvedb" #: js/messages.php:98 -#| msgid "Query cache" msgid "Query cache used" msgstr "Uporabljenega predpomnilnika poizvedb" @@ -1168,12 +1255,12 @@ msgid "System swap" msgstr "Sistemska izmenjava" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1262,7 +1349,7 @@ msgstr "Prosimo, v serijo dodajte vsaj eno spremenljivko" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Brez" @@ -1390,10 +1477,6 @@ msgid "Analysing & loading logs. This may take a while." msgstr "Analiziranje in nalaganje dnevnikov. To lahko traja nekaj časa." #: js/messages.php:165 -#| msgid "" -#| "This columns shows the amount of identical queries that are grouped " -#| "together. However only the SQL Text is being compared, thus the queries " -#| "other attributes such as start time may differ." msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " @@ -1643,8 +1726,8 @@ msgstr "Prikaži polje poizvedbe" msgid "No rows selected" msgstr "Ni izbranih vrstic" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Spremeni" @@ -1656,8 +1739,8 @@ msgstr "Čas izvajanja poizvedbe" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Shrani" @@ -1669,7 +1752,7 @@ msgstr "Skrij iskalne pogoje" msgid "Show search criteria" msgstr "Prikaži iskalne pogoje" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1706,7 +1789,6 @@ msgid "Strings are converted into integer for plotting" msgstr "" #: js/messages.php:278 -#| msgid "Add/Delete columns" msgid "Select two columns" msgstr "Izberite dva stolpca" @@ -1714,32 +1796,40 @@ msgstr "Izberite dva stolpca" msgid "Select two different columns" msgstr "Izberite dva različna stolpca" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Prezri" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Kopiraj" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "Dodaj stolpce" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Izberite referenčni ključ" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Izberite tuji ključ" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Prosimo, izberite primarni ključ ali unikatni ključ" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Izberite stolpec za prikaz" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1747,15 +1837,15 @@ msgstr "" "Niste shranili sprememb ureditve. Če jih ne shranite, bodo izgubljena. " "Želite nadaljevati?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Dodaj možnost za stolpec " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "Pritisnite ubežnico (escape) za prekinitev urejanja" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -1763,56 +1853,55 @@ msgstr "" "Uredili ste nekatere podatke, vendar jih niste shranili. Ste prepričani, da " "želite zapustiti stran, preden shranite podatke?" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Povlecite za preureditev" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Kliknite za razvrstitev" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Kliknite za označitev/opustitev" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Kliknite spustno puščico
za preklop vidnosti stolpcev" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Večino stolpcev lahko urejate
neposredno s klikom na njihovo vsebino." -#: js/messages.php:307 -#| msgid "Go to view" +#: js/messages.php:319 msgid "Go to link" msgstr "Pojdi na povezavo" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Ustvari geslo" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Ustvari" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Spremeni geslo" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Več" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1822,258 +1911,263 @@ msgstr "" "Najnovejša različica je %s, izdana %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", zadnja ustaljena različica:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "posodobljeno" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Končano" -#: js/messages.php:344 +#: js/messages.php:356 msgctxt "Previous month" msgid "Prev" msgstr "Prej" -#: js/messages.php:349 +#: js/messages.php:361 msgctxt "Next month" msgid "Next" msgstr "Nasl" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Danes" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "januar" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "februar" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "marec" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "april" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "maj" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "junij" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "julij" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "avgust" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "september" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "oktober" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "november" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "dec" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "nedelja" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "ponedeljek" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "torek" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "sreda" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "četrtek" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "petek" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "sob" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "ne" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "po" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "sr" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "če" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "pe" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "ted." -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Ura" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minuta" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Sekunda" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Velikost pisave" @@ -2183,13 +2277,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Zbirke podatkov" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Napaka" @@ -2290,8 +2384,8 @@ msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -"Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej " -"$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" +"Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej $cfg" +"['Servers'][$i]['MaxTableUiprefs'] %s)" #: libraries/Theme.class.php:145 #, php-format @@ -2321,7 +2415,7 @@ msgstr "Tema %s ni bila najdena!" msgid "Theme path not found for theme %s!" msgstr "Pot teme ni bila najdena za temo %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Motiv" @@ -2491,7 +2585,7 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Podatki" @@ -2561,7 +2655,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Strežnik" @@ -2626,152 +2720,152 @@ msgstr "Poizvedba SQL" msgid "MySQL said: " msgstr "MySQL je vrnil: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Ne morem se povezati s preverjalnikom SQL!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Razloži stavek SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Preskoči razlago stavka SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Brez kode PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Ustvari kodo PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Osveži" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Preskoči preverjanje pravilnosti SQL stavka" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Preveri pravilnost stavka SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Urejanje te poizvedbe v vrstici" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "V vrstici" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profiliranje" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y ob %H.%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dni, %s ur, %s minut in %s sekund" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "Manjkajoč parameter:" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 msgctxt "First page" msgid "Begin" msgstr "Začetek" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 msgctxt "Previous page" msgid "Previous" msgstr "Prejšnja" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 msgctxt "Next page" msgid "Next" msgstr "Naslednja" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 msgctxt "Last page" msgid "End" msgstr "Konec" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Preskoči na zbirko podatkov "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Kliknite za preklop" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2779,37 +2873,37 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Vstavi" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Prebrskajte svoj računalnik:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Nobene datoteke ni za naložiti" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Izvedi" @@ -2976,7 +3070,7 @@ msgstr "Dovoli uporabnikom prilagajati to vrednost" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Ponastavi" @@ -3247,7 +3341,7 @@ msgid "Character set of the file" msgstr "Nabor znakov datoteke" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Oblika" @@ -4475,7 +4569,6 @@ msgstr "" "MaxTableUiprefs) najnovejših zapisov in da samodejno brišemo starejše zapise" #: libraries/config/messages.inc.php:399 -#| msgid "Maximum number of tables displayed in table list" msgid "Maximum number of records saved in \"table_uiprefs\" table" msgstr "Največje število zapisov, shranjenih v tabeli \"table_uiprefs\"" @@ -4906,7 +4999,7 @@ msgstr "Potrebuje omogočen Preverjalnik SQL" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Geslo" @@ -5203,8 +5296,8 @@ msgid "Designer" msgstr "Oblikovalnik" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilegiji" @@ -5223,7 +5316,7 @@ msgstr "Dogodki" msgid "Triggers" msgstr "Sprožilci" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5284,7 +5377,7 @@ msgid "Create" msgstr "Ustvari" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Brez privilegijev" @@ -5602,12 +5695,12 @@ msgstr "Uredi po ključu" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Možnosti" @@ -5635,8 +5728,8 @@ msgstr "Prikaži dvojiške vsebine" msgid "Show BLOB contents" msgstr "Prikaži vsebine BLOB" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Skrij" @@ -5645,10 +5738,6 @@ msgstr "Skrij" msgid "Browser transformation" msgstr "Pretvorba z brskalnikom" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Geometrija" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "Dobro poznano besedilo" @@ -5657,57 +5746,53 @@ msgstr "Dobro poznano besedilo" msgid "Well Known Binary" msgstr "Dobro poznana dvojiška datoteka" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Kopiraj" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Vrstica je izbrisana" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Prekini proces" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "v poizvedbi" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Prikazujem vrstice" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "skupaj" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Poizvedba je potrebovala %01.4f s" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Pogled za tiskanje (s polnimi besedili)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Predstavi podatke GIS" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Ustvari pogled" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Povezave ni mogoče najti" @@ -5903,7 +5988,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "Odstotek smeti v shrambni datoteki, preden je ta stisnjena." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Vrata" @@ -6258,7 +6343,7 @@ msgstr "Prikaži vrste MIME" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Gostitelj" @@ -6474,7 +6559,7 @@ msgstr "Izvozi vsebine" msgid "Open new phpMyAdmin window" msgstr "Odpri novo okno phpMyAdmin" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "Za predstavitev GIS ni najdenih podatkov." @@ -6486,51 +6571,51 @@ msgstr "Rezultat SQL" msgid "Generated by" msgstr "Ustvaril" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "Uredite strukturo s sledenjem povezavi \"Struktura\"" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Pojdi v zbirko podatkov" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "Uredi nastavitve za %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Pojdi v tabelo" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, php-format msgid "Structure of %s" msgstr "Struktura %s" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Pojdi na pogled" @@ -6586,7 +6671,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Ime tabele" @@ -6608,6 +6693,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Uvozi denarne enote (npr. $5.00 v 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Ta stran ne vsebuje nobenih tabel!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "Združljivostni način SQL:" @@ -6655,7 +6766,7 @@ msgstr "Dodaj predpono tabele" msgid "Add prefix" msgstr "Dodaj predpono" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Brez sprememb" @@ -6664,7 +6775,7 @@ msgid "Charset" msgstr "Nabor znakov" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Dvojiško" @@ -6974,7 +7085,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Uporabniško ime" @@ -6992,9 +7103,9 @@ msgid "Variable" msgstr "Spremenljivka" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Vrednost" @@ -7022,7 +7133,7 @@ msgstr "Kateri koli uporabnik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Uporabi besedilno polje" @@ -7196,7 +7307,7 @@ msgid "Returns" msgstr "Vrnjeno" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Čas" @@ -7341,8 +7452,8 @@ msgstr "Izvedi rutino" msgid "Routine parameters" msgstr "Parametri rutine" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funkcija" @@ -7625,8 +7736,8 @@ msgstr "Neznani jezik: %1$s." msgid "Current Server" msgstr "Trenutni strežnik" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Sinhroniziraj" @@ -7648,7 +7759,7 @@ msgstr "Nabori znakov" msgid "Engines" msgstr "Pogoni" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Izvorna zbirka podatkov" @@ -7666,7 +7777,7 @@ msgstr "Oddaljeni strežnik" msgid "Difference" msgstr "Razlika" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Ciljna zbirka podatkov" @@ -7689,11 +7800,11 @@ msgstr "Počisti" msgid "Columns" msgstr "Stolpci" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Označi to poizvedbo SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Dovoli dostop do zaznamka vsem uporabnikom" @@ -7721,7 +7832,7 @@ msgstr "Samo pogled" msgid "Location of the text file" msgstr "Mesto datoteke z besedilom" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "imenik za nalaganje datotek" @@ -7915,22 +8026,27 @@ msgid "+ Add a value" msgstr "+ Dodaj vrednost" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operator" -#: libraries/tbl_select.lib.php:131 -#| msgid "Search" +#: libraries/tbl_select.lib.php:143 msgid "Table Search" msgstr "Iskanje po tabeli" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Vstavi" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8092,8 +8208,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "V arhivu ZIP ni bilo najdenih datotek!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Napaka v arhivu ZIP:" @@ -8117,8 +8233,8 @@ msgstr "Več nastavitev" msgid "Protocol version" msgstr "Različica protokola" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Uporabnik" @@ -8269,7 +8385,7 @@ msgstr "" "Strežnik, ki teče z Suhosin. Prosimo, nanašajte se na %sdokumentacijo%s za " "morebitna vprašanja." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Brez zbirk podatkov" @@ -8294,7 +8410,7 @@ msgstr "Pokaži/Skrij levi meni" msgid "Save position" msgstr "Shrani položaj" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Ustvari tabelo" @@ -8634,97 +8750,97 @@ msgstr "Pogoni skladiščenja" msgid "View dump (schema) of databases" msgstr "Pokaži povzetek stanja zbirk podatkov" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Vsebuje vse privilegije razen GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Omogoča spreminjanje strukture obstoječih tabel." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Omogoča ustvarjanje in brisanje shranjenih rutin." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Omogoča ustvarjanje novih podatkovnih zbirk in tabel." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Omogoča ustvarjanje shranjenih rutin." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Omogoča ustvarjanje novih tabel." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Omogoča ustvarjanje začasnih tabel." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Omogoča ustvarjanje, brisanje in preimenovanje uporabniških računov." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Omogoča ustvarjanje novih pogledov." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Omogoča brisanje podatkov." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Omogoča brisanje podatkovnih zbirk in tabel." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Omogoča brisanje tabel." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Omogoča določanje dogodkov za načrtovalnik dogodkov" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Omogoča izvajanje shranjenih rutin." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Omogoča uvažanje in izvažanje podatkov v datoteke." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Omogoča dodajanje uporabnikov in privilegijev brez osveževanja privilegijev." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Omogoča ustvarjanje in brisanje indeksov." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Omogoča vstavljanje in zamenjavo podatkov." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Omogoča zaklepanje tabel za trenutno temo." @@ -8754,56 +8870,56 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Omeji število sočasnih povezav, ki jih lahko ima uporabnik." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Omogoča ogled procesov vseh uporabnikov" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "V tej različici MySQL nima pomena." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Omogoča osveževanje strežnikovih nastavitev in praznjenje strežnikovih " "predpomnilnikov." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Da uporabniku pravico poizvedovati kje so njegovi nadrejeni / podrjeni " "strežniki." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Potrebno za podrejene strežnike pri replikaciji." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Omogoča branje podatkov." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Omogoča dostop do popolnega spiska podatkovnih zbirk." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Omogoča izvajanje poizvedb SHOW CREATE VIEW." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Omogoča ugašanje strežnika." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8814,43 +8930,43 @@ msgstr "" "globalnih spremenljivk in ukinjanje procesov drugih uporabnikov." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Omogoča ustvarjanje in brisanje sprožilcev" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Omogoča spreminjanje podatkov." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Brez privilegijev." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Brez" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Privilegiji tipični za tabelo" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Opomba: Imena privilegijev MySQL so zapisana v angleščini " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globalni privilegiji" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Privilegiji tipični za podatkovno zbirko" @@ -8871,7 +8987,7 @@ msgstr "Podatki o prijavi" msgid "Do not change the password" msgstr "Ne spreminjaj gesla" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Najden ni bil noben uporabnik." @@ -8920,7 +9036,7 @@ msgstr "Uspešno sem izbrisal izbrane uporabnike." msgid "The privileges were reloaded successfully." msgstr "Uspešno sem osvežil privilegije." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Uredi privilegije" @@ -8928,34 +9044,34 @@ msgstr "Uredi privilegije" msgid "Revoke" msgstr "Odvzemi" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Kateri koli" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Pregled uporabnikov" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Dovoli" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Izbriši izbrane uporabnike" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Odvzemi uporabnikom aktivne privilegije in jih potem izbriši." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8968,50 +9084,50 @@ msgstr "" "jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " "morate pred nadaljevanjem %sosvežiti privilegije%s." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Privilegiji tipični za stolpec" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na naslednji podatkovni zbirki" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Pred nadomestna znaka % in _ je potrebno postaviti \\, če ju želite " "uporabiti dobesedno" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na naslednji tabeli" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Spremeni prijavne informacije / Kopiraj uporabnika" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Ustvari novega uporabnika z enakimi pravicami in ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... obdrži starega." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... izbriši starega s seznama uporabnikov." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... prekliči vse aktivne pravice starega uporabnika ter jih izbriši." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9019,47 +9135,47 @@ msgstr "" " ... izbriši starega uporabnika s seznama uporabnikov ter ponovno naloži " "njegove pravice." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Podatkovna zbirka za uporabnika" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Nobena" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Ustvari zbirko podatkov z enakim imenom in dodeli vse privilegije" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "Dodeli vse privilegije na imenu z nadomestnim znakom (uporabniskoime\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Dodeli vse privilegije za podatkovno zbirko "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Uporabniški dostop do "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globalno" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "glede na zbirko podatkov" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "nadomestni znak" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "Uporabnik je dodan." @@ -10183,7 +10299,6 @@ msgid "Chart columns" msgstr "Stolpci grafikona" #: server_status.php:1484 -#| msgid "Error management:" msgid "Chart arrangement" msgstr "Razvrstitev grafikonov" @@ -10196,7 +10311,6 @@ msgstr "" "zapleteno nastavitev, jo boste morda želeli izvoziti." #: server_status.php:1485 -#| msgid "Restore default value" msgid "Reset to default" msgstr "Povrni na privzeto" @@ -10205,14 +10319,6 @@ msgid "Monitor Instructions" msgstr "Navodila nadziranja" #: server_status.php:1490 -#| msgid "" -#| "The phpMyAdmin Monitor can assist you in optimizing the server " -#| "configuration and track down time intensive\n" -#| " queries. For the latter you will need to set log_output to " -#| "'TABLE' and have either the slow_query_log or general_log enabled. Note " -#| "however, that the\n" -#| " general_log produces a lot of data and increases server load by " -#| "up to 15%" 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 " @@ -10235,23 +10341,10 @@ msgid "" msgstr "" #: server_status.php:1508 -#| msgid "Pause monitor" msgid "Using the monitor:" msgstr "Uporaba monitorja:" #: server_status.php:1510 -#| msgid "" -#| "Using the monitor:
\n" -#| " Ok, you are good to go! Once you click 'Start monitor' your " -#| "browser will refresh all displayed charts\n" -#| " in a regular interval. You may add charts and change the refresh " -#| "rate under 'Settings', or remove any chart\n" -#| " using the cog icon on each respective chart.\n" -#| "

When you get to see a sudden spike in activity, select the " -#| "relevant time span on any chart by holding down the\n" -#| " left mouse button and panning over the chart. This will load " -#| "statistics from the logs helping you find what caused the\n" -#| " activity spike.

" msgid "" "Ok, you are good to go! Once you click 'Start monitor' your browser will " "refresh all displayed charts in a regular interval. You may add charts and " @@ -10265,18 +10358,6 @@ msgstr "" "grafikonu." #: server_status.php:1512 -#| msgid "" -#| "Using the monitor:
\n" -#| " Ok, you are good to go! Once you click 'Start monitor' your " -#| "browser will refresh all displayed charts\n" -#| " in a regular interval. You may add charts and change the refresh " -#| "rate under 'Settings', or remove any chart\n" -#| " using the cog icon on each respective chart.\n" -#| "

When you get to see a sudden spike in activity, select the " -#| "relevant time span on any chart by holding down the\n" -#| " left mouse button and panning over the chart. This will load " -#| "statistics from the logs helping you find what caused the\n" -#| " activity spike.

" 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 " @@ -10286,22 +10367,13 @@ msgstr "" "Za prikaz poizvedb iz dnevnikov izberite ustrezno časovno obdobje na katerem " "koli grafikonu tako, da pridržite levi miškin gumb in kazalec povlečete čez " "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." +"kliknete na katere koli ponavljajoče stavke SELECT in jih naprej analizirate." #: server_status.php:1519 msgid "Please note:" msgstr "Prosimo, pomnite:" #: server_status.php:1521 -#| msgid "" -#| "Please note:\n" -#| " Enabling the general_log may increase the server load by 5-15%. " -#| "Also be aware that generating statistics from the logs is a\n" -#| " 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.\n" -#| " " 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 " @@ -10315,7 +10387,6 @@ msgstr "" "nadziranja ne potrebujete več. " #: server_status.php:1533 -#| msgid "Remove chart" msgid "Preset chart" msgstr "Prednastavljeni grafikon" @@ -10376,9 +10447,6 @@ 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:1608 -#| msgid "" -#| "

Choose from which log you want the statistics to be generated from. Results are grouped by query text." msgid "Choose from which log you want the statistics to be generated from." msgstr "Izberite dnevnike, iz katerih želite ustvariti statistiko." @@ -10387,7 +10455,6 @@ msgid "Results are grouped by query text." msgstr "Rezultati so združeni po besedilu poizvedbe." #: server_status.php:1615 -#| msgid "Query type" msgid "Query analyzer" msgstr "Analitik poizvedb" @@ -10409,112 +10476,111 @@ msgstr[1] "%d minuti" msgstr[2] "%d minute" msgstr[3] "%d minut" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Ne morem se povezati z virom" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Ne morem se povezati s ciljem" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "Podatkovna zbirka '%s' ne obstaja." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Sinhronizacija strukture" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Sinhronizacija podatkov" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "ni prisotno" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Razlika zgradbe" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Razlika podatkov" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Dodaj stolpec(-ce)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Odstrani stolpec(-ce)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Spremeni stolpec(-ce)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Odstrani indeks(e)" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Uveljavi indeks(e)" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Posodobi vrstico(-e)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Vstavi vrstico(-e)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Ali želite izbrisati vse prejšnje vrstice iz ciljnih tabel?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Uporabi izbrane spremembe" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Sinhroniziraj zbirke podatkov" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Izbrane ciljne tabele so bile sinhronizirane z izvornimi tabelami." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" "Ciljna zbirka podatkov je bila sinhronizirana z izvorno zbirko podatkov" -#: server_synchronize.php:951 -#| msgid "Issued queries" +#: server_synchronize.php:1038 msgid "Executed queries" msgstr "Izvedene poizvedbe" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Vnesite ročno" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Trenutna povezava" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Konfiguracija: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Vtičnica" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10856,34 +10922,34 @@ msgstr "Ključ je prekratek, ima naj vsaj 8 znakov." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem." -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Prikazovanje kot koda PHP" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Preverjen SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Težave z indeksi tabele `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Oznaka" @@ -10892,62 +10958,62 @@ msgstr "Oznaka" msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s je bila uspešno spremenjena" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "Zaradi njegove dolžine
stolpca morda ne bo mogoče urejati " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Odstrani sklic shrambe BLOB" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Dvojiško - ne urejaj" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Naloži v shrambo BLOB" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Vstavi kot novo vrstico" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Vstavi kot novo vrstico in presliši napake" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Prikaži poizvedbo insert" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "in potem" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Nazaj na prejšnjo stran" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Vstavi še eno novo vrstico" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Pojdi nazaj na stran" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Uredi naslednjo vrstico" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za " "premik kamor koli" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Nadaljuj vstavljanje z %s vrsticami" @@ -11018,43 +11084,39 @@ msgstr "Tabela %1$s je ustvarjena." msgid "View dump (schema) of table" msgstr "Preglej povzetek stanja tabele" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "Prikaži predstavitev GIS" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Širina" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Višina" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Stolpec oznak" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- Noben --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "Prostorski stolpec" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Uporabi OpenStreetMaps kot osnovni sloj" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Ponovno nariši" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Shrani kot datoteko" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Ime datoteke" @@ -11276,23 +11338,23 @@ msgstr "Notranja relacija ni nujna, ko obstaja ustrezna relacija FOREIGN KEY." msgid "Foreign key constraint" msgstr "Omejitev tujih ključev" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Izvedi \"query by example\" (nadomestni znak: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Izberite stolpce (vsaj enega):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj iskalne pogoje (telo \"where\" stavka):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Število vrstic na stran" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Vrstni red prikaza:" @@ -11351,7 +11413,6 @@ msgid "Show more actions" msgstr "Prikaži več dejanj" #: tbl_structure.php:603 -#| msgid "Print view" msgid "Edit view" msgstr "Urejevalni pogled" @@ -11542,23 +11603,19 @@ msgid "Create version" msgstr "Ustvari različico" #: tbl_zoom_select.php:140 -#| msgid "Do a \"query by example\" (wildcard: \"%\")" msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns" msgstr "" "Izvedi \"query by example\" (nadomestni znak: \"%\") za dva različna stolpca" #: tbl_zoom_select.php:151 -#| msgid "Hide search criteria" msgid "Additional search criteria" msgstr "Dodatni iskalni pogoji" #: tbl_zoom_select.php:281 -#| msgid "Label" msgid "Data Label" msgstr "Podatkovna oznaka" #: tbl_zoom_select.php:297 -#| msgid "Maximum number of rows to display" msgid "Maximum rows to plot" msgstr "Največje število vrstic za izris" @@ -11567,7 +11624,6 @@ msgid "Browse/Edit the points" msgstr "Prebrskaj/Uredi točke" #: tbl_zoom_select.php:394 -#| msgid "Control user" msgid "How to use" msgstr "Kako uporabljati" @@ -11629,7 +11685,6 @@ msgid "The uptime is only %s" msgstr "Neprekinjeno delovanje je samo %s" #: po/advisory_rules.php:10 -#| msgid "Questions" msgid "Questions below 1,000" msgstr "Vprašanja pod 1.000" @@ -11647,12 +11702,10 @@ msgstr "" #: po/advisory_rules.php:13 #, php-format -#| msgid "Current connection" msgid "Current amount of Questions: %s" msgstr "Trenutno število vprašanj: %s" #: po/advisory_rules.php:15 -#| msgid "Show SQL queries" msgid "Percentage of slow queries" msgstr "Odstotek počasnih poizvedb" @@ -11672,10 +11725,10 @@ msgstr "" #: po/advisory_rules.php:18 #, php-format msgid "The slow query rate should be below 5%%, your value is %s%%." -msgstr "Delež počasnih poizvedb bi moral biti pod 5 %%; vaša vrednost je %s %%." +msgstr "" +"Delež počasnih poizvedb bi moral biti pod 5 %%; vaša vrednost je %s %%." #: po/advisory_rules.php:20 -#| msgid "Flush query cache" msgid "Slow query rate" msgstr "Delež počasnih poizvedb" @@ -11692,7 +11745,6 @@ msgid "" msgstr "" #: po/advisory_rules.php:25 -#| msgid "SQL queries" msgid "Long query time" msgstr "Čas dolgih poizvedb" @@ -11710,17 +11762,14 @@ msgstr "" #: po/advisory_rules.php:28 #, 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 je trenutno nastavljen na %d s." #: po/advisory_rules.php:30 -#| msgid "Show query box" msgid "Slow query logging" msgstr "Beleženje počasnih poizvedb" #: po/advisory_rules.php:31 -#| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." msgstr "Dnevnik počasnih poizvedb je onemogočen." @@ -11754,12 +11803,10 @@ msgstr "" #: po/advisory_rules.php:38 po/advisory_rules.php:43 po/advisory_rules.php:48 #, php-format -#| msgid "Create version" msgid "Current version: %s" msgstr "Trenutna različica: %s" #: po/advisory_rules.php:40 po/advisory_rules.php:45 -#| msgid "Version" msgid "Minor Version" msgstr "Manjša različica" @@ -11780,12 +11827,10 @@ msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "Različica nižja od 5.5.8 (prvi izid GA 5.5)." #: po/advisory_rules.php:47 -#| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" msgstr "Morali bi nadgraditi, na ustaljeno različico MySQL 5.5" #: po/advisory_rules.php:50 po/advisory_rules.php:55 -#| msgid "Description" msgid "Distribution" msgstr "Distribucija" @@ -11817,7 +11862,6 @@ msgid "'percona' found in version_comment" msgstr "našel sem 'percona' v version_comment" #: po/advisory_rules.php:60 -#| msgid "MySQL charset" msgid "MySQL Architecture" msgstr "Arhitektura MySQL" @@ -11838,12 +11882,10 @@ msgid "Available memory on this host: %s" msgstr "Razpoložljiv pomnilnik na tem gostitelju: %s" #: po/advisory_rules.php:65 -#| msgid "Query cache" msgid "Query cache disabled" msgstr "Predpomnjenje poizvedb je onemogočeno" #: po/advisory_rules.php:66 -#| msgid "The server is not responding" msgid "The query cache is not enabled." msgstr "Predpomnjenje poizvedb ni omogočeno." @@ -11896,7 +11938,6 @@ msgid "The current query cache hit rate of %s%% is below 20%%" msgstr "" #: po/advisory_rules.php:80 -#| msgid "Query cache" msgid "Query Cache usage" msgstr "Uporaba predpomnilnika poizvedb" @@ -11919,7 +11960,6 @@ msgid "" msgstr "" #: po/advisory_rules.php:85 -#| msgid "Query cache" msgid "Query cache fragmentation" msgstr "Razdrobljenost predpomnilnika poizvedb" @@ -11973,7 +12013,6 @@ msgid "" msgstr "" #: po/advisory_rules.php:95 -#| msgid "Query cache" msgid "Query cache max size" msgstr "Največja velikost predpomnilnika poizvedb" @@ -11995,7 +12034,6 @@ msgid "Current query cache size: %s" msgstr "Trenutna velikost predpomnilnika poizvedb: %s" #: po/advisory_rules.php:100 -#| msgid "Query results" msgid "Query cache min result size" msgstr "Velikost najmanjšega rezultata predpomnilnika poizvedb" @@ -12021,12 +12059,10 @@ msgid "query_cache_limit is set to 1 MiB" msgstr "query_cache_limit je nastavljen na 1 MiB" #: po/advisory_rules.php:105 -#| msgid "Allows creating temporary tables." msgid "Percentage of sorts that cause temporary tables" msgstr "Odstotek razvrščanj, ki so povzročila začasne tabele" #: po/advisory_rules.php:106 po/advisory_rules.php:111 -#| msgid "Allows creating temporary tables." msgid "Too many sorts are causing temporary tables." msgstr "Preveč razvrščanj povzroča začasne tabele." @@ -12048,7 +12084,6 @@ msgstr "" "nižja od 10 %%." #: po/advisory_rules.php:110 -#| msgid "Allows creating temporary tables." msgid "Rate of sorts that cause temporary tables" msgstr "Delež razvrščanj, ki povzroča začasne tabele" @@ -12060,7 +12095,6 @@ msgstr "" "Povprečje začasnih tabel: %s; ta vrednost bi morala biti manj kot 1 na uro." #: po/advisory_rules.php:115 -#| msgid "Start row" msgid "Sort rows" msgstr "Razvrščanje vrstic" @@ -12082,12 +12116,10 @@ msgid "Sorted rows average: %s" msgstr "Povprečje razvrščenih vrstic: %s" #: po/advisory_rules.php:120 -#| msgid "There are no routines to display." msgid "Rate of joins without indexes" msgstr "Delež stikov brez indeksov" #: po/advisory_rules.php:121 -#| msgid "There are no routines to display." msgid "There are too many joins without indexes." msgstr "Obstaja preveč stikov brez indeksov." @@ -12149,12 +12181,10 @@ msgid "" msgstr "" #: po/advisory_rules.php:135 -#| msgid "Where to show the table row links" msgid "Rate of reading next table row" msgstr "Delež branja naslednje vrstice v tabeli" #: po/advisory_rules.php:136 -#| msgid "Where to show the table row links" msgid "The rate of reading the next table row is high." msgstr "Delež branja naslednje vrstice v tabeli je visok." @@ -12192,7 +12222,6 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "Trenutni vrednosti sta tmp_table_size: %s, max_heap_table_size: %s" #: po/advisory_rules.php:145 -#| msgid "Where to show the table row links" msgid "Percentage of temp tables on disk" msgstr "Odstotek začasnih tabel na disku" @@ -12224,8 +12253,6 @@ msgstr "" "pod 25 %%" #: po/advisory_rules.php:150 -#| msgid "%s table" -#| msgid_plural "%s tables" msgid "Temp disk rate" msgstr "Delež začasnih tabel na disku" @@ -12248,7 +12275,6 @@ msgid "" msgstr "" #: po/advisory_rules.php:155 -#| msgid "Sort buffer size" msgid "MyISAM key buffer size" msgstr "Velikost medpomnilnika ključev MyISAM" @@ -12268,13 +12294,11 @@ msgstr "key_buffer_size je 0" #: po/advisory_rules.php:160 #, php-format -#| msgid "Sort buffer size" msgid "Max %% MyISAM key buffer ever used" msgstr "Največji %% medpomnilnika ključev MyISAM kadar koli uporabljen" #: po/advisory_rules.php:161 po/advisory_rules.php:166 #, php-format -#| msgid "Sort buffer size" msgid "MyISAM key buffer (index cache) %% used is low." msgstr "" "%% uporabljenega medpomnilnika ključev MyISAM (predpomnilnika indeksov) je " @@ -12293,7 +12317,6 @@ msgid "max %% MyISAM key buffer ever used: %s, this value should be above 95%%" msgstr "" #: po/advisory_rules.php:165 -#| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" msgstr "Odstotek uporabljenega medpomnilnika ključev MyISAM" @@ -12323,12 +12346,10 @@ msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" #: po/advisory_rules.php:175 -#| msgid "Create table" msgid "Rate of table open" msgstr "Delež odpiranj tabel" #: po/advisory_rules.php:176 -#| msgid "The current number of pending writes." msgid "The rate of opening tables is high." msgstr "Delež odpiranj tabel je visok." @@ -12370,12 +12391,10 @@ msgid "" msgstr "" #: po/advisory_rules.php:185 -#| msgid "Format of imported file" msgid "Rate of open files" msgstr "Delež odprtih datotek" #: po/advisory_rules.php:186 -#| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." msgstr "Delež odprtih datotek je visok." @@ -12386,12 +12405,10 @@ msgstr "" #: po/advisory_rules.php:190 #, php-format -#| msgid "Create table on database %s" msgid "Immediate table locks %%" msgstr "%% takojšnjih zaklepov tabel" #: po/advisory_rules.php:191 po/advisory_rules.php:196 -#| msgid "The number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." msgstr "Preveč zaklepov tabel ni bilo dodeljenih nenudoma." @@ -12414,7 +12431,6 @@ msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" #: po/advisory_rules.php:200 -#| msgid "Key cache" msgid "Thread cache" msgstr "Predpomnilnik niti" @@ -12439,7 +12455,6 @@ msgid "Thread cache hit rate %%" msgstr "Sledenje ni aktivno." #: po/advisory_rules.php:206 -#| msgid "Tracking is not active." msgid "Thread cache is not efficient." msgstr "Predpomnjenje niti ni učinkovito." @@ -12457,7 +12472,6 @@ msgid "Threads that are slow to launch" msgstr "Niti, ki se zaganjajo počasi" #: po/advisory_rules.php:211 -#| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." msgstr "Obstaja preveč niti, ki se zaganjajo počasi." @@ -12488,12 +12502,10 @@ msgstr "" #: po/advisory_rules.php:218 #, php-format -#| msgid "long_query_time is set to %d second(s)." msgid "slow_launch_time is set to %s" msgstr "slow_launch_time je nastavljen na %s" #: po/advisory_rules.php:220 -#| msgid "Persistent connections" msgid "Percentage of used connections" msgstr "Odstotek uporabljenih povezav" @@ -12517,7 +12529,6 @@ msgid "" msgstr "" #: po/advisory_rules.php:225 -#| msgid "Persistent connections" msgid "Percentage of aborted connections" msgstr "Odstotek prekinjenih povezav" @@ -12539,7 +12550,6 @@ msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" #: po/advisory_rules.php:230 -#| msgid "Persistent connections" msgid "Rate of aborted connections" msgstr "Delež prekinjenih povezav" @@ -12552,11 +12562,9 @@ msgstr "Preveč povezav je prekinjenih" msgid "" "Aborted connections rate is at %s, this value should be less than 1 per hour" msgstr "" -"Delež prekinjenih povezav je %s; ta vrednost bi morala biti manj kot 1 na " -"uro" +"Delež prekinjenih povezav je %s; ta vrednost bi morala biti manj kot 1 na uro" #: po/advisory_rules.php:235 -#| msgid "Format of imported file" msgid "Percentage of aborted clients" msgstr "Odstotek prekinjenih odjemalcev" @@ -12578,7 +12586,6 @@ msgstr "" "%s %% vseh odjemalcev je prekinjenih. Ta vrednost bi morala biti pod 2 %%" #: po/advisory_rules.php:240 -#| msgid "Format of imported file" msgid "Rate of aborted clients" msgstr "Delež prekinjenih objemalcev" @@ -12594,7 +12601,6 @@ msgid "Is InnoDB disabled?" msgstr "Je InnoDB onemogočen?" #: po/advisory_rules.php:246 -#| msgid "Could not save recent table" msgid "You do not have InnoDB enabled." msgstr "Nimate omogočenega InnoDB." @@ -12607,7 +12613,6 @@ msgid "have_innodb is set to 'value'" msgstr "have_innodb je nastavljeno na 'value'" #: po/advisory_rules.php:250 -#| msgid "Buffer pool size" msgid "InnoDB log size" msgstr "Velikost dnevnika InnoDB" @@ -12967,9 +12972,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Ustvari uporabnika" -#~ msgid "Add a new User" -#~ msgstr "Dodaj novega uporabnika" - #~ msgid "Show table row links on left side" #~ msgstr "Prikaži povezave do vrstic tabele na levi strani" diff --git a/po/sq.po b/po/sq.po index 78eb127faf..1535f654a0 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-07-21 14:51+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: albanian \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Shfaqi të gjithë" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "keni mbyllur dritaren prind ose rregullimet mbrojtëse të shfletuesit tuaj të " "ndalojnë përditësimet nëpërmjet dritareve." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Kërko" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Kërko" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -137,8 +138,8 @@ msgstr "Komentet e tabelës" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -155,8 +156,8 @@ msgstr "Emrat e kollonave" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Lloji" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Komente" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Jo " @@ -232,9 +233,9 @@ msgstr "Jo " #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -338,7 +339,7 @@ msgstr "Kalo tek databaza e kopjuar" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -368,15 +369,15 @@ msgstr "Skema relacionale" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -437,19 +438,19 @@ msgstr "Renditja" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Në ngjitje" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Në zbritje" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Shfaq" @@ -470,8 +471,8 @@ msgid "Del" msgstr "Fshi" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Ose" @@ -504,7 +505,7 @@ msgstr "Përdor tabelat" msgid "SQL query on database %s:" msgstr "Kërkesë SQL tek databaza %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Dërgo Query" @@ -544,8 +545,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s korrispondon(jnë) tek tabela %s" msgstr[1] "%s korrispondon(jnë) tek tabela %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Shfleto" @@ -557,7 +558,7 @@ msgid "Delete the matches for the %s table?" msgstr "Dump i të dhënave për tabelën" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -635,7 +636,7 @@ msgstr "Gjurmimi është aktiv." msgid "Tracking is not active." msgstr "Gjurmimi nuk është aktiv." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -664,22 +665,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "N.q.s. të zgjedhur:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Zgjidh gjithçka" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Asnjë zgjedhje" @@ -687,10 +688,10 @@ msgstr "Asnjë zgjedhje" msgid "Check tables having overhead" msgstr "Zgjidh të mbingarkuarit" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -698,17 +699,17 @@ msgid "Export" msgstr "Eksporto" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Shfaq për printim" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Zbraz" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -761,9 +762,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Databazat" @@ -783,15 +784,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Gjendja" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Veprimi" @@ -848,7 +849,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -883,6 +884,91 @@ msgstr "Serveri web nuk ka të drejtat e duhura për të ruajtur file %s." msgid "Dump has been saved to file %s." msgstr "Dump u ruajt tek file %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +msgid "Add a point" +msgstr "Shto një fushë të re" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Rreshta që mbarojnë me" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Shto një përdorues të ri" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Shto një përdorues të ri" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +msgid "Add a polygon" +msgstr "Shto një fushë të re" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Shto një përdorues të ri" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -923,7 +1009,7 @@ msgstr "Libërshënuesi u fshi." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -946,7 +1032,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -970,15 +1056,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Komandat \"DROP DATABASE\" nuk janë aktive." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Konfermo: " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Jeni duke SHKATËRRUAR një databazë komplete!" @@ -1048,8 +1134,8 @@ msgstr "Fjalëkalimi është bosh!" msgid "The passwords aren't the same!" msgstr "Fjalëkalimi nuk korrispondon!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1073,8 +1159,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1113,12 +1199,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "." #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1205,12 +1291,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1310,7 +1396,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Asnjë lloj" @@ -1723,8 +1809,8 @@ msgstr "query SQL" msgid "No rows selected" msgstr "Nuk ka rreshta të zgjedhur" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Ndrysho" @@ -1736,8 +1822,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Ruaj" @@ -1751,7 +1837,7 @@ msgstr "query SQL" msgid "Show search criteria" msgstr "query SQL" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1795,109 +1881,117 @@ msgstr "Shto/Fshi kollonat e fushës" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Shpërfill" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy msgid "Add columns" msgstr "Shto një fushë të re" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Zgjidh fushën që dëshiron të shohësh" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ndrysho fjalëkalimin" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 #, fuzzy msgid "Generate" msgstr "Gjeneruar nga" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Ndrysho fjalëkalimin" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Hën" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1905,30 +1999,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Asnjë databazë" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "Asnjë lloj" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Paraardhësi" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1936,96 +2030,96 @@ msgid "Next" msgstr "Në vazhdim" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gjithsej" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Pri" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Maj" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Qer" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Kor" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Gsh" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Tet" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2033,78 +2127,78 @@ msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Qer" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Gsh" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dhj" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Djl" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Hën" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Mar" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pre" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2112,105 +2206,110 @@ msgid "Sun" msgstr "Djl" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sht" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Djl" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Hën" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Mar" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Mër" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Enj" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pre" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sht" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "në përdorim" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "në sekondë" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2315,13 +2414,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Databazat" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Gabim" @@ -2449,7 +2548,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2619,7 +2718,7 @@ msgstr "Tabela" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Të dhëna" @@ -2688,7 +2787,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Serveri" @@ -2753,99 +2852,99 @@ msgstr "query SQL" msgid "MySQL said: " msgstr "Mesazh nga MySQL: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Shpjego SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Mos shpjego SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "pa kod PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Krijo kodin PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Rifresko" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Mos vleftëso SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Vleftëso SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Bytes" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Djl" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B, %Y at %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s ditë, %s orë, %s minuta dhe %s sekonda" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2853,7 +2952,7 @@ msgctxt "First page" msgid "Begin" msgstr "Fillim" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2862,7 +2961,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Paraardhësi" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2871,7 +2970,7 @@ msgctxt "Next page" msgid "Next" msgstr "Në vazhdim" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2879,34 +2978,34 @@ msgctxt "Last page" msgid "End" msgstr "Fund" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Kalo tek databaza "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2914,38 +3013,38 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Shto" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operacione" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, 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/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3124,7 +3223,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Rinis" @@ -3381,7 +3480,7 @@ msgid "Character set of the file" msgstr "Familja gërmave të file:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Formati" @@ -4988,7 +5087,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Fjalëkalimi" @@ -5270,8 +5369,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Të drejtat" @@ -5290,7 +5389,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5349,7 +5448,7 @@ msgid "Create" msgstr "Krijo" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Asnjë e drejtë" @@ -5695,12 +5794,12 @@ msgstr "Rendit sipas kyçit" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Operacione" @@ -5736,8 +5835,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5746,10 +5845,6 @@ msgstr "" msgid "Browser transformation" msgstr "Transformimi i Shfletuesit" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5758,60 +5853,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "rreshti u fshi" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Hiq" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "tek query" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Shfaqja e regjistrimeve " -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "Gjithsej" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Query ka zgjatur %01.4f sec" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Shfaq për printim (me full text)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Shfaq skemën PDF" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Versioni i MySQL" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Lidhja nuk u gjet" @@ -5993,7 +6084,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "rreshtimi" @@ -6324,7 +6415,7 @@ msgstr "Lloje MIME në dispozicion" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6530,7 +6621,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6542,50 +6633,50 @@ msgstr "Rezultati SQL" msgid "Generated by" msgstr "Gjeneruar nga" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Asnjë databazë" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Vetëm struktura" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6636,7 +6727,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6657,6 +6748,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6706,7 +6821,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Asnjë ndryshim" @@ -6715,7 +6830,7 @@ msgid "Charset" msgstr "Familje gërmash" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binar" @@ -7022,7 +7137,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Emri i përdoruesit" @@ -7040,9 +7155,9 @@ msgid "Variable" msgstr "E ndryshueshme" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Vlerë" @@ -7069,7 +7184,7 @@ msgstr "Çfarëdo përdorues" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Përdor fushë teksti" @@ -7259,7 +7374,7 @@ msgid "Returns" msgstr "Opcione për tabelën" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Koha" @@ -7410,8 +7525,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funksioni" @@ -7728,8 +7843,8 @@ msgstr "" msgid "Current Server" msgstr "Serveri" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7752,7 +7867,7 @@ msgstr "Familje gërmash" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Kërko në databazë" @@ -7771,7 +7886,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Kërko në databazë" @@ -7798,11 +7913,11 @@ msgstr "Kalendari" msgid "Columns" msgstr "Emrat e kollonave" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Shtoja të preferuarve këtë query SQL" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" @@ -7830,7 +7945,7 @@ msgstr "Shfaq vetëm" msgid "Location of the text file" msgstr "Pozicioni i file" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "directory e upload të server-it web" @@ -8038,23 +8153,29 @@ msgid "+ Add a value" msgstr "Shto një përdorues të ri" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Shfleto opcionet e huaja" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operator" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Kërko" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Shto" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8238,8 +8359,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8267,8 +8388,8 @@ msgstr "Karakteristikat e përgjithshme të relacionit" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Përdorues" @@ -8403,7 +8524,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Asnjë databazë" @@ -8431,7 +8552,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "Krijo një faqe të re" @@ -8799,101 +8920,101 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Shfaq dump (skema) e databazave" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Përfshin të gjitha të drejtat me përjashtim të GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Lejon ndryshimin e strukturës së tabelave ekzistuese." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "Lejon krijimin dhe eleminimin e treguesve." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Lejon krijimin e tabelave të reja dhe databazave të reja." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 #, fuzzy msgid "Allows creating stored routines." msgstr "Lejon krijimin e tabelave të reja." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Lejon krijimin e tabelave të reja." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Lejon krijimin e tabelave të përkohëshme." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 #, fuzzy msgid "Allows creating new views." msgstr "Lejon krijimin e tabelave të reja." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Lejon fshirjen e të dhënave." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Lejon eleminimin e databazave dhe tabelave." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Lejon eleminimin e tabelave." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" "Lejon importimin e të dhënave nga dhe eksportimin e të dhënave në files." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Lejon të shtosh përdorues dhe të drejta pa ringarkuar tabelat e privilegjeve." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Lejon krijimin dhe eleminimin e treguesve." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Lejon futjen dhe mbishkrimin e të dhënave." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Lejon bllokimin e tabelave për thread e momentit." @@ -8927,55 +9048,55 @@ msgstr "" "Kufizon numrin e lidhjeve të reja që një përdorues mund të hapë në një orë." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Nuk ka asnjë efekt tek ky version i MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Lejon ringarkimin e parametrave të server-it dhe risetimin e cache të " "servërve." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "I jep të drejtën një përdoruesi të pyesë se ku gjenden slaves / masters." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Nevoitet për replikimin e slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Lejon leximin e të dhënave." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Mundëson hyrjen tek lista komplete e databazave." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Lejon përfundimin e serverit." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8986,46 +9107,46 @@ msgstr "" "ndryshueshmeve globale apo fshirja e threads të përdoruesve të tjerë." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Lejon krijimin dhe eleminimin e treguesve." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Lejon ndryshimin e të dhënave." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Asnjë të drejtë." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Asnjë lloj" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Të drejta relative me tabelat" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Shënim: emrat e të drejtave të MySQL janë në Anglisht" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administrimi" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Të drejtat e përgjithshme" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Të drejta specifike të databazës" @@ -9046,7 +9167,7 @@ msgstr "Informacione mbi Identifikimin" msgid "Do not change the password" msgstr "Mos ndrysho fjalëkalim" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9097,7 +9218,7 @@ msgstr "Përdoruesit e zgjedhur u hoqën me sukses." msgid "The privileges were reloaded successfully." msgstr "Të drejtat u përditësuan me sukses." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Ndrysho të drejtat" @@ -9105,34 +9226,34 @@ msgstr "Ndrysho të drejtat" msgid "Revoke" msgstr "Hiq" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Çfarëdo" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Paraqitja e përgjithshme e përdoruesve" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Heq përdoruesit e zgjedhur" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Hiqja të gjitha të drejtat aktive përdoruesve dhe pastaj eleminoi." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9145,96 +9266,96 @@ msgstr "" "drejtave të përdorura nga serveri nëse janë kryer ndryshime manuale. Në këtë " "rast, duhet të %srifreskoni të drejtat%s para se të vazhdoni." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Përdoruesi i zgjedhur nuk u gjet tek tabela e të drejtave." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Të drejtat relative të kollonave" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Shto të drejta tek databaza në vazhdim" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Shto të drejta tek tabela në vazhdim" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Ndrysho Informacionet e Login / Kopjo përdoruesin" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Krijo një përdorues të ri me të njëjta të drejta dhe ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... mbaj të vjetrin." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... elemino të vjetrin nga tabela e përdoruesve." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... hiq të gjitha të drejtat nga i vjetri e pastaj eleminoje." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... elemino të vjetrin nga tabela e përdoruesve e pastaj rilexo të drejtat." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Asnjë lloj" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Kontrollo të drejtat për databazën "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Përdoruesit që kanë hyrje tek "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globale" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "specifik i databazës" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "wildcard" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10414,113 +10535,113 @@ msgid_plural "%d minutes" msgstr[0] "në përdorim" msgstr[1] "në përdorim" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "query SQL" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Lidhje" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10816,36 +10937,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Vleftëso SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Etiketë" @@ -10854,62 +10975,62 @@ msgstr "Etiketë" msgid "Table %1$s has been altered successfully" msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Për shkak të gjatësisë saj,
kjo fushë nuk mund të ndryshohet " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Të dhëna të tipit binar - mos ndrysho" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Shto një rresht të ri" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Mbrapa" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Shto një regjistrim të ri" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Kthehu mbrapa tek kjo faqe" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10993,49 +11114,45 @@ msgstr "Tabela %s u eleminua" msgid "View dump (schema) of table" msgstr "Shfaq dump (skema) e tabelës" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Shto/Fshi kollonat e fushës" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Gjithsej" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Ruaje me emër..." -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11270,25 +11387,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Zbato \"query nga shembull\" (karakteri jolly: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Zgjidh fushat (të paktën një):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Shto kushte kërkimi (trupi i specifikimit \"where\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "regjistrime për faqe" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Mënyra e shfaqjes:" @@ -12844,9 +12961,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Versioni i MySQL" -#~ msgid "Add a new User" -#~ msgstr "Shto një përdorues të ri" - #, fuzzy #~ msgid "Delete the matches for the " #~ msgstr "Dump i të dhënave për tabelën" diff --git a/po/sr.po b/po/sr.po index be0c0aa4a2..e849e86380 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-04-06 18:43+0200\n" "Last-Translator: \n" "Language-Team: serbian_cyrillic \n" @@ -15,13 +15,13 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Прикажи све" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgstr "" "затворили матични прозор, или ваш претраживач онемогућава ажурирање међу " "прозорима због сигурносних подешавања" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Претраживање" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "Претраживање" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -138,8 +139,8 @@ msgstr "Коментари табеле" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -154,8 +155,8 @@ msgstr "Колона" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -166,7 +167,7 @@ msgstr "Тип" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -209,10 +210,10 @@ msgstr "Коментари" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Не" @@ -231,9 +232,9 @@ msgstr "Не" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -334,7 +335,7 @@ msgstr "Пребаци се на копирану базу" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -362,15 +363,15 @@ msgstr "Уреди или извези релациону схему" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Табела" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -432,19 +433,19 @@ msgstr "Сортирање" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Растући" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Опадајући" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Прикажи" @@ -465,8 +466,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "или" @@ -499,7 +500,7 @@ msgstr "Користи табеле" msgid "SQL query on database %s:" msgstr "SQL упит на бази %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Изврши SQL упит" @@ -540,8 +541,8 @@ msgstr[0] "%s погодака унутар табеле %s" msgstr[1] "%s погодака унутар табеле %s" msgstr[2] "%s погодака унутар табеле %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Преглед" @@ -553,7 +554,7 @@ msgid "Delete the matches for the %s table?" msgstr "Приказ података табеле" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -632,7 +633,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -660,22 +661,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s је подразумевани погон складиштења на овом MySQL серверу." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Означено:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Означи све" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "ниједно" @@ -683,10 +684,10 @@ msgstr "ниједно" msgid "Check tables having overhead" msgstr "Провери табеле које имају прекорачења" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -694,17 +695,17 @@ msgid "Export" msgstr "Извоз" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "За штампу" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Испразни" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -758,9 +759,9 @@ msgstr "Провери табелу" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "База података" @@ -781,15 +782,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Статус" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Акција" @@ -847,7 +848,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -882,6 +883,93 @@ msgstr "Веб серверу није дозвољено да сачува да msgid "Dump has been saved to file %s." msgstr "Садржај базе је сачуван у датотеку %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "Додај ново поље" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Линије се завршавају са" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Додај новог корисника" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Додај новог корисника" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "Додај %s поља" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Додај новог корисника" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -929,7 +1017,7 @@ msgstr "Обележивач је управо обрисан." msgid "Showing bookmark" msgstr "Приказивање маркера" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Направљен маркер %s" @@ -957,7 +1045,7 @@ msgstr "" "повећате временска ограничења у PHP-у" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -981,15 +1069,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" команда је онемогућена." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Да ли стварно хоћете да " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Овим ћете УНИШТИТИ комплетну базу података!" @@ -1059,8 +1147,8 @@ msgstr "Лозинка је празна!" msgid "The passwords aren't the same!" msgstr "Лозинке нису идентичне!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1084,8 +1172,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1124,12 +1212,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1221,12 +1309,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "КБ" @@ -1332,7 +1420,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "нема" @@ -1746,8 +1834,8 @@ msgstr "SQL упит" msgid "No rows selected" msgstr "Нема одабраних редова" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Промени" @@ -1759,8 +1847,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Сачувај" @@ -1774,7 +1862,7 @@ msgstr "SQL упит" msgid "Show search criteria" msgstr "SQL упит" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1818,110 +1906,118 @@ msgstr "Додај/обриши колону" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Игнориши" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Копирај" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Додај %s поља" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Изаберите референцирани кључ" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Изабери страни кључ" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Молимо изаберите примарни или јединствени кључ" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Изабери поља за приказ" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy msgid "Go to link" msgstr "База не постоји" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Направи лозинку" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Направи" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Промени лозинку" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1929,30 +2025,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy msgid ", latest stable version:" msgstr "Направи релацију" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "База не постоји" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy msgid "Done" msgstr "Подаци" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1960,96 +2056,96 @@ msgid "Next" msgstr "Следећи" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Укупно" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарни" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "мај" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2057,78 +2153,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "дец" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Уто" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2136,105 +2232,110 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Уто" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у секунди" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Величина фонта" @@ -2345,13 +2446,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Базе" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Грешка" @@ -2484,7 +2585,7 @@ msgstr "Није пронађена тема %s!" msgid "Theme path not found for theme %s!" msgstr "Није пронађена путања до теме за тему %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2656,7 +2757,7 @@ msgstr "Табеле" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Подаци" @@ -2729,7 +2830,7 @@ msgstr "Неисправан назив сервера %1$s. Молимо про #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Сервер" @@ -2794,103 +2895,103 @@ msgstr "SQL упит" msgid "MySQL said: " msgstr "MySQL рече: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Објасни SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Прескочи објашњавање SQL-a" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "без PHP кода" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Направи PHP код" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Освежи" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Прескочи проверу SQL-a" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Провери SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Складиштења" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Профилисање" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "бајтова" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "ЕБ" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Нед" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. у %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s дана, %s сати, %s минута и %s секунди" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Рутине" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2898,7 +2999,7 @@ msgctxt "First page" msgid "Begin" msgstr "Почетак" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2907,7 +3008,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Претходна" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2916,7 +3017,7 @@ msgctxt "Next page" msgid "Next" msgstr "Следећи" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2924,34 +3025,34 @@ msgctxt "Last page" msgid "End" msgstr "Крај" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Пређи на базу "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ова функционалност %s је погођена познатом грешком, видите %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Структура" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2959,38 +3060,38 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Нови запис" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Операције" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директоријум за слање веб сервера " -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Директоријум који сте изабрали за слање није доступан" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3168,7 +3269,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Поништи" @@ -3428,7 +3529,7 @@ msgid "Character set of the file" msgstr "Карактер сет датотеке:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Формат" @@ -5062,7 +5163,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Лозинка" @@ -5344,8 +5445,8 @@ msgid "Designer" msgstr "Дизајнер" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Привилегије" @@ -5365,7 +5466,7 @@ msgstr "Догађаји" msgid "Triggers" msgstr "Окидачи" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5428,7 +5529,7 @@ msgid "Create" msgstr "Направи" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Нема привилегија" @@ -5798,12 +5899,12 @@ msgstr "Сортирај по кључу" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Опције" @@ -5838,8 +5939,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Сакриј" @@ -5848,10 +5949,6 @@ msgstr "Сакриј" msgid "Browser transformation" msgstr "Транформације читача" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5860,60 +5957,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Копирај" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Ред је обрисан" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Обустави" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "у упиту" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Приказ записа" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "укупно" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Упит је трајао %01.4f секунди" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Поглед за штампу (са пуним текстом)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF схему" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Направи релацију" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Веза није пронађена" @@ -6111,7 +6204,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Сортирање" @@ -6448,7 +6541,7 @@ msgstr "Доступни MIME-типови" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Домаћин" @@ -6652,7 +6745,7 @@ msgstr "Тип извоза" msgid "Open new phpMyAdmin window" msgstr "Отвори нови phpMyAdmin прозор" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6664,51 +6757,51 @@ msgstr "SQL резултат" msgid "Generated by" msgstr "Генерисао" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "База не постоји" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 #, fuzzy msgid "Go to table" msgstr "База не постоји" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Само структура" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6760,7 +6853,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Назив табеле" @@ -6781,6 +6874,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6834,7 +6951,7 @@ msgstr "" msgid "Add prefix" msgstr "Додај ново поље" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Нема измена" @@ -6843,7 +6960,7 @@ msgid "Charset" msgstr "Карактер сет" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Бинарни" @@ -7149,7 +7266,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Име корисника" @@ -7169,9 +7286,9 @@ msgid "Variable" msgstr "Променљива" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Вредност" @@ -7197,7 +7314,7 @@ msgstr "Било који корисник" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Користи текст поље" @@ -7386,7 +7503,7 @@ msgid "Returns" msgstr "Повратни тип" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Време" @@ -7545,8 +7662,8 @@ msgstr "" msgid "Routine parameters" msgstr "Рутине" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Функција" @@ -7871,8 +7988,8 @@ msgstr "Непознат језик: %1$s." msgid "Current Server" msgstr "Сервер" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7894,7 +8011,7 @@ msgstr "Кодне стране" msgid "Engines" msgstr "Складиштења" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Претраживање базе" @@ -7913,7 +8030,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Претраживање базе" @@ -7940,11 +8057,11 @@ msgstr "Календар" msgid "Columns" msgstr "Имена колона" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" @@ -7972,7 +8089,7 @@ msgstr "Види само" msgid "Location of the text file" msgstr "Локација текстуалне датотеке" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "директоријум за слање веб сервера " @@ -8177,23 +8294,29 @@ msgid "+ Add a value" msgstr "Додај новог корисника" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Прегледај стране вредности" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Оператор" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Претраживање" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Нови запис" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8395,8 +8518,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "У ZIP архиви нема датотека!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Грешка у ZIP архиви:" @@ -8424,8 +8547,8 @@ msgstr "Опште особине релација" msgid "Protocol version" msgstr "Верзија протокола" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Корисник" @@ -8566,7 +8689,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "База не постоји" @@ -8595,7 +8718,7 @@ msgstr "Прикажи/сакриј мени с леве стране" msgid "Save position" msgstr "Сачувај позицију" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Направи табелу" @@ -8968,80 +9091,80 @@ msgstr "Погони складиштења" msgid "View dump (schema) of databases" msgstr "Прикажи садржај (схему) базе" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Укључује све привилегије осим GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Дозвољава измену структура постојећих табела." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Дозвољава измену и одбацивање сачуваних рутина." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Дозвољава креирање нових база и табела." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Дозвољава прављење сачуваних рутина." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Дозвољава креирање нових табела." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Дозвољава креирање привремених табела.." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Дозвољава прављење, одбацивање и преименовање корисничких налога." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Дозволи креирање нових погледа." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Дозвољава брисање података." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Дозвољава одбацивање база и табела." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Дозвољава одбацивање табела." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Дозвољава извршавање сачуваних рутина." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Дозвољава увоз података и њихов извоз у датотеке." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -9049,17 +9172,17 @@ msgstr "" "привилегија." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Дозвољава креирање и брисање кључева." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Дозвољава уметање и замену података." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Дозвољава закључавање табела текућим процесима." @@ -9088,53 +9211,53 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Ограничава број истовремених конекција које корисник може да има." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Нема ефекта у овој верзији MySQL-a." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Дозвољава поновно учитавање подешавања сервера и пражњење кеша сервера." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Даје право кориснику да пита где су главни/помоћни сервери." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Потребно због помоћних сервера за репликацију." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Дозвољава читање података." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Даје приступ комплетној листи база." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Дозвољава извршавање SHOW CREATE VIEW упита." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Дозвољава гашење сервера." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9145,46 +9268,46 @@ msgstr "" "променљивих или прекидање процеса осталих корисника." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Дозвољава креирање и брисање кључева." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Дозвољава измену података." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Нема привилегија." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "нема" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Привилегије везане за табеле" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Напомена: MySQL имена привилегија морају да буду на енглеском " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Администрација" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Глобалне привилегије" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Привилегије везане за базу" @@ -9204,7 +9327,7 @@ msgstr "Подаци о пријави" msgid "Do not change the password" msgstr "Немој да мењаш лозинку" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9255,7 +9378,7 @@ msgstr "Изабрани корисници су успешно обрисани msgid "The privileges were reloaded successfully." msgstr "Привилегије су успешно поново учитане." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Промени привилегије" @@ -9263,34 +9386,34 @@ msgstr "Промени привилегије" msgid "Revoke" msgstr "Забрани" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Било који" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Преглед корисника" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Омогући" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Уклони изабране кориснике" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Обустави све активне привилегије корисника и затим их обриши." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Одбаци базе које се зову исто као корисници." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9303,96 +9426,96 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Привилегије везане за колоне" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Додај привилегије на следећој бази" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Пре џокера _ и % треба ставити знак \\ ако их користите самостално" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Додај привилегије на следећој табели" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Промени информације о пријави / Копирај корисника" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Направи новог корисника са истим привилегијама и ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... сачувај старе." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... обриши старе из табела корисника." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... обустави све привилегије старог корисника и затим га обриши." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... обриши старог из табеле корисника и затим поново учитај привилегије." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "База за корисника" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "нема" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Направи базу са истим именом и додај све привилегије" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Дај све привилегије на имену са џокерима (корисничко_име\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Провери привилегије за базу "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Корисници који имају приступ "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "глобално" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "Специфично за базу" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "џокер" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10686,115 +10809,115 @@ msgstr[0] "се користи" msgstr[1] "се користи" msgstr[2] "се користи" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 #, fuzzy msgid "Structure Difference" msgstr "Структура за поглед (view)" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 #, fuzzy msgid "Data Difference" msgstr "Структура за поглед (view)" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL упит" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "макс. истовремених веза" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11091,36 +11214,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Приказ као PHP код" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирању табеле `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Назив" @@ -11129,65 +11252,65 @@ msgstr "Назив" msgid "Table %1$s has been altered successfully" msgstr "Изабрани корисници су успешно обрисани." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Због њехове величине, поље
можда нећете моћи да измените" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Бинарни - не мењај" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Унеси као нови ред" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 #, fuzzy msgid "Show insert query" msgstr "Приказ као SQL упит" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "и онда" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Назад на претходну страну" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Додај још један нови ред" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Врати се на ову страну" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Уреди следећи ред" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11274,49 +11397,45 @@ msgstr "Табела %s је одбачена" msgid "View dump (schema) of table" msgstr "Прикажи садржај (схему) табеле" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Додај/обриши колону" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Укупно" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Сачувај као датотеку" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11549,25 +11668,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Направи \"упит по примеру\" (џокер: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Изабери поља (најмање једно)" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Додај услове претраживања (део \"WHERE\" упита):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Број редова по страни" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Редослед приказа:" @@ -13176,6 +13295,3 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Направи релацију" - -#~ msgid "Add a new User" -#~ msgstr "Додај новог корисника" diff --git a/po/sr@latin.po b/po/sr@latin.po index c0f83f87c4..a0856db591 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-12-02 14:49+0200\n" "Last-Translator: Sasa Kostic \n" "Language-Team: serbian_latin \n" @@ -15,13 +15,13 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Prikaži sve" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgstr "" "zatvorili matični prozor, ili vaš pretraživač onemogućava ažuriranje među " "prozorima zbog sigurnosnih podešavanja" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Pretraživanje" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "Pretraživanje" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "Komentari tabele" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -156,8 +157,8 @@ msgstr "Kolona" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -168,7 +169,7 @@ msgstr "Tip" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -211,10 +212,10 @@ msgstr "Komentari" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Ne" @@ -233,9 +234,9 @@ msgstr "Ne" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -336,7 +337,7 @@ msgstr "Prebaci se na kopiranu bazu" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -364,15 +365,15 @@ msgstr "Uredi ili izvezi relacionu shemu" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabela" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -433,19 +434,19 @@ msgstr "Sortiranje" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Rastući" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Opadajući" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Prikaži" @@ -466,8 +467,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "ili" @@ -496,7 +497,7 @@ msgstr "Koristi tabele" msgid "SQL query on database %s:" msgstr "SQL upit na bazi %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Izvrši SQL upit" @@ -537,8 +538,8 @@ msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" msgstr[2] "%s pogodaka unutar tabele %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Pregled" @@ -550,7 +551,7 @@ msgid "Delete the matches for the %s table?" msgstr "Prikaz podataka tabele" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -626,7 +627,7 @@ msgstr "Praćenje je aktivno." msgid "Tracking is not active." msgstr "Praćenje nije aktivno." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -654,22 +655,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Označeno:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Označi sve" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "nijedno" @@ -677,10 +678,10 @@ msgstr "nijedno" msgid "Check tables having overhead" msgstr "Proveri tabele koje imaju prekoračenja" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -688,17 +689,17 @@ msgid "Export" msgstr "Izvoz" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Za štampu" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Isprazni" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -752,9 +753,9 @@ msgstr "Proveri tabelu" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Baza podataka" @@ -775,15 +776,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Akcija" @@ -841,7 +842,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -876,6 +877,93 @@ msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s." msgid "Dump has been saved to file %s." msgstr "Sadržaj baze je sačuvan u datoteku %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a point" +msgstr "Dodaj %s polja" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Linije se završavaju sa" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Dodaj novog korisnika" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Dodaj novog korisnika" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "Dodaj %s polja" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Dodaj novog korisnika" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -923,7 +1011,7 @@ msgstr "Obeleživač je upravo obrisan." msgid "Showing bookmark" msgstr "Prikazivanje markera" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Napravljen marker %s" @@ -951,7 +1039,7 @@ msgstr "" "povećate vremenska ograničenja u PHP-u" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -975,15 +1063,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Da li stvarno hoćete da " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Ovim ćete UNIŠTITI kompletnu bazu podataka!" @@ -1053,8 +1141,8 @@ msgstr "Lozinka je prazna!" msgid "The passwords aren't the same!" msgstr "Lozinke nisu identične!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1078,8 +1166,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1118,12 +1206,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1215,12 +1303,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1326,7 +1414,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "nema" @@ -1740,8 +1828,8 @@ msgstr "SQL upit" msgid "No rows selected" msgstr "Nema odabranih redova" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Promeni" @@ -1753,8 +1841,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Sačuvaj" @@ -1768,7 +1856,7 @@ msgstr "SQL upit" msgid "Show search criteria" msgstr "SQL upit" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1812,110 +1900,118 @@ msgstr "Dodaj/obriši kolone" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "Dodaj %s polja" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Izaberite referencirani ključ" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Izaberi strani ključ" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Molimo izaberite primarni ili jedinstveni ključ" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Izaberi polja za prikaz" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy msgid "Go to link" msgstr "Baza ne postoji" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Napravi lozinku" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Napravi" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Promeni lozinku" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1923,30 +2019,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy msgid ", latest stable version:" msgstr "Napravi relaciju" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Baza ne postoji" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy msgid "Done" msgstr "Podaci" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodna" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1954,96 +2050,96 @@ msgid "Next" msgstr "Sledeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "maj" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "avg" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2051,78 +2147,78 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "dec" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2130,105 +2226,110 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sre" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundi" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Veličina fonta" @@ -2339,13 +2440,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Baze" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Greška" @@ -2478,7 +2579,7 @@ msgstr "Nije pronađena tema %s!" msgid "Theme path not found for theme %s!" msgstr "Nije pronađena putanja do teme za temu %s!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2650,7 +2751,7 @@ msgstr "Tabele" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Podaci" @@ -2723,7 +2824,7 @@ msgstr "Neispravan naziv servera %1$s. Molimo proverite svoju konfiguraciju." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2788,103 +2889,103 @@ msgstr "SQL upit" msgid "MySQL said: " msgstr "MySQL reče: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Objasni SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Preskoči objašnjavanje SQL-a" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "bez PHP koda" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Napravi PHP kod" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Osveži" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Preskoči proveru SQL-a" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Proveri SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Skladištenja" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profilisanje" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "bajtova" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Ned" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d. %B %Y. u %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dana, %s sati, %s minuta i %s sekundi" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Rutine" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2892,7 +2993,7 @@ msgctxt "First page" msgid "Begin" msgstr "Početak" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2901,7 +3002,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Prethodna" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2910,7 +3011,7 @@ msgctxt "Next page" msgid "Next" msgstr "Sledeći" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2918,34 +3019,34 @@ msgctxt "Last page" msgid "End" msgstr "Kraj" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Pređi na bazu "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktura" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2953,38 +3054,38 @@ msgstr "Struktura" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Novi zapis" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operacije" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direktorijum za slanje veb servera " -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3162,7 +3263,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Poništi" @@ -3423,7 +3524,7 @@ msgid "Character set of the file" msgstr "Karakter set datoteke:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -5055,7 +5156,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Lozinka" @@ -5337,8 +5438,8 @@ msgid "Designer" msgstr "Dizajner" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilegije" @@ -5358,7 +5459,7 @@ msgstr "Događaji" msgid "Triggers" msgstr "Okidači" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5421,7 +5522,7 @@ msgid "Create" msgstr "Napravi" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Nema privilegija" @@ -5792,12 +5893,12 @@ msgstr "Sortiraj po ključu" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Opcije" @@ -5832,8 +5933,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Sakrij" @@ -5842,10 +5943,6 @@ msgstr "Sakrij" msgid "Browser transformation" msgstr "Tranformacije čitača" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5854,60 +5951,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Obustavi" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "u upitu" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "ukupno" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Pogled za štampu (sa punim tekstom)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Napravi relaciju" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Veza nije pronađena" @@ -6105,7 +6198,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Sortiranje" @@ -6438,7 +6531,7 @@ msgstr "Dostupni MIME-tipovi" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Domaćin" @@ -6642,7 +6735,7 @@ msgstr "Tip izvoza" msgid "Open new phpMyAdmin window" msgstr "Otvori novi phpMyAdmin prozor" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6654,51 +6747,51 @@ msgstr "SQL rezultat" msgid "Generated by" msgstr "Generisao" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 #, fuzzy msgid "Go to table" msgstr "Baza ne postoji" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Samo struktura" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6750,7 +6843,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Naziv tabele" @@ -6771,6 +6864,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6822,7 +6939,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Nema izmena" @@ -6831,7 +6948,7 @@ msgid "Charset" msgstr "Karakter set" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binarni" @@ -7137,7 +7254,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Ime korisnika" @@ -7157,9 +7274,9 @@ msgid "Variable" msgstr "Promenljiva" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Vrednost" @@ -7185,7 +7302,7 @@ msgstr "Bilo koji korisnik" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Koristi tekst polje" @@ -7376,7 +7493,7 @@ msgid "Returns" msgstr "Povratni tip" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Vreme" @@ -7533,8 +7650,8 @@ msgstr "" msgid "Routine parameters" msgstr "Rutine" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funkcija" @@ -7859,8 +7976,8 @@ msgstr "Nepoznat jezik: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7882,7 +7999,7 @@ msgstr "Kodne strane" msgid "Engines" msgstr "Skladištenja" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Pretraživanje baze" @@ -7901,7 +8018,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Pretraživanje baze" @@ -7928,11 +8045,11 @@ msgstr "Kalendar" msgid "Columns" msgstr "Imena kolona" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" @@ -7960,7 +8077,7 @@ msgstr "Vidi samo" msgid "Location of the text file" msgstr "Lokacija tekstualne datoteke" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "direktorijum za slanje veb servera " @@ -8165,23 +8282,29 @@ msgid "+ Add a value" msgstr "Dodaj novog korisnika" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Pregledaj strane vrednosti" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operator" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Pretraživanje" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Novi zapis" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8384,8 +8507,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "U ZIP arhivi nema datoteka!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Greška u ZIP arhivi:" @@ -8413,8 +8536,8 @@ msgstr "Opšte osobine relacija" msgid "Protocol version" msgstr "Verzija protokola" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Korisnik" @@ -8556,7 +8679,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Baza ne postoji" @@ -8585,7 +8708,7 @@ msgstr "Prikaži/sakrij meni s leve strane" msgid "Save position" msgstr "Sačuvaj poziciju" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Napravi tabelu" @@ -8958,80 +9081,80 @@ msgstr "Pogoni skladištenja" msgid "View dump (schema) of databases" msgstr "Prikaži sadržaj (shemu) baze" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Uključuje sve privilegije osim GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Dozvoljava izmenu struktura postojećih tabela." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Dozvoljava izmenu i odbacivanje sačuvanih rutina." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Dozvoljava kreiranje novih baza i tabela." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Dozvoljava pravljenje sačuvanih rutina." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Dozvoljava kreiranje novih tabela." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Dozvoljava kreiranje privremenih tabela.." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Dozvoljava pravljenje, odbacivanje i preimenovanje korisničkih naloga." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Dozvoli kreiranje novih pogleda." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Dozvoljava brisanje podataka." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Dozvoljava odbacivanje baza i tabela." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Dozvoljava odbacivanje tabela." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Dozvoljava izvršavanje sačuvanih rutina." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Dozvoljava uvoz podataka i njihov izvoz u datoteke." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -9039,17 +9162,17 @@ msgstr "" "privilegija." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Dozvoljava kreiranje i brisanje ključeva." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Dozvoljava umetanje i zamenu podataka." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Dozvoljava zaključavanje tabela tekućim procesima." @@ -9078,53 +9201,53 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Ograničava broj istovremenih konekcija koje korisnik može da ima." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Nema efekta u ovoj verziji MySQL-a." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Dozvoljava ponovno učitavanje podešavanja servera i pražnjenje keša servera." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Daje pravo korisniku da pita gde su glavni/pomoćni serveri." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Potrebno zbog pomoćnih servera za replikaciju." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Dozvoljava čitanje podataka." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Daje pristup kompletnoj listi baza." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Dozvoljava izvršavanje SHOW CREATE VIEW upita." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Dozvoljava gašenje servera." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9135,46 +9258,46 @@ msgstr "" "promenljivih ili prekidanje procesa ostalih korisnika." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Dozvoljava kreiranje i brisanje ključeva." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Dozvoljava izmenu podataka." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Nema privilegija." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "nema" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Privilegije vezane za tabele" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Napomena: MySQL imena privilegija moraju da budu na engleskom " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administracija" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globalne privilegije" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Privilegije vezane za bazu" @@ -9194,7 +9317,7 @@ msgstr "Podaci o prijavi" msgid "Do not change the password" msgstr "Nemoj da menjaš lozinku" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9245,7 +9368,7 @@ msgstr "Izabrani korisnici su uspešno obrisani." msgid "The privileges were reloaded successfully." msgstr "Privilegije su uspešno ponovo učitane." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Promeni privilegije" @@ -9253,34 +9376,34 @@ msgstr "Promeni privilegije" msgid "Revoke" msgstr "Zabrani" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Bilo koji" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Pregled korisnika" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Omogući" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Ukloni izabrane korisnike" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Obustavi sve aktivne privilegije korisnika i zatim ih obriši." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Odbaci baze koje se zovu isto kao korisnici." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9293,96 +9416,96 @@ msgstr "" "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Privilegije vezane za kolone" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Dodaj privilegije na sledećoj bazi" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "Pre džokera _ i % treba staviti znak \\ ako ih koristite samostalno" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Dodaj privilegije na sledećoj tabeli" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Promeni informacije o prijavi / Kopiraj korisnika" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Napravi novog korisnika sa istim privilegijama i ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... sačuvaj stare." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... obriši stare iz tabela korisnika." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... obustavi sve privilegije starog korisnika i zatim ga obriši." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" " ... obriši starog iz tabele korisnika i zatim ponovo učitaj privilegije." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Baza za korisnika" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "nema" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Napravi bazu sa istim imenom i dodaj sve privilegije" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Daj sve privilegije na imenu sa džokerima (korisničko_ime\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "Proveri privilegije za bazu "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Korisnici koji imaju pristup "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "globalno" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "Specifično za bazu" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "džoker" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10679,115 +10802,115 @@ msgstr[0] "se koristi" msgstr[1] "se koristi" msgstr[2] "se koristi" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 #, fuzzy msgid "Structure Difference" msgstr "Struktura za pogled (view)" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 #, fuzzy msgid "Data Difference" msgstr "Struktura za pogled (view)" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL upit" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "max. concurrent connections" msgid "Current connection" msgstr "maks. istovremenih veza" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11084,36 +11207,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Prikaz kao PHP kod" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Proveri SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem pri indeksiranju tabele `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Naziv" @@ -11122,65 +11245,65 @@ msgstr "Naziv" msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspešno obrisani." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Zbog njehove veličine, polje
možda nećete moći da izmenite" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binarni - ne menjaj" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Unesi kao novi red" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 #, fuzzy msgid "Show insert query" msgstr "Prikaz kao SQL upit" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "i onda" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Nazad na prethodnu stranu" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Dodaj još jedan novi red" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Vrati se na ovu stranu" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Uredi sledeći red" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za " "slobodno pomeranje" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11267,49 +11390,45 @@ msgstr "Tabela %s je odbačena" msgid "View dump (schema) of table" msgstr "Prikaži sadržaj (shemu) tabele" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Dodaj/obriši kolonu" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Ukupno" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Sačuvaj kao datoteku" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11541,25 +11660,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Napravi \"upit po primeru\" (džoker: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Izaberi polja (najmanje jedno)" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Dodaj uslove pretraživanja (deo \"WHERE\" upita):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Broj redova po strani" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Redosled prikaza:" @@ -13172,9 +13291,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Napravi relaciju" -#~ msgid "Add a new User" -#~ msgstr "Dodaj novog korisnika" - #~ msgid "Delete the matches for the " #~ msgstr "Prikaz podataka tabele" diff --git a/po/sv.po b/po/sv.po index f36366d4dd..bbc56f0ce5 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-15 01:24+0200\n" "Last-Translator: \n" "Language-Team: swedish \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Visa alla" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "fönstret eller så är din webbläsares säkerhetsinställningar konfigurerade " "att blockera flerfönster uppdateringar." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Sök" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Sök" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Tabellkommentarer" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Kolumn" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Typ" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Kommentarer" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Nej" @@ -232,9 +233,9 @@ msgstr "Nej" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Byt till kopierad databas" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -359,15 +360,15 @@ msgstr "Editera eller exportera relationsschema" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tabell" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -426,19 +427,19 @@ msgstr "Sortera" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Stigande" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Fallande" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Visa" @@ -459,8 +460,8 @@ msgid "Del" msgstr "Ta bort" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Eller" @@ -489,7 +490,7 @@ msgstr "Använd tabeller" msgid "SQL query on database %s:" msgstr "SQL-fråga i databas %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Kör fråga" @@ -528,8 +529,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%s träff i tabell %s" msgstr[1] "%s träffar i tabell %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Visa" @@ -540,7 +541,7 @@ msgid "Delete the matches for the %s table?" msgstr "radera matchande för %s tabellen?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -609,7 +610,7 @@ msgstr "Spårning är aktiv." msgid "Tracking is not active." msgstr "Spårning är inte aktiv." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -637,22 +638,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s är standardlagringsmotorn på denna MySQL-server." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Med markerade:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Markera alla" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Avmarkera alla" @@ -660,10 +661,10 @@ msgstr "Avmarkera alla" msgid "Check tables having overhead" msgstr "Markera ooptimerade" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -671,17 +672,17 @@ msgid "Export" msgstr "Exportera" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Töm" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -729,9 +730,9 @@ msgstr "Spårade tabeller" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Databas" @@ -750,15 +751,15 @@ msgstr "Uppdaterad" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Status" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Åtgärd" @@ -811,7 +812,7 @@ msgstr "Mata in varje värde i ett eget fält." msgid "+ Restart insertion and add a new value" msgstr "+ Återstarta inmatandet och lägg till nytt värde" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Utdata" @@ -846,6 +847,95 @@ msgstr "Webbservern har inte tillåtelse att spara filen %s." msgid "Dump has been saved to file %s." msgstr "SQL-satserna har sparats till filen %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "Värden för kolumn \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Använd OpenStreetMaps som baslager" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Geometri" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Lägg till rutin." + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Rader avslutas med" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Lägg till ny användare" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Lägg till ny användare" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Lägg till kolumn" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Geometri" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -893,7 +983,7 @@ msgstr "Bokmärket har tagits bort." msgid "Showing bookmark" msgstr "Visar bokmärke" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "Bokmärket %s har skapats" @@ -921,7 +1011,7 @@ msgstr "" "tidsbegränsningar." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -945,15 +1035,15 @@ msgstr "Klicka för att markera" msgid "Click to unselect" msgstr "Klicka för att avmarkera" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" satserna är inaktiverade." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Vill du verkligen " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Du håller på att FÖRSTÖRA en hel databas!" @@ -1015,8 +1105,8 @@ msgstr "Lösenordet saknas!" msgid "The passwords aren't the same!" msgstr "Lösenorden överensstämmer inte!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Lägg till en användare" @@ -1034,8 +1124,8 @@ msgid "Close" msgstr "Stäng" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1071,12 +1161,12 @@ msgid "Other" msgstr "Annan" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "  " #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1163,12 +1253,12 @@ msgid "System swap" msgstr "System swap" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1275,7 +1365,7 @@ msgstr "Lägg till minst en variabel till serien" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Inget" @@ -1660,8 +1750,8 @@ msgstr "Visa frågerutan" msgid "No rows selected" msgstr "Inga rader valda" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Ändra" @@ -1673,8 +1763,8 @@ msgstr "Exekveringstid för frågor" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Spara" @@ -1686,7 +1776,7 @@ msgstr "Dölj sökkriterier" msgid "Show search criteria" msgstr "Visa sökkriterier" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1730,32 +1820,40 @@ msgstr "Lägg till / ta bort kolumner" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ignorera" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Kopiera" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "Addera kolumn" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Välj refererad nyckel" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Välj främmande nyckel" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Välj den primära nyckeln eller en unik nyckel" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Välj kolumn att visa" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1763,70 +1861,70 @@ msgstr "" "Du har inte sparat ändringarna i layouten. Dessa kommer förloras om du inte " "sparar dem. Vill du fortsätta?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Välj ett alternativ för kolumn" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Dra för att ändra ordning" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Klicka för att sortera" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "Klicka för att markera/avmarkera" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "Klicka på pilen
för att växla kolumnens synlighet" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Gå till vy" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Skapa lösenord" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generera" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Ändra lösenord" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Mera" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1836,27 +1934,27 @@ msgstr "" "senaste versionen är %s, publicerad den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "senaste stabila version:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "aktuell" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Klart" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Föregående" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1864,149 +1962,149 @@ msgid "Next" msgstr "Nästa" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Idag" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "januari" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "februari" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "mars" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "april" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "maj" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "juni" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "juli" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "augusti" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "september" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "oktober" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "november" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "dec" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Söndag" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Måndag" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Tisdag" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Fredag" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Lördag" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2014,87 +2112,92 @@ msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Lör" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Sö" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Må" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "On" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Lö" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Vecka" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Timmar" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Minuter" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Sekunder" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Teckenstorlek" @@ -2203,13 +2306,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Databaserna" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Fel" @@ -2338,7 +2441,7 @@ msgstr "Tema %s hittades inte!" msgid "Theme path not found for theme %s!" msgstr "Temats sökväg för tema %s hittades inte!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2512,7 +2615,7 @@ msgstr "Tabeller" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Data" @@ -2580,7 +2683,7 @@ msgstr "Ogiltigt värdnamn för server %1$s. Var god granska din konfiguration." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2645,99 +2748,99 @@ msgstr "SQL-fråga" msgid "MySQL said: " msgstr "MySQL sa: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Kunde inte ansluta till MySQL validerare" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Förklara SQL-kod" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Utan SQL-förklaring" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "Utan PHP-kod" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Skapa PHP-kod" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Uppdatera" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Hoppa över SQL-validering" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Validera SQL-kod" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Redigera denna fråga" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Infogad" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profilering" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "bytes" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Sön" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y kl %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s dagar, %s timmar, %s minuter och %s sekunder" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "Saknade parametrar:" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2745,7 +2848,7 @@ msgctxt "First page" msgid "Begin" msgstr "Starta" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2754,7 +2857,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Föregående" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2763,7 +2866,7 @@ msgctxt "Next page" msgid "Next" msgstr "Nästa" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2771,34 +2874,34 @@ msgctxt "Last page" msgid "End" msgstr "Slut" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Hoppa till databas "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Klicka för att växla" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Struktur" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2806,37 +2909,37 @@ msgstr "Struktur" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Lägg till" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operationer" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Gå igenom din dator:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, 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/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Det finns inga filer att ladda upp" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Utför" @@ -3004,7 +3107,7 @@ msgstr "Tillåt användare att anpassa detta värde" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Återställ" @@ -3273,7 +3376,7 @@ msgid "Character set of the file" msgstr "Filens teckenuppsättning" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -4931,7 +5034,7 @@ msgstr "Kräver att SQL Validator är aktiverad" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Lösenord" @@ -5229,8 +5332,8 @@ msgid "Designer" msgstr "Designer" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilegier" @@ -5249,7 +5352,7 @@ msgstr "Händelser" msgid "Triggers" msgstr "Trigger" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5308,7 +5411,7 @@ msgid "Create" msgstr "Skapa" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Inga privilegier" @@ -5626,12 +5729,12 @@ msgstr "Sortera efter nyckel" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Alternativ" @@ -5659,8 +5762,8 @@ msgstr "Visa binärt innehåll" msgid "Show BLOB contents" msgstr "Visa BLOB-innehåll" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Dölj" @@ -5669,10 +5772,6 @@ msgstr "Dölj" msgid "Browser transformation" msgstr "Webbläsaromvandling" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Geometri" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "Välkänd text" @@ -5681,57 +5780,53 @@ msgstr "Välkänd text" msgid "Well Known Binary" msgstr "Välkänd binär" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Kopiera" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Raden har raderats" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Döda" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "i fråga" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Visar rader" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "totalt" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Frågan tog %01.4f sek" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Utskriftsvänlig version (med fullständiga texter)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Visa diagram" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "Visualisera GIS-data" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Skapa vy" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Länken hittades inte" @@ -5928,7 +6023,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "Den procentuella andelen skräp i en arkivfil innan den packas." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Port" @@ -6275,7 +6370,7 @@ msgstr "Visa MIME-typer" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Värd" @@ -6491,7 +6586,7 @@ msgstr "Exportera innehåll" msgid "Open new phpMyAdmin window" msgstr "Öppna nytt phpMyAdmin-fönster" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "Inga data finns för GIS visualisering." @@ -6503,52 +6598,52 @@ msgstr "SQL-resultat" msgid "Generated by" msgstr "Genererad av" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "Följande strukturer har antingen skapats eller ändrats. Här kan du" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "Redigera strukturen genom att följa \"Structure\" länken" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Gå till databas" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "Saknar data för %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Gå till tabell" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Enbart struktur" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Gå till vy" @@ -6604,7 +6699,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Tabellnamn" @@ -6626,6 +6721,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Importera valutor (t.ex. $5.00 to 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Den här sidan innehåller inga tabeller!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "SQL kompatibilitetsläge:" @@ -6673,7 +6794,7 @@ msgstr "Lägg till tabellprefix" msgid "Add prefix" msgstr "Lägg till prefix" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Ingen förändring" @@ -6682,7 +6803,7 @@ msgid "Charset" msgstr "Teckenuppsättning" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binär" @@ -6994,7 +7115,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Användarnamn" @@ -7012,9 +7133,9 @@ msgid "Variable" msgstr "Variabel" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Värde" @@ -7042,7 +7163,7 @@ msgstr "Vilken användare som helst" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Använd textfältet" @@ -7221,7 +7342,7 @@ msgid "Returns" msgstr "Returnerar" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Tid" @@ -7364,8 +7485,8 @@ msgstr "Utför rutin" msgid "Routine parameters" msgstr "Rutinparametrar" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funktion" @@ -7648,8 +7769,8 @@ msgstr "Okänt språk: %1$s." msgid "Current Server" msgstr "Nuvarande Server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Synkronisera" @@ -7671,7 +7792,7 @@ msgstr "Teckenuppsättningar" msgid "Engines" msgstr "Motorer" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Källdatabas" @@ -7689,7 +7810,7 @@ msgstr "Fjärrserver" msgid "Difference" msgstr "Skillnad" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Måldatabas" @@ -7712,11 +7833,11 @@ msgstr "Rensa" msgid "Columns" msgstr "Kolumn" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Skapa bokmärke för den här SQL-frågan" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Låt varje användare få tillgång till detta bokmärke" @@ -7744,7 +7865,7 @@ msgstr "Visa endast" msgid "Location of the text file" msgstr "Textfilens plats" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "Uppladdningskatalog på webbserver" @@ -7939,23 +8060,29 @@ msgid "+ Add a value" msgstr "+ Lägg till ett värde" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Bläddra bland främmande värden" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Aktör" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Sök" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Lägg till" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8121,8 +8248,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "Inga filer hittades i ZIP-arkivet!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Fel i ZIP-arkiv:" @@ -8146,8 +8273,8 @@ msgstr "Fler inställningar" msgid "Protocol version" msgstr "Protokollversion" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Användare" @@ -8294,7 +8421,7 @@ msgid "" "issues." msgstr "Server körs med Suhosin. Se %sdokumentation%s för möjliga problem." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Inga databaser" @@ -8321,7 +8448,7 @@ msgstr "Visa/Dölj vänster meny" msgid "Save position" msgstr "Spara position" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Skapa tabell" @@ -8660,80 +8787,80 @@ msgstr "Lagringsmotorer" msgid "View dump (schema) of databases" msgstr "Visa dump (schemat) för databaser" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Inkluderar alla privilegier förutom GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Tillåter ändring av befintliga tabellers struktur." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Tillåter ändring och borttagning av lagrade rutiner." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Tillåter skapande av nya databaser och tabeller." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Tillåter skapande av lagrade rutiner." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Tillåter skapande av nya tabeller." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Tillåter skapande av temporära tabeller." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Tillåter skapande, borttagning och omdöpning av användarkonton." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Tillåter skapande av nya vyer." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Tillåter borttagning av data." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Tillåter borttagning av databaser och tabeller." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Tillåter borttagning av tabeller." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Tillåter skapande av händelser för händelseschemaläggaren" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Tillåter utförande av lagrade rutiner." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Tillåter import av data från och export av data till filer." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8741,17 +8868,17 @@ msgstr "" "privilegiumtabellerna." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Tillåter skapande och borttagning av index." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Tillåter infogning och ersättning av data." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Tillåter låsning av tabeller för gällande tråd." @@ -8780,53 +8907,53 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Begränsar antalet samtidiga förbindelser som användaren kan ha." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Tillåter visning av processer för alla användare" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Har ingen effekt i denna version av MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Tillåter omladdning av serverinställningar och rensning av serverns cache." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Ger användaren rätt att fråga var slav- / huvudservrarna är." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Nödvändigt för replikeringsslavar." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Tillåter läsning av data." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Ger tillgång till den fullständiga databaslistan." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Tillåter utförande av SHOW CREATE VIEW-frågor." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Tillåter avstängning av servern." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8837,43 +8964,43 @@ msgstr "" "variabler eller döda andra användares trådar." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Tillåter skapande och borttagning av triggers" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Tillåter ändring av data." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Inga privilegier." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Inget" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Tabellspecifika privilegier" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Notera: MySQL privilegie benämningar uttrycks på engelska" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administration" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Globala privilegier" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Databasspecifika privilegier" @@ -8894,7 +9021,7 @@ msgstr "Inloggningsinformation" msgid "Do not change the password" msgstr "Ändra inte lösenordet" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Ingen användare hittades." @@ -8943,7 +9070,7 @@ msgstr "De valda användarna har tagits bort." msgid "The privileges were reloaded successfully." msgstr "Privilegierna har laddats om." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Ändra privilegier" @@ -8951,35 +9078,35 @@ msgstr "Ändra privilegier" msgid "Revoke" msgstr "Upphäv" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Vem som helst" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Användaröversikt" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Beviilja" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Ta bort valda användare" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Upphäv alla aktiva privilegier från användarna och ta bort dem efteråt." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Ta bort databaserna med samma namn som användarna." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8992,51 +9119,51 @@ msgstr "" "privilegierna som servern använder ifall manuella ändringar har gjorts. I " "detta fall bör du %sladda om privilegierna%s innan du fortsätter." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Den valda användaren kunde inte hittas i privilegietabellen." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Kolumnspecifika privilegier" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Lägg till privilegier till följande databas" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Jokertecknen _ och % måste föregås av ett \\ för att användas i egentlig " "betydelse" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Lägg till privilegier till följande tabell" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Ändra inloggningsinformation / Kopiera användare" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Skapa en ny användare med samma privilegier och ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... behåll den gamla." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... ta bort den gamla från användartabellerna." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... upphäv alla aktiva privilegier från dan gamla och ta bort den efteråt." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9044,46 +9171,46 @@ msgstr "" " ... ta bort den gamla från användartabellerna och ladda om privilegierna " "efteråt." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Databas för användare" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Inget" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Skapa databas med samma namn och tilldela alla privilegier" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Bevilja alla privilegier till namn med jokertecken (username\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "Bevilja alla privilegier för databas "%s"" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Användare som har tillgång till "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "databasspecifik" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "jokertecken" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "En användare har skapats." @@ -10437,112 +10564,112 @@ msgid_plural "%d minutes" msgstr[0] "%d minut" msgstr[1] "%d minuter" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Kunde inte ansluta till källan" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Kunde inte ansluta till målet" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' databasen finns inte." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Struktur Synkronisering" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Datasynkronisering" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "inte närvarande" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Struktur skillnad" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Data skillnad" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Lägg till kolumn(er)" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Radera kolumn(er)" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Ändra kolumn(er)" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Radera index" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Applicera index" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Uppdatera rad(er)" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Infoga rad(er)" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Vill du radera alla tidigare rader från mål tabellen?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Applicera markerade ändringar" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Synkronisera databaser" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Valda måltabellerna har synkroniserats med källtabellerna." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Måldatabas har synkroniserats med källdatabasen" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Issued queries" msgid "Executed queries" msgstr "Skapade frågor" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Skriv in manuellt" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Nuvarande anslutning" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Konfiguration: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Socket" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10886,34 +11013,34 @@ msgstr "Nyckeln är för kort, den ska ha minst 8 tecken." msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken." -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Använd bokmärke \"% s\" som standard webbläsarfråga." -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad id: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "Visar som PHP-kod" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Validerad SQL-kod" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem med index för tabell `%s`" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Etikett" @@ -10922,62 +11049,62 @@ msgstr "Etikett" msgid "Table %1$s has been altered successfully" msgstr "Tabell %1$s har ändrats" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "På grund av sin längd,
är denna kolumn kanske inte redigerbar" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "Ta bort referens till BLOB-förvaringsplats" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binär - ändra inte" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "Ladda upp till BLOB-förvaringsplats" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Lägg till som ny rad" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Infoga som ny rad och ignorera fel" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Visa insert fråga" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "och sedan" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Gå tillbaka till föregående sida" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Lägg till ytterligare en ny rad" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Gå tillbaka till denna sida" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Ändra nästa rad" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Använd TAB-tangenten för att flytta från värde till värde, eller CTRL+pil " "för att flytta vart som helst" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "Fortsätt inmatning med %s rader" @@ -11048,43 +11175,39 @@ msgstr "Tabell %1$s har skapats." msgid "View dump (schema) of table" msgstr "Visa SQL-satser för tabellen" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "Visa GIS Visualisering" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Bredd" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Höjd" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Etikett kolumn" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "- Inget -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "Spatial kolumn" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Använd OpenStreetMaps som baslager" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Rita om" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Spara till fil" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Filnamn" @@ -11309,23 +11432,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "Begränsning av främmande nyckel" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Utför en \"Query By Example\" (jokertecken: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Markera kolumner (minst en):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Lägg till sökvillkor (uttryck i \"where\"-sats):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Anntal rader per sida" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Visningsordning:" @@ -13016,9 +13139,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Skapa Användare" -#~ msgid "Add a new User" -#~ msgstr "Lägg till ny användare" - #~ msgid "Show table row links on left side" #~ msgstr "Visa tabellrader som länkar på vänster sida" diff --git a/po/ta.po b/po/ta.po index daa9b7040d..1a43107479 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-14 22:35+0200\n" "Last-Translator: சுரேஸ்குமார் செல்வநாயகம் \n" "Language-Team: Tamil \n" @@ -17,13 +17,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "அனைத்தையும் காட்டு" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -41,19 +41,20 @@ msgstr "" "மூடியிருக்க வேண்டும், அல்லது உங்கள் உலாவி பாதுகாப்பு அமைப்புகள் குறுக்கு-சாளர " "மேம்படுத்தல்களை தடுக்க உள்ளமைக்கப்பட்டிருக்கின்றன." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "தேடு" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -71,14 +72,14 @@ msgstr "தேடு" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "அட்டவணைக் கருத்துரைகள்" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -156,8 +157,8 @@ msgstr "நிரல்" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -168,7 +169,7 @@ msgstr "வகை" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -211,10 +212,10 @@ msgstr "கருத்துரைகள்" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "இல்லை" @@ -233,9 +234,9 @@ msgstr "இல்லை" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -336,7 +337,7 @@ msgstr "பிரதியான தரவுதளத்துக்கு ம #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -361,15 +362,15 @@ msgstr "தொடர்புசார் திட்டத்தை திர #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "அட்டவணை" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -428,19 +429,19 @@ msgstr "வரிசைப்படுத்து" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "ஏறுவரிசை" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "இறங்குவரிசை" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "காண்பி" @@ -461,8 +462,8 @@ msgid "Del" msgstr "அழி" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "அல்லது" @@ -491,7 +492,7 @@ msgstr "அட்டவணைகளை பயன்படுத்துக" msgid "SQL query on database %s:" msgstr "தரவுத்தளம் மீது %s%s
" msgstr[0] "%s அட்டவணையில் பொருந்தியவை %s" msgstr[1] "%s அட்டவணையில் பொருந்தியவைகள் %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "உலாவு" @@ -542,7 +543,7 @@ msgid "Delete the matches for the %s table?" msgstr "%s அட்டவணையில் பொருத்தப்பாடுகளை நீக்குவதா?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -611,7 +612,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -639,22 +640,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "" @@ -662,10 +663,10 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -673,17 +674,17 @@ msgid "Export" msgstr "" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -733,9 +734,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "" @@ -754,15 +755,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "செயல்" @@ -815,7 +816,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -848,6 +849,90 @@ msgstr "" msgid "Dump has been saved to file %s." msgstr "" +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a point" +msgstr "%s களத்தை சேர்க்க" + +#: gis_data_editor.php:218 js/messages.php:287 +msgid "Linestring" +msgstr "" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add constraints" +msgid "Add a linestring" +msgstr "கட்டுப்பாடுகளை சேர்க்க" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +msgid "Add an inner ring" +msgstr "" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "%s களத்தை சேர்க்க" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new User" +msgid "Add geometry" +msgstr "புதிய பயனாளரை சேர்க்க" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -888,7 +973,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -911,7 +996,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -935,15 +1020,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1005,8 +1090,8 @@ msgstr "" msgid "The passwords aren't the same!" msgstr "" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Add %s" msgid "Add user" @@ -1026,8 +1111,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1063,12 +1148,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1147,12 +1232,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1241,7 +1326,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "" @@ -1604,8 +1689,8 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "" @@ -1617,8 +1702,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "" @@ -1630,7 +1715,7 @@ msgstr "" msgid "Show search criteria" msgstr "" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1674,103 +1759,111 @@ msgstr "நெடுவரிசைகள் சேர்க்க/ நீக msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "%s களத்தை சேர்க்க" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "திங்கள்" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1778,120 +1871,120 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "புதிய பதிப்பை பார்வையிடவும்" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "" -#: js/messages.php:344 +#: js/messages.php:356 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:349 +#: js/messages.php:361 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Jan" msgid "January" msgstr "தை" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "பங்குனி" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "சித்திரை" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "வைகாசி" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ஆணி" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ஆடி" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "ஆவணி" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ஐப்பசி" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1899,78 +1992,78 @@ msgid "May" msgstr "வைகாசி" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "மார்கழி" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "ஞாயிறு" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "திங்கள்" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "செவ்வாய்" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "வெள்ளி" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -1978,101 +2071,106 @@ msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "திங்கள்" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "செவ்வாய்" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "புதன்" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "வியாழன்" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "வெள்ளி" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "சனி" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "ஞாயிறு" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "திங்கள்" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "செவ்வாய்" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "புதன்" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "வியாழன்" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "வெள்ளி" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "சனி" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2176,13 +2274,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "" @@ -2307,7 +2405,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2476,7 +2574,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "" @@ -2540,7 +2638,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "" @@ -2605,152 +2703,152 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "வினாவிற்கான உன்வரிசை மாற்றப்பகுதி " -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "உள்வரிசை" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "ஞாயிறு" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s நாட்கள் %s மணித்தியாலங்கள் %s நிமிடங்கள் மற்றும் %s செக்கன்கள்" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 msgctxt "First page" msgid "Begin" msgstr "" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 msgctxt "Previous page" msgid "Previous" msgstr "" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 msgctxt "Next page" msgid "Next" msgstr "" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 msgctxt "Last page" msgid "End" msgstr "" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2758,37 +2856,37 @@ msgstr "" msgid "SQL" msgstr "" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -2954,7 +3052,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "" @@ -3203,7 +3301,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "" @@ -4732,7 +4830,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "" @@ -5011,8 +5109,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "" @@ -5031,7 +5129,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5088,7 +5186,7 @@ msgid "Create" msgstr "" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -5391,12 +5489,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "" @@ -5424,8 +5522,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5434,10 +5532,6 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5446,59 +5540,55 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Add into comments" msgid "Display chart" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "" @@ -5677,7 +5767,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "" @@ -5984,7 +6074,7 @@ msgstr "" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "" @@ -6178,7 +6268,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6190,48 +6280,48 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, php-format msgid "Structure of %s" msgstr "" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6280,7 +6370,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6301,6 +6391,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6348,7 +6462,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "" @@ -6357,7 +6471,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "" @@ -6660,7 +6774,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "" @@ -6678,9 +6792,9 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "" @@ -6706,7 +6820,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "" @@ -6882,7 +6996,7 @@ msgid "Returns" msgstr "செயல்கள்" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "" @@ -7023,8 +7137,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "" @@ -7319,8 +7433,8 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7342,7 +7456,7 @@ msgstr "" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "" @@ -7360,7 +7474,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "" @@ -7383,11 +7497,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7415,7 +7529,7 @@ msgstr "" msgid "Location of the text file" msgstr "" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "" @@ -7587,23 +7701,27 @@ msgid "+ Add a value" msgstr "புதிய பயனாளரை சேர்க்க" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "தேடு" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +msgid "Edit/Insert" +msgstr "" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7723,8 +7841,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -7748,8 +7866,8 @@ msgstr "" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "" @@ -7869,7 +7987,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "" @@ -7894,7 +8012,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "" @@ -8227,96 +8345,96 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8343,52 +8461,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8396,43 +8514,43 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "" @@ -8452,7 +8570,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "" @@ -8501,7 +8619,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "" @@ -8509,34 +8627,34 @@ msgstr "" msgid "Revoke" msgstr "" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8545,93 +8663,93 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "பின்வரும் கொட்பிட்கான புதிய அனுமதியை சேர்க்க" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "" @@ -9770,110 +9888,110 @@ msgid_plural "%d minutes" msgstr[0] "" msgstr[1] "" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 msgid "Executed queries" msgstr "" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10163,34 +10281,34 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "" @@ -10199,60 +10317,60 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10331,47 +10449,43 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Spatial column" msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "" @@ -10592,23 +10706,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "" diff --git a/po/te.po b/po/te.po index d943323267..f0cf61f2cb 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-04-07 17:06+0200\n" "Last-Translator: \n" "Language-Team: Telugu \n" @@ -17,13 +17,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "అన్నీ చూపించు" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgid "" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "శోధించు" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "శోధించు" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "పట్టిక వ్యాఖ్యలు" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -157,8 +158,8 @@ msgstr "ఆజ్ఞ" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -169,7 +170,7 @@ msgstr "రకం" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -212,10 +213,10 @@ msgstr "వ్యాఖ్యలు" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "కాదు" @@ -234,9 +235,9 @@ msgstr "కాదు" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -339,7 +340,7 @@ msgstr "" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -362,15 +363,15 @@ msgstr "" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "పట్టిక" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -432,20 +433,20 @@ msgstr "క్రమంలో పేర్చు" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "ఆరోహణ" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "అవరోహణ" # మొదటి అనువాదము #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "చూపించు" @@ -467,8 +468,8 @@ msgstr "తొలగించు" # మొదటి అనువాదము #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "లేదా" @@ -497,7 +498,7 @@ msgstr "పట్టికల్ని వాడు" msgid "SQL query on database %s:" msgstr "" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "క్వెరీ ని సమర్పించు" @@ -536,8 +537,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "" msgstr[1] "" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "" @@ -548,7 +549,7 @@ msgid "Delete the matches for the %s table?" msgstr "" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -620,7 +621,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -650,22 +651,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "" @@ -673,10 +674,10 @@ msgstr "" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -684,18 +685,18 @@ msgid "Export" msgstr "ఎగుమతి" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "" # మొదటి అనువాదము -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "ఖాళీ" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -746,9 +747,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "డేటాబేస్" @@ -767,15 +768,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "స్థితి" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "చర్య" @@ -828,7 +829,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -861,6 +862,92 @@ msgstr "" msgid "Dump has been saved to file %s." msgstr "" +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +# మొదటి అనువాదము +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add into comments" +msgid "Add a point" +msgstr "స్పందనలకు చేర్చు" + +#: gis_data_editor.php:218 js/messages.php:287 +msgid "Linestring" +msgstr "" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a New User" +msgid "Add a linestring" +msgstr "కొత్త వాడుకరిని చేర్చు" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +msgid "Add an inner ring" +msgstr "" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +# మొదటి అనువాదము +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add into comments" +msgid "Add a polygon" +msgstr "స్పందనలకు చేర్చు" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new User" +msgid "Add geometry" +msgstr "క్రొత్త వాడుకరిని చేర్చు" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -901,7 +988,7 @@ msgstr "" msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -924,7 +1011,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -948,15 +1035,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1022,8 +1109,8 @@ msgid "The passwords aren't the same!" msgstr "సంకేతపదాలు సరిపోలలేదు!" # మొదటి అనువాదము -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1043,8 +1130,8 @@ msgid "Close" msgstr "మూసివేయి" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1080,12 +1167,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1170,12 +1257,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "మెబై" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "కిబై" @@ -1273,7 +1360,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "ఏమీలేదు" @@ -1681,8 +1768,8 @@ msgid "No rows selected" msgstr "" # మొదటి అనువాదము -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "మార్చుము" @@ -1694,8 +1781,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "భద్రపరచు" @@ -1708,7 +1795,7 @@ msgid "Show search criteria" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1752,102 +1839,110 @@ msgstr "నిలువ వరుసల్ని చేర్చు/తొలగ msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "" +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + # మొదటి అనువాదము -#: js/messages.php:285 +#: js/messages.php:297 #, fuzzy #| msgid "Add into comments" msgid "Add columns" msgstr "స్పందనలకు చేర్చు" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "సంకేతపదాన్ని మార్చు" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "మరిన్ని" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1855,21 +1950,21 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "" # మొదటి అనువాదము -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" @@ -1877,7 +1972,7 @@ msgid "Prev" msgstr "గత" # మొదటి అనువాదము -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1885,149 +1980,149 @@ msgid "Next" msgstr "తదుపరి" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "ఈరోజు" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "జనవరి" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "ఫిబ్రవరి" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "మార్చి" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "ఏప్రిల్" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "మే" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "జూన్" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "జూలై" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "ఆగస్ట్" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "సెప్టెంబర్" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "అక్టోబర్" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "నవంబర్" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "డిసెంబర్" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "డిసెం" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "ఆదివారం" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "సోమవారం" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "మంగళవారం" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "బుధవారం" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "గురువారం" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "శుక్రవారం" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "శనివారం" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2035,88 +2130,93 @@ msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "శని" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "ఆ" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "సో" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "మం" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "బు" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "గు" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "శు" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "శ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "వారం" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "గంట" # మొదటి అనువాదము -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "నిమిషం" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "క్షణం" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2220,13 +2320,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "పొరపాటు" @@ -2356,7 +2456,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2528,7 +2628,7 @@ msgstr "పట్టికలు" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "" @@ -2594,7 +2694,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "" @@ -2660,100 +2760,100 @@ msgstr "" msgid "MySQL said: " msgstr "" -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "బై" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "గిబై" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "టెబై" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "పిబై" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "ఎబై" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "ఆది" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y at %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s రోజులు, %s గంటలు, %s నిమిషాలు మరియు %s క్షణాలు" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" # మొదటి అనువాదము -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2762,7 +2862,7 @@ msgid "Begin" msgstr "మొదలు" # మొదటి అనువాదము -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2772,7 +2872,7 @@ msgid "Previous" msgstr "క్రితము" # మొదటి అనువాదము -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2781,7 +2881,7 @@ msgctxt "Next page" msgid "Next" msgstr "తదుపరి" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2789,34 +2889,34 @@ msgctxt "Last page" msgid "End" msgstr "ముగింపు" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "నిర్మాణాకృతి" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2824,37 +2924,37 @@ msgstr "నిర్మాణాకృతి" msgid "SQL" msgstr "" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3024,7 +3124,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "" @@ -3273,7 +3373,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "" @@ -4813,7 +4913,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "సంకేతపదం" @@ -5096,8 +5196,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "" @@ -5116,7 +5216,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5178,7 +5278,7 @@ msgid "Create" msgstr "సృష్టించు" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -5484,12 +5584,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "ఎంపికలు" @@ -5518,8 +5618,8 @@ msgid "Show BLOB contents" msgstr "" # మొదటి అనువాదము -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "దాచు" @@ -5528,10 +5628,6 @@ msgstr "దాచు" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5540,62 +5636,58 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "మొత్తం" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "పట్టిక వ్యాఖ్యలు" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" # మొదటి అనువాదము -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "సృష్టించు" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "" @@ -5776,7 +5868,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "" @@ -6083,7 +6175,7 @@ msgstr "" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "" @@ -6281,7 +6373,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6293,49 +6385,49 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "నిర్మాణం మాత్రమే" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6386,7 +6478,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "పట్టిక పేరు" @@ -6407,6 +6499,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6454,7 +6570,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "" @@ -6464,7 +6580,7 @@ msgid "Charset" msgstr "అక్షరమాల" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "" @@ -6778,7 +6894,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "వాడుకరి పేరు" @@ -6796,9 +6912,9 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "విలువ" @@ -6825,7 +6941,7 @@ msgstr "ఏ వాడుకరి ఐనను" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "" @@ -7016,7 +7132,7 @@ msgid "Returns" msgstr "పట్టిక ఎంపికలు" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "సమయం" @@ -7169,8 +7285,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "" @@ -7474,8 +7590,8 @@ msgstr "తెలియని భాష: %1$s." msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7497,7 +7613,7 @@ msgstr "" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "" @@ -7515,7 +7631,7 @@ msgstr "" msgid "Difference" msgstr "తేడా" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "" @@ -7540,11 +7656,11 @@ msgstr "" msgid "Columns" msgstr "వ్యాఖ్యలు" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7572,7 +7688,7 @@ msgstr "" msgid "Location of the text file" msgstr "పాఠ్యపు దస్త్రం యొక్క ప్రాంతం" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "" @@ -7747,24 +7863,28 @@ msgid "+ Add a value" msgstr "క్రొత్త వినియోగదారుని చేర్చు" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "" # Research అంటే పరిశోధన, అందువల్లన ఇది శోధనైంది -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "శోధించు" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +msgid "Edit/Insert" +msgstr "" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7890,8 +8010,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -7915,8 +8035,8 @@ msgstr "మరిన్ని అమరికలు" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "వాడుకరి" @@ -8036,7 +8156,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "" @@ -8065,7 +8185,7 @@ msgstr "ఎడమవైపున మెనుని చూపించు/దా msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "" @@ -8414,96 +8534,96 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8530,52 +8650,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8583,43 +8703,43 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "ఏమీలేవు" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "పరిపాలన" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "" @@ -8639,7 +8759,7 @@ msgstr "ప్రవేశపు సమాచారం" msgid "Do not change the password" msgstr "" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "వాడుకరి కనబడలేదు." @@ -8689,7 +8809,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "" @@ -8698,34 +8818,34 @@ msgid "Revoke" msgstr "" # మొదటి అనువాదము -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "ఏదైనను" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8734,96 +8854,96 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" # మొదటి అనువాదము -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... పాతదే ఉంచుము" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "No" msgctxt "Create none database for user" msgid "None" msgstr "కాదు" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "Database %s has been dropped." msgid "User has been added." @@ -9989,113 +10109,113 @@ msgid_plural "%d minutes" msgstr[0] "నిమిషం" msgstr[1] "నిమిషం" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 msgid "Executed queries" msgstr "" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "అనుసంధానాలు" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, fuzzy, php-format #| msgid "Server configuration" msgid "Configuration: %s" msgstr "సేవకి స్వరూపణం" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10389,34 +10509,34 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "" @@ -10425,63 +10545,63 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" # మొదటి అనువాదము -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "మరియు తరువాత" # మొదటి అనువాదము -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "మునుపటి పుటకు వెళ్ళు" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "" # మొదటి అనువాదము -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "ఈ పుటకు తిరిగి వెళ్ళుము" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10562,49 +10682,45 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "వెడల్పు" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "ఎత్తు" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Table comments" msgid "Label column" msgstr "పట్టిక వ్యాఖ్యలు" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- ఏమీలేదు -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "మొత్తం" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -10828,23 +10944,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "" @@ -12282,9 +12398,6 @@ msgstr "" #~ msgid "Bar type" #~ msgstr "ఎగుమతి రకం" -#~ msgid "Add a New User" -#~ msgstr "కొత్త వాడుకరిని చేర్చు" - #~ msgid "Create User" #~ msgstr "వాడుకరిని సృష్టించు" diff --git a/po/th.po b/po/th.po index e568f6f86e..7dd1b03e9c 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-07-24 11:50+0200\n" "Last-Translator: Waitaya Krongapiradee \n" "Language-Team: thai \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "แสดงทั้งหมด" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "ไม่สามารถเปลี่ยนแปลงข้อมูลของหน้าต่างเป้าหมายได้ อาจเป็นเพราะว่าคุณปิดหน้าต่างหลัก " "หรือสาเหตุจากการตั้งค่าความปลอดภัยให้ป้องกันการเปลี่ยนแปลงข้อมูลข้ามหน้าต่าง" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "ค้นหา" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "ค้นหา" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -136,8 +137,8 @@ msgstr "หมายเหตุของตาราง" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -152,8 +153,8 @@ msgstr "สดมภ์" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -164,7 +165,7 @@ msgstr "ชนิด" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -207,10 +208,10 @@ msgstr "หมายเหตุ" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "ไม่" @@ -229,9 +230,9 @@ msgstr "ไม่" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -332,7 +333,7 @@ msgstr "สลับไปยังฐานข้อมูลที่ถูก #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -355,15 +356,15 @@ msgstr "แก้ไข หรือส่งออก รีเลชันแ #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "ตาราง " #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -422,19 +423,19 @@ msgstr "เรียง" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "น้อยไปมาก" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "มากไปน้อย" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "แสดง" @@ -455,8 +456,8 @@ msgid "Del" msgstr "ลบ" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "หรือ" @@ -487,7 +488,7 @@ msgstr "ใช้ตาราง" msgid "SQL query on database %s:" msgstr "คำค้นบนฐานข้อมูล %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "ประมวลผลคำค้น" @@ -527,8 +528,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" msgstr[1] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "เปิดดู" @@ -540,7 +541,7 @@ msgid "Delete the matches for the %s table?" msgstr "dump ตาราง" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -612,7 +613,7 @@ msgstr "การติดตามเริ่มทำงานแล้ว" msgid "Tracking is not active." msgstr "หยุดการติดตามแล้ว" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -640,22 +641,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "เซิร์ฟเวอร์ MySQL นี้ใช้ storage engine ชื่อ %s เป็นค่าเริ่มต้น" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "ทำกับที่เลือก:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "เลือกทั้งหมด" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "ไม่เลือกเลย" @@ -663,10 +664,10 @@ msgstr "ไม่เลือกเลย" msgid "Check tables having overhead" msgstr "ตรวจสอบตารางที่มี overhead" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -674,17 +675,17 @@ msgid "Export" msgstr "ส่งออก" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "แสดง" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "ลบข้อมูล" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -736,9 +737,9 @@ msgstr "ตารางที่ถูกติดตาม" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "ฐานข้อมูล" @@ -758,15 +759,15 @@ msgstr "ปรับปรุงแล้ว" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "สถานะ" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "กระทำการ" @@ -819,7 +820,7 @@ msgstr "ป้อนค่าในช่องต่างๆ" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -852,6 +853,93 @@ msgstr "บันทึกไฟล์ %s ไม่ได้ เพราะเ msgid "Dump has been saved to file %s." msgstr "" +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "ค่าสำหรับคอลัมน์ \"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add new field" +msgid "Add a point" +msgstr "เพิ่มฟิลด์ใหม่" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "จบแถวด้วย" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "เพิ่มผู้ใช้ใหม่" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "เพิ่มผู้ใช้ใหม่" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +msgid "Add a polygon" +msgstr "เพิ่มฟิลด์ใหม่" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "เพิ่มผู้ใช้ใหม่" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -892,7 +980,7 @@ msgstr "ลบคำค้นที่จดไว้เรียบร้อย msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -915,7 +1003,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -939,15 +1027,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้" -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "ต้องการจะ " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1013,8 +1101,8 @@ msgstr "รหัสผ่านยังว่างอยู่!" msgid "The passwords aren't the same!" msgstr "รหัสผ่านไม่ตรงกัน!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1037,8 +1125,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1077,12 +1165,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1169,12 +1257,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "เมกกะไบต์" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "กิโลไบต์" @@ -1275,7 +1363,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "ไม่มี" @@ -1687,8 +1775,8 @@ msgstr "คำค้น SQL" msgid "No rows selected" msgstr "ยังไม่ได้เลือกแถว" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "เปลี่ยน" @@ -1700,8 +1788,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "บันทึก" @@ -1715,7 +1803,7 @@ msgstr "คำค้น SQL" msgid "Show search criteria" msgstr "คำค้น SQL" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1759,109 +1847,117 @@ msgstr "เพิ่ม/ลบ สดมภ์" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "ไม่สนใจ" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy msgid "Add columns" msgstr "เพิ่มฟิลด์ใหม่" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "เลือกฟิลด์ที่ต้องการแสดง" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "เปลี่ยนรหัสผ่าน" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 #, fuzzy msgid "Generate" msgstr "สร้างโดย" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "เปลี่ยนรหัสผ่าน" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "จ." -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1869,30 +1965,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "ไม่มีฐานข้อมูล" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "None" msgid "Done" msgstr "ไม่มี" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "ก่อนหน้า" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1900,96 +1996,96 @@ msgid "Next" msgstr "ต่อไป" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "รวม" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ข้อมูลไบนารี " -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "มี.ค." -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "เม.ย." -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "พ.ค." -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "มิ.ย." -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ก.ค." -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "ส.ค." -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ต.ค." -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -1997,78 +2093,78 @@ msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "ธ.ค." -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "อา." -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "จ." -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "อ." -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "ศ." -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2076,105 +2172,110 @@ msgid "Sun" msgstr "อา." #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "ส." #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "อา." #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "จ." #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "อ." #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "พ." #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "พฤ." #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "ศ." #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "ส." #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ใช้อยู่" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "ต่อวินาที" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2279,13 +2380,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "ฐานข้อมูล" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "ผิดพลาด" @@ -2415,7 +2516,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2579,7 +2680,7 @@ msgstr "ตาราง" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "ข้อมูล" @@ -2645,7 +2746,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "เซิร์ฟเวอร์" @@ -2710,101 +2811,101 @@ msgstr "คำค้น SQL" msgid "MySQL said: " msgstr "MySQL แสดง: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "อธิบาย SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "ไม่ต้องอธิบาย SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "ไม่เอาโค้ด PHP" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "สร้างโค้ด PHP" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "เรียกใหม่" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "ไม่ต้องตรวจสอบ SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "ตรวจสอบ SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "ไบต์" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "กิกะไบต์" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "เทอราไบต์" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "เพตตะไบต์" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "เอกซะไบต์" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "อา." #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y %Rน." -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s วัน, %s ชั่วโมง, %s นาที, %s วินาที" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Add new field" msgid "Missing parameter:" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2812,7 +2913,7 @@ msgctxt "First page" msgid "Begin" msgstr "จุดเริ่มต้น" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2821,7 +2922,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "ก่อนหน้า" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2830,7 +2931,7 @@ msgctxt "Next page" msgid "Next" msgstr "ต่อไป" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2838,34 +2939,34 @@ msgctxt "Last page" msgid "End" msgstr "ท้ายสุด" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "กระโดดไปที่ฐานข้อมูล "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "โครงสร้าง" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2873,38 +2974,38 @@ msgstr "โครงสร้าง" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "แทรก" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "กระบวนการ" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3083,7 +3184,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "เริ่มใหม่" @@ -3339,7 +3440,7 @@ msgid "Character set of the file" msgstr "ชุดอักขระของไฟล์ (character set):" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "รูปแบบ" @@ -4947,7 +5048,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "รหัสผ่าน" @@ -5230,8 +5331,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "สิทธิ" @@ -5250,7 +5351,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5309,7 +5410,7 @@ msgid "Create" msgstr "สร้าง" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "ไม่มีสิทธิ" @@ -5654,12 +5755,12 @@ msgstr "เรียงโดยคีย์" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "กระบวนการ" @@ -5695,8 +5796,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5706,10 +5807,6 @@ msgstr "" msgid "Browser transformation" msgstr "การแปลงที่เรียกใช้ได้" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5718,60 +5815,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "ฆ่าทิ้ง" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "ในคำค้น" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "แสดงระเบียนที่ " -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "ทั้งหมด" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "แสดงสกีมาของ PDF" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "รุ่นของเซิร์ฟเวอร์" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "ไม่พบลิงก์" @@ -5953,7 +6046,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "เรียง" @@ -6282,7 +6375,7 @@ msgstr "MIME-types ที่มีอยู่" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "โฮสต์" @@ -6484,7 +6577,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6496,50 +6589,50 @@ msgstr "ผลลัพธ์ SQL" msgid "Generated by" msgstr "สร้างโดย" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "ไม่มีฐานข้อมูล" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "เฉพาะโครงสร้าง" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6590,7 +6683,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6611,6 +6704,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6662,7 +6779,7 @@ msgstr "" msgid "Add prefix" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "ไม่มีการเปลี่ยนแปลง" @@ -6671,7 +6788,7 @@ msgid "Charset" msgstr "ชุดตัวอักษร" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "ข้อมูลไบนารี " @@ -6979,7 +7096,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "ชื่อผู้ใช้" @@ -6997,9 +7114,9 @@ msgid "Variable" msgstr "ตัวแปร" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "ค่า" @@ -7026,7 +7143,7 @@ msgstr "ผู้ใช้ใดๆ" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "ใช้ช่องใส่ข้อความ (text field)" @@ -7214,7 +7331,7 @@ msgid "Returns" msgstr "ตัวเลือกตาราง" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "เวลา" @@ -7367,8 +7484,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "ฟังก์ชั่น" @@ -7691,8 +7808,8 @@ msgstr "" msgid "Current Server" msgstr "เซิร์ฟเวอร์" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7715,7 +7832,7 @@ msgstr "ชุดตัวอักษร" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "ค้นหาในฐานข้อมูล" @@ -7734,7 +7851,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "ค้นหาในฐานข้อมูล" @@ -7761,11 +7878,11 @@ msgstr "ปฏิทิน" msgid "Columns" msgstr "ชื่อคอลัมน์" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7793,7 +7910,7 @@ msgstr "ดูอย่างเดียว" msgid "Location of the text file" msgstr "เลือกไฟล์ข้อความจาก" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" @@ -7990,24 +8107,30 @@ msgid "+ Add a value" msgstr "เพิ่มผู้ใช้ใหม่" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 #, fuzzy msgid "Operator" msgstr "กระบวนการ" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "ค้นหา" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "แทรก" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8137,8 +8260,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8166,8 +8289,8 @@ msgstr "ความสามารถด้านรีเลชันทั่ msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "ผู้ใช้" @@ -8299,7 +8422,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "ไม่มีฐานข้อมูล" @@ -8327,7 +8450,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "เริ่มหน้าใหม่" @@ -8696,99 +8819,99 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "ดูโครงสร้างของฐานข้อมูล" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "ให้สิทธิทุกอย่าง ยกเว้นการให้สิทธิแก่ผู้อื่น (GRANT)." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "อนุญาตให้เปลี่ยนโครงสร้างของตารางที่มีอยู่เดิม." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 #, fuzzy msgid "Allows altering and dropping stored routines." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "อนุญาตให้สร้างฐานข้อมูล และตารางใหม่." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 #, fuzzy msgid "Allows creating stored routines." msgstr "อนุญาตให้สร้างตารางใหม่." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "อนุญาตให้สร้างตารางใหม่." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "อนุญาตให้สร้างตารางชั่วคราว." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 #, fuzzy msgid "Allows creating new views." msgstr "อนุญาตให้สร้างตารางใหม่." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "อนุญาตให้ลบข้อมูล" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "อนุญาตให้ทิ้งฐานข้อมูล และตาราง" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "อนุญาตให้ทิ้งตาราง" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "อนุญาตให้นำเข้าข้อมูล และส่งออกข้อมูล ไปที่ไฟล์" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "อนุญาตให้เพิ่มผู้ใช้ และสิทธิเข้าถึง โดยไม่ต้องเรียกใช้ตารางสิทธิใหม่" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "อนุญาตให้เพิ่ม และแทนที่ ข้อมูล" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "อนุญาตให้ล็อกตารางสำหรับเธรดปัจจุบัน" @@ -8817,52 +8940,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "จำกัดจำนวนการเชื่อมต่อใหม่ ที่ผู้ใช้จะสามารถเปิดได้ ต่อชั่วโมง" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "ไม่มีผลใน MySQL รุ่นนี้" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "อนุญาตให้เรียกใช้ค่ากำหนดของเซิร์ฟเวอร์ใหม่ และล้างแคชของเซิร์ฟเวอร์" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "มอบสิทธิให้ผู้ใช้ ในการถามว่า slaves หรือ masters อยู่ที่ไหน." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "อนุญาตให้อ่านข้อมูลได้." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "สามารถเรียกดูรายการฐานข้อมูลทั้งหมดได้" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "อนุญาตให้ปิดเซิร์ฟเวอร์ได้" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8870,46 +8993,46 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "อนุญาตให้สร้าง และทิ้ง ดัชนี" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "อนุญาตให้เปลี่ยนข้อมูลได้." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "ไม่มีสิทธิใดๆ." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "ไม่มี" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "สิทธิเจาะจงเฉพาะตาราง" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "โปรดทราบ: ชื่อของสิทธิใน MySQL จะแสดงเป็นภาษาอังกฤษ " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "การดูแลระบบ" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "สิทธิแบบโกลบอล" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "สิทธิเจาะจงเฉพาะฐานข้อมูล" @@ -8929,7 +9052,7 @@ msgstr "ข้อมูลล็อกอิน" msgid "Do not change the password" msgstr "กรุณาอย่าเปลี่ยนรหัสผ่าน" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -8980,7 +9103,7 @@ msgstr "ลบผู้ใช้ที่เลือกไว้เรียบ msgid "The privileges were reloaded successfully." msgstr "สิทธิได้ถูกเรียกใช้ใหม่เรียบร้อยแล้ว" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "แก้ไขสิทธิ" @@ -8988,34 +9111,34 @@ msgstr "แก้ไขสิทธิ" msgid "Revoke" msgstr "เพิกถอน" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "ใดๆ" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "ข้อมูลทั่วไปของผู้ใช้" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "มอบสิทธิ" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "ถอนผู้ใช้ที่เลือก" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "เพิกถอน active privileges ทั้งหมดจากผู้ใช้ และลบผู้ใช้ทิ้งหลังจากนั้น." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9024,95 +9147,95 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "สิทธิเฉพาะคอลัมน์" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "เพิ่มสิทธิของฐานข้อมูลต่อไปนี้" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "เพิ่มสิทธิของตารางต่อไปนี้" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "เปลี่ยนข้อมูลล็อกอิน / ทำสำเนาผู้ใช้" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "สร้างผู้ใช้ใหม่ ให้มีสิทธิเหมือนกัน และ ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... เก็บของเก่าไว้." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... ลบของเก่าทิ้งไปจากตารางผู้ใช้." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... เรียกคืนสิทธิ์ทั้งหมดจากเดิม แล้วลบมันหลังจากนั้น." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... ลบของเก่าจากตารางผู้ใช้ แล้วเรียกใช้รายการสิทธิ์ใหม่หลังจากนั้น." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "ไม่มี" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "ตรวจสอบสิทธิสำหรับฐานข้อมูล "%s"." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "โกลบอล" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "เฉพาะฐานข้อมูล" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "ไวล์การ์ด" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10290,113 +10413,113 @@ msgid_plural "%d minutes" msgstr[0] "ใช้อยู่" msgstr[1] "ใช้อยู่" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "คำค้น SQL" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "การเชื่อมต่อ" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10692,36 +10815,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "ตรวจสอบ SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "ป้ายชื่อ" @@ -10730,63 +10853,63 @@ msgstr "ป้ายชื่อ" msgid "Table %1$s has been altered successfully" msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "เนื่องจากความยาวของมัน
ฟิลด์นี้ ไม่อาจแก้ไขได้" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "ข้อมูลไบนารี - ห้ามแก้ไข " -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "แทรกเป็นแถวใหม่" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "ส่งกลับ" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "แทรกระเบียนใหม่" -#: tbl_change.php:1005 +#: tbl_change.php:1045 #, fuzzy msgid "Go back to this page" msgstr "ส่งกลับ" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10870,49 +10993,45 @@ msgstr "โยนตาราง %s ทิ้งไปเรียบร้อ msgid "View dump (schema) of table" msgstr "ดูโครงสร้างของตาราง" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "รวม" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "ส่งมาเป็นไฟล์" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -11145,25 +11264,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "เลือกฟิลด์ (อย่างน้อยหนึ่งฟิลด์):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "เพิ่มเงื่อนไขในการค้นหา:" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "ระเบียนต่อหน้า" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "ลำดับการแสดง:" @@ -12717,9 +12836,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "รุ่นของเซิร์ฟเวอร์" -#~ msgid "Add a new User" -#~ msgstr "เพิ่มผู้ใช้ใหม่" - #~ msgid "Delete the matches for the " #~ msgstr "dump ตาราง" diff --git a/po/tr.po b/po/tr.po index ad431f05e6..72536dfbf2 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-16 16:49+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Tümünü göster" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ 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:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Ara" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Ara" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Tablo yorumları" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "Sütun" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Türü" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Yorumlar" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Hayır" @@ -232,9 +233,9 @@ msgstr "Hayır" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "Kopyalanmış veritabanına geç" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -360,15 +361,15 @@ msgstr "Bağlantılı şemayı dışa aktar veya düzenle" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tablo" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -426,19 +427,19 @@ msgstr "Sırala" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Küçükten Büyüğe" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Büyükten Küçüğe" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Göster" @@ -459,8 +460,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Veya" @@ -489,7 +490,7 @@ msgstr "Tabloları kullan" msgid "SQL query on database %s:" msgstr "%s veritabanındaki SQL sorgusu:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Sorguyu Gönder" @@ -527,8 +528,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s benzeşme, %s tablosu içinde" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Gözat" @@ -539,7 +540,7 @@ msgid "Delete the matches for the %s table?" msgstr "%s tablosu için benzeşenler silinsin mi?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -607,7 +608,7 @@ msgstr "İzleme aktif." msgid "Tracking is not active." msgstr "İzleme aktif değil." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -636,22 +637,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Seçilileri:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Tümünü Seç" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Hiçbirini Seçme" @@ -659,10 +660,10 @@ msgstr "Hiçbirini Seçme" msgid "Check tables having overhead" msgstr "Ek yükü olan tabloları kontrol et" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -670,17 +671,17 @@ msgid "Export" msgstr "Dışa Aktar" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Baskı görünümü" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Boşalt" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -728,9 +729,9 @@ msgstr "İzlenen tablolar" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Veritabanı" @@ -749,15 +750,15 @@ msgstr "Güncellendi" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Durum" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Eylem" @@ -810,7 +811,7 @@ msgstr "Her bir değeri ayrı alana girin." msgid "+ Restart insertion and add a new value" msgstr "+ Eklemeyi yeniden başlat ve yeni bir değer gir" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "Çıktı" @@ -845,6 +846,95 @@ msgstr "Web sunucusu %s dosyasını kaydetmek için izne sahip değil." msgid "Dump has been saved to file %s." msgstr "Döküm, %s dosyasına kaydedildi." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "\"%s\" sütunu için değerler" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "Taban Katman olarak OpenStreetMaps kullan" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "Geometri" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "Yordam ekle" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Satırı sonlandıran:" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Yeni Kullanıcı ekle" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Yeni Kullanıcı ekle" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "Sütun ekle" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Geometry" +msgid "Add geometry" +msgstr "Geometri" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -892,7 +982,7 @@ msgstr "İşaretleme silindi." msgid "Showing bookmark" msgstr "Gösterilen işaret" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "İşaretleme %s oluşturuldu" @@ -920,7 +1010,7 @@ msgstr "" "biteremeyeceği anlamına gelir." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -945,15 +1035,15 @@ msgstr "Seçmek için tıklayın" msgid "Click to unselect" msgstr "Seçimi kaldırmak için tıklayın" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Şu komut uygulansın " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" @@ -1017,8 +1107,8 @@ msgstr "Parola boş!" msgid "The passwords aren't the same!" msgstr "Parolalar birbiriyle aynı değil!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Kullanıcı ekle" @@ -1036,8 +1126,8 @@ msgid "Close" msgstr "Kapat" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1073,12 +1163,12 @@ msgid "Other" msgstr "Diğer" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1163,12 +1253,12 @@ msgid "System swap" msgstr "Sistem takası" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MiB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1257,7 +1347,7 @@ msgstr "Lütfen diziye en az bir değişken ekleyin" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Yok" @@ -1638,8 +1728,8 @@ msgstr "Sorgu kutusunu göster" msgid "No rows selected" msgstr "Satır seçilmedi" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Değiştir" @@ -1651,8 +1741,8 @@ msgstr "Sorgu yürütme süresi" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Kaydet" @@ -1664,7 +1754,7 @@ msgstr "Arama kriterini gizle" msgid "Show search criteria" msgstr "Arama kriterini göster" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 msgid "Zoom Search" msgstr "Yakınlaştırma Arama" @@ -1709,32 +1799,40 @@ msgstr "İki sütun seçin" msgid "Select two different columns" msgstr "İki farklı sütun seçin" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Yoksay" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "Kopyala" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "Sütunları ekle" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Kaynak gösterilen anahtarı seç" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Dış Anahtarı seç" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Göstermek için sütun seçin" -#: js/messages.php:292 +#: js/messages.php:304 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?" @@ -1742,15 +1840,15 @@ msgstr "" "Değişiklikleri yerleşime kaydetmediniz. Eğer bunları kaydetmezseniz, " "kaybolacaklardır. Devam etmek istiyor musunuz?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "Sütun için bir seçenek ekle " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "Düzenlemeyi iptal etmek için Esc tuşuna basın" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -1758,24 +1856,24 @@ msgstr "" "Bazı verileri düzenlediniz ve kaydedilmediler. Veriyi kaydetmeden önce bu " "sayfadan ayrılmak istediğinize emin misiniz?" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "Yen.düzenleme için sürükle" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "Sıralamak için tıklayın" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "İşaretlemek/işareti kaldırmak için tıklayın" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" "Sütunların görünürlüğünü değiştirmek
için aşağı açılır okuna tıklayın" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -1784,34 +1882,34 @@ msgstr "" "özellikler, Düzenle, Kopyala ve Sil bağlantıları kaydedildikten sonra " "çalışmayabilir." -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" "Aynı zamanda çoğu sütunu içeriğine
doğrudan tıklayarak " "düzenleyebilirsiniz." -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "Bağlantıya git" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Parola üret" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Üret" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Parola Değiştir" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Daha Fazla" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1821,258 +1919,263 @@ msgstr "" "%s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", son sağlam sürüm:" -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "güncel" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Bitti" -#: js/messages.php:344 +#: js/messages.php:356 msgctxt "Previous month" msgid "Prev" msgstr "Önceki" -#: js/messages.php:349 +#: js/messages.php:361 msgctxt "Next month" msgid "Next" msgstr "Sonraki" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Bugün" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Ocak" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Şubat" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Mart" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Nisan" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Mayıs" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Haziran" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Temmuz" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Ağustos" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Eylül" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Ekim" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Kasım" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Ara" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Pazar" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Pazartesi" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Salı" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Çarşamba" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Perşembe" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "Cuma" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Cumartesi" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Sal" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Cum" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Ctesi" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Pz" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Pt" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Ça" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Cu" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Ct" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "Hs" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "Saat" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Dakika" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Saniye" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Yazı Tipi boyutu" @@ -2183,13 +2286,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Veritabanları" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Hata" @@ -2311,7 +2414,7 @@ msgstr "%s teması bulunamadı!" msgid "Theme path not found for theme %s!" msgstr "%s teması için tema yolu bulunamadı!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "Tema" @@ -2485,7 +2588,7 @@ msgstr "Tablolar" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Veri" @@ -2555,7 +2658,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Sunucu" @@ -2620,152 +2723,152 @@ msgstr "SQL sorgusu" msgid "MySQL said: " msgstr "MySQL çıktısı: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "SQL onaylayıcısına bağlanma başarısız oldu!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL'i açıkla" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "SQL Açıklamasını atla" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP Kodsuz" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP Kodu oluştur" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Yenile" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL Onaylamayı atla" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL'i onayla" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Bu sorguyu sıralı düzenle" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "Sıralı" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profil çıkart" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GiB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TiB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EiB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Paz" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y, %H:%M:%S" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s gün, %s saat, %s dakika ve %s saniye" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "Eksik parametreler:" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 msgctxt "First page" msgid "Begin" msgstr "Başlangıç" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 msgctxt "Previous page" msgid "Previous" msgstr "Önceki" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 msgctxt "Next page" msgid "Next" msgstr "Sonraki" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 msgctxt "Last page" msgid "End" msgstr "Son" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr ""%s" veritabanına git." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakınız %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "Değiştirmek için tıklayın" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Yapı" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2773,37 +2876,37 @@ msgstr "Yapı" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Ekle" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "İşlemler" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "Bilgisayarınıza gözat:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Web sunucusu gönderme dizininden %s seçin:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 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/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "Göndermek için dosyalar yok" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Çalıştır" @@ -2969,7 +3072,7 @@ msgstr "Bu değeri özelleştirmek için kullanıcılara izin ver" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Sıfırla" @@ -3240,7 +3343,7 @@ msgid "Character set of the file" msgstr "Dosyanın karakter grubu" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Biçim" @@ -4917,7 +5020,7 @@ msgstr "SQL Onaylayıcının etkinleştirilmesini gerektirir" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Parola" @@ -5217,8 +5320,8 @@ msgid "Designer" msgstr "Tasarımcı" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Yetkiler" @@ -5237,7 +5340,7 @@ msgstr "Olaylar" msgid "Triggers" msgstr "Tetikleyiciler" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5298,7 +5401,7 @@ msgid "Create" msgstr "Oluştur" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Yetkiniz yok" @@ -5616,12 +5719,12 @@ msgstr "Anahtara göre sırala" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Seçenekler" @@ -5649,8 +5752,8 @@ msgstr "Binari içerikleri göster" msgid "Show BLOB contents" msgstr "BLOB içerikleri göster" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Gizle" @@ -5659,10 +5762,6 @@ msgstr "Gizle" msgid "Browser transformation" msgstr "Tarayıcı dönüşümü" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "Geometri" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "Çok İyi Bilinen Metin" @@ -5671,57 +5770,53 @@ msgstr "Çok İyi Bilinen Metin" msgid "Well Known Binary" msgstr "Çok İyi Bilinen Binari" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "Kopyala" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Satır silindi" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Sonlandır" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "sorgu içerisinde" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Gösterilen satırlar" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "toplam" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Sorgu %01.4f san. sürdü" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Baskı görünümü (tüm metinler ile)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "Çizelge göster" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "GIS verisini görselleştir" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "Görünüm oluştur" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Bağlantı bulunamadı" @@ -5920,7 +6015,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "Ufaltılmadan önce depolama dosyasındaki artık yüzdesidir." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "B.Noktası" @@ -6272,7 +6367,7 @@ msgstr "MIME türlerini göster" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Anamakine" @@ -6489,7 +6584,7 @@ msgstr "İçerikleri dışa aktar" msgid "Open new phpMyAdmin window" msgstr "Yeni phpMyAdmin penceresi aç" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "GIS görselleştirmesi için bulunan veri yok." @@ -6501,50 +6596,50 @@ msgstr "SQL sonucu" msgid "Generated by" msgstr "Üreten:" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL boş bir sonuç kümesi döndürdü (örn. sıfır satır)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 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:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Veritabanına git" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "%s için ayarları düzenle" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Tabloya git" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, php-format msgid "Structure of %s" msgstr "%s yapısı" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Görünüme git" @@ -6600,7 +6695,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Tablo adı" @@ -6621,6 +6716,32 @@ msgstr "Yüzdeleri doğru ondalık olarak içe aktar (örn. %12.00'ı .12'ye) msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Parasalları içe aktar (örn. $5.00'ı 5.00'a)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "Bu sayfa herhangi bir tablo içermiyor!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "SQL uyumluluk kipi:" @@ -6668,7 +6789,7 @@ msgstr "Tablo ön eki ekle" msgid "Add prefix" msgstr "Ön ek ekle" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Değişiklik yok" @@ -6677,7 +6798,7 @@ msgid "Charset" msgstr "Karakter Grubu" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binari" @@ -6989,7 +7110,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Kullanıcı Adı" @@ -7007,9 +7128,9 @@ msgid "Variable" msgstr "Değişken" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Değer" @@ -7037,7 +7158,7 @@ msgstr "Herhangi kullanıcı" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Metin alanını kullan" @@ -7211,7 +7332,7 @@ msgid "Returns" msgstr "Dönüşler" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Süre" @@ -7353,8 +7474,8 @@ msgstr "Yordamı çalıştır" msgid "Routine parameters" msgstr "Yordam parametreleri" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "İşlev" @@ -7637,8 +7758,8 @@ msgstr "Bilinmeyen dil: %1$s." msgid "Current Server" msgstr "Şu Anki Sunucu" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Eşitle" @@ -7660,7 +7781,7 @@ msgstr "Karakter Grupları" msgid "Engines" msgstr "Motorlar" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Kaynak veritabanı" @@ -7678,7 +7799,7 @@ msgstr "Uzak sunucu" msgid "Difference" msgstr "Farkı" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Hedef veritabanı" @@ -7701,11 +7822,11 @@ msgstr "Temizle" msgid "Columns" msgstr "Sütun" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Bu SQL sorgusunu işaretle" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver" @@ -7733,7 +7854,7 @@ msgstr "Sadece göster" msgid "Location of the text file" msgstr "Metin dosyasının yeri" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "web sunucusu gönderme dizini" @@ -7928,21 +8049,27 @@ msgid "+ Add a value" msgstr "+ Bir değer ekle" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Dış değerlere gözat" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "İşletici" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 msgid "Table Search" msgstr "Tablo Arama" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Ekle" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8108,8 +8235,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "ZIP arşivi içinde bulunan dosya yok!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "ZIP arşivinde hata:" @@ -8133,8 +8260,8 @@ msgstr "Daha fazla ayarlar" msgid "Protocol version" msgstr "Protokol sürümü" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Kullanıcı" @@ -8285,7 +8412,7 @@ msgstr "" "Sunucu Suhosin ile çalışıyor. Lütfen olası sorunlar için %sbelgeden%s " "yararlanın." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Veritabanı yok" @@ -8310,7 +8437,7 @@ msgstr "Sol menüyü Göster/Gizle" msgid "Save position" msgstr "Konumu kaydet" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Tablo oluştur" @@ -8650,82 +8777,82 @@ msgstr "Depolama Motorları" msgid "View dump (schema) of databases" msgstr "Veritabanlarının dökümünü (şemasını) göster" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "GRANT hariç tüm yetkileri içerir." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Varolan tabloların yapısının değiştirilmesine izin verir." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Depolanan yordamların değiştirilmesine ve kaldırılmasına izin verir." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Yeni veritabanları ve tabloların oluşturulmasına izin verir." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Depolanan yordamların oluşturulmasına izin verir." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Yeni tabloların oluşturulmasına izin verir." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Geçici tablolar oluşturulmasına izin verir." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Kullanıcı hesaplarının oluşturulmasına, kaldırılmasına ve yeniden " "adlandırılmasına izin verir." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Yeni görünümlerin oluşturulmasına izin verir." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Veri silinmesine izin verir." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Veritabanları ve tabloların kaldırılmasına izin verir." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Tabloların kaldırılmasına izin verir." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Olay zamanlayıcısı için olayları ayarlamaya izin verir" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Depolanan yordamların yürütülmesine izin verir." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Verinin içe ve dışa aktarılmasına izin verir." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -8733,17 +8860,17 @@ msgstr "" "eklenmesine izin verir." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "İndekslerin oluşturulmasına ve kaldırılmasına izin verir." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Verinin eklenmesine ve yerinin değiştirilmesine izin verir." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Şu anki işlem için tabloların kilitlenmesine izin verir." @@ -8773,55 +8900,55 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Kullanıcının eşzamanlı bağlantı sayısını sınırlar." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Tüm kullanıcıların işlemlerini görüntülemeye izin verir" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Bu MySQL sürümünde etkisi yoktur." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Sunucu ayarlarının yeniden yüklenmesine ve sunucunun önbelleğinin " "temizlenmesine izin verir." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Kullanıcılara slave / master'ların nerede olduğunu sormasına izin verir." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Kopya edilen slave'ler için gereklidir." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Veri okunmasına izin verir." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Bütün veritabanı listesine erişim verir." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorgularının yapılmasına izin verir." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Sunucunun kapatılmasına izin ver." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8832,43 +8959,43 @@ msgstr "" "gibi pek çok yönetimsel işlemler için gereklidir." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "Tetikleyicileri oluşturmaya ve kaldırmaya izin verir" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Veri değiştirilmesine izin ver." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Yetkiniz yok." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "Yok" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Tabloya özgü yetkiler" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Not: MySQL yetki adları İngilizce olarak belirtilir" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Yönetim" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Genel yetkiler" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Veritabanına özgü yetkiler" @@ -8888,7 +9015,7 @@ msgstr "Oturum Açma Bilgisi" msgid "Do not change the password" msgstr "Parolayı değiştirme" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "Kullanıcı bulunamadı." @@ -8937,7 +9064,7 @@ msgstr "Seçili kullanıcılar başarılı olarak silindi." msgid "The privileges were reloaded successfully." msgstr "Yetkiler başarılı olarak yüklendi." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Yetkileri düzenle" @@ -8945,34 +9072,34 @@ msgstr "Yetkileri düzenle" msgid "Revoke" msgstr "Geri al" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Herhangi" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Kullanıcı gözden geçirme" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Onaylı" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Seçili kullanıcıları kaldır" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Kullanıcılardan tüm aktif yetkileri geri al ve sonra da sil." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8985,48 +9112,48 @@ msgstr "" "sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " "önce %syetkileri yeniden yüklemeniz%s gerekir." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Seçili kullanıcı yetki tablosunda bulunamadı." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Sütuna özgü yetkiler" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Aşağıdaki veritabanına yetkileri ekle" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "_ ve % jokerleri harfi harfine kullanılmak için \\ ile doldurun" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Aşağıdaki tabloya yetkileri ekle" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Otutum Açma Bilgisini değiştir / Kullanıcıyı kopyala" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Aynı yetkilerle yeni bir kullanıcı oluştur ve ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... eski olanı sakla." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... eski olanı kullanıcı tablolarından sil." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... eski olandan bütün aktif yetkileri iptal et ve sonra da sil." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9034,46 +9161,46 @@ msgstr "" "... eski olanı kullanıcı tablolarından sil ve sonra da yetkileri yeniden " "yükle." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Kullanıcı için veritabanı" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "Yok" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "Aynı isimle veritabanı oluştur ve tüm yetkileri ver" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "Joker isimlere tüm yetkileri ver (kullanıcıadı\\_%)" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr ""%s" veritabanı üzerindeki tüm yetkileri ver" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr ""%s" veritabanına erişimi olan kullanıcılar" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "genel" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "Veritabanına özgü" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "joker" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "Kullanıcı eklendi." @@ -10386,110 +10513,110 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d dakika" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Kaynağa bağlanamadı" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Hedefe bağlanamadı" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' veritabanı mevcut değil." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Yapı Eşitleme" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Veri Eşitleme" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "mevcut değil" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Yapı Farklılığı" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Veri Farklılığı" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Sekme(leri) ekle" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Sekme(leri)yi kaldır" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Sekme(leri)yi değiştir" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "İndeks(leri)i kaldır" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "İndeks(leri)i uygula" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Sıra(ları)yı güncelle" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Sıra(ları) ekle" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Hedef tablolardan önceki tüm sıraları silme istiyor musunuz?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Seçili Değişiklikleri Uygula" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Veritabanlarını Eşitle" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Seçili hedef tablolar kaynak tablolar ile eşitlendi." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Hedef veritabanı kaynak veritabanı ile eşitlendi" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 msgid "Executed queries" msgstr "Yürütülmüş sorgular" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "Elle giriş" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "Şu anki bağlantı" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "Yapılandırma: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Soket" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10833,34 +10960,34 @@ msgstr "Anahtar çok kısa, en az 8 karakter olmalıdır" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir." -#: sql.php:203 +#: sql.php:213 #, 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:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "PHP kodu olarak gösteriliyor" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "Oanylı SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Etiket" @@ -10869,62 +10996,62 @@ msgstr "Etiket" msgid "Table %1$s has been altered successfully" msgstr "Tablo %1$s başarılı olarak değiştirldi" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "Uzunluğu nedeniyle,
bu sütun düzenlenebilir olmayabilir" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "BLOB Havuzu Referansını kaldır" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binari - düzenlemeyiniz" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "BLOB Havuzuna gönder" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Yeni satır olarak ekle" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Yeni satır olarak ekle ve hataları yoksay" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Ekleme sorgusunu göster" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "ve sonra" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Önceki sayfaya geri dön" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Yeni başka bir satır ekle" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Bu sayfaya geri dön" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Sonraki satırı düzenle" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Değerden değere geçmek için TAB tuşunu veya herhangi bir yere gitmek için " "CTRL+OK TUŞLARI'nı kullanın" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "%s satırla eklemeye devam et" @@ -10995,43 +11122,39 @@ msgstr "Tablo %1$s oluşturuldu." msgid "View dump (schema) of table" msgstr "Tablonun dökümünü (şemasını) göster" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "GIS görselleştirmesini görüntüle" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "Genişlik" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "Yükseklik" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "Etiket sütunu" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- Yok --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "Uzamsal sütun" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "Taban Katman olarak OpenStreetMaps kullan" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "Yeniden Çiz" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "Dosyaya kaydet" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "Dosya adı" @@ -11257,23 +11380,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "Dış anahtar kısıtlaması" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Örnek sorgu\" yap. (joker: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "Sütunları seç (en az bir):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Arama koşulu ekle (\"where\" koşulu gövdesi):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Sayfa başına satır sayısı" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Görünüm düzeni:" @@ -12914,9 +13037,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Kullanıcı Oluştur" -#~ msgid "Add a new User" -#~ msgstr "Yeni Kullanıcı ekle" - #~ msgid "Show table row links on left side" #~ msgstr "Tablo satır bağlantılarını sol tarafta göster" diff --git a/po/tt.po b/po/tt.po index ff2fd0d392..8c7392910d 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-07-22 02:25+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: tatarish \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Barısın kürsät" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "bälki, yä browserneñ iminlek caylawında täräzä-ara yañartu tıyılğan bulıp " "tora." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Ezläw" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Ezläw" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -137,8 +138,8 @@ msgstr "Tüşämä açıqlaması" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -155,8 +156,8 @@ msgstr "Alan iseme" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "Töre" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "Açıqlama" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Yuq" @@ -232,9 +233,9 @@ msgstr "Yuq" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -338,7 +339,7 @@ msgstr "Kübäytelgän biremlekkä küçäse" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -368,15 +369,15 @@ msgstr "Bäyläneşlär sxeme" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Tüşämä" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -436,19 +437,19 @@ msgstr "Tezü" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Artıp" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Kimep" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Kürsät" @@ -469,8 +470,8 @@ msgid "Del" msgstr "Sal" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Yä" @@ -503,7 +504,7 @@ msgstr "Tüşämä qullanıp" msgid "SQL query on database %s:" msgstr "%s biremlegenä SQL-soraw:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Sorawnı Yulla" @@ -542,8 +543,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s kileşü bar, %s atlı tüşämädä" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Küzätü" @@ -555,7 +556,7 @@ msgid "Delete the matches for the %s table?" msgstr "Tüşämä eçtälegen çığaru" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -632,7 +633,7 @@ msgstr "" msgid "Tracking is not active." msgstr "" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -661,22 +662,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Saylanğannı:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Saylap Beter" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Saylanunı Töşer" @@ -684,10 +685,10 @@ msgstr "Saylanunı Töşer" msgid "Check tables having overhead" msgstr "Check overheaded" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -695,17 +696,17 @@ msgid "Export" msgstr "Export" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Bastıru küreneşe" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Buşat" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -759,9 +760,9 @@ msgstr "Tüşämä tikşerü" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Biremlek" @@ -782,15 +783,15 @@ msgstr "" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Torış" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Eş" @@ -848,7 +849,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -883,6 +884,93 @@ msgstr "The web server does not have permission to save the file %s." msgid "Dump has been saved to file %s." msgstr "Eçtälege \"%s\" biremenä saqlandı." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a point" +msgstr "%s alan östäw" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Yul ara bilgese" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Yaña qullanuçı östäw" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Yaña qullanuçı östäw" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add a polygon" +msgstr "%s alan östäw" + +#: gis_data_editor.php:304 +#, fuzzy +msgid "Add geometry" +msgstr "Yaña qullanuçı östäw" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -923,7 +1011,7 @@ msgstr "Tamğa beterelde." msgid "Showing bookmark" msgstr "Bitbilge kürsätü" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "%s digän bitbilge yaratıldı" @@ -946,7 +1034,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -970,15 +1058,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" cönläläre sünderelgän." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Sin çınlap ta bonı eşlärgä teliseñme: " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "You are about to DESTROY a complete database!" @@ -1048,8 +1136,8 @@ msgstr "Sersüzeñ buş!" msgid "The passwords aren't the same!" msgstr "Sersüzlär berbersenä kileşmi!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1073,8 +1161,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1113,12 +1201,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1210,12 +1298,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1319,7 +1407,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Buş" @@ -1732,8 +1820,8 @@ msgstr "SQL-soraw" msgid "No rows selected" msgstr "Kertemnär sayladı" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Üzgärt" @@ -1745,8 +1833,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Saqla" @@ -1760,7 +1848,7 @@ msgstr "SQL-soraw" msgid "Show search criteria" msgstr "SQL-soraw" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1804,110 +1892,118 @@ msgstr "Add/Delete Field Columns" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Qarama" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add %s field(s)" msgid "Add columns" msgstr "%s alan östäw" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Kürsätäse Alan saylaw" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy msgid "Go to link" msgstr "Biremleklär yuq" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Sersüz Ürçetü" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Ürçet" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Sersüz üzgärtü" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dşm" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1915,30 +2011,30 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy msgid ", latest stable version:" msgstr "Server söreme" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy msgid "up to date" msgstr "Biremleklär yuq" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy msgid "Done" msgstr "Eçtälek" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Uzğan" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1946,96 +2042,96 @@ msgid "Next" msgstr "Kiläse" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Tulayım" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Äpr" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "May" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Yün" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Yül" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Ökt" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2043,78 +2139,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dek" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ykş" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dşm" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sşm" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cmğ" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2122,105 +2218,110 @@ msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Şmb" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ykş" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dşm" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sşm" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çrş" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pnc" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cmğ" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şmb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "totıla" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekund sayın" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "" @@ -2326,13 +2427,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Biremleklär" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Xata" @@ -2463,7 +2564,7 @@ msgstr "%s digän tışlaw tabılmadı!" msgid "Theme path not found for theme %s!" msgstr "%s digän tışlaw urınlaşqan yul tabılmadı!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2633,7 +2734,7 @@ msgstr "Tüşämä" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Eçtälek" @@ -2705,7 +2806,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2770,101 +2871,101 @@ msgstr "SQL-soraw" msgid "MySQL said: " msgstr "MySQL qaytarışı:" -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL Centekläw" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "SQL Centeklämäskä" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP Kodısız" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP-Kod yasa" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Yañart" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL Tikşermäskä" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL'nı Tikşer" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Engine" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Ykş" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y.%m.%d, %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s kön, %s säğät, %s minut ta %s sekund" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2872,7 +2973,7 @@ msgctxt "First page" msgid "Begin" msgstr "Başlawğa" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2881,7 +2982,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Uzğan" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2890,7 +2991,7 @@ msgctxt "Next page" msgid "Next" msgstr "Kiläse" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2898,34 +2999,34 @@ msgctxt "Last page" msgid "End" msgstr "Azaq" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr ""%s" biremlegenä küç." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Tözeleş" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2933,38 +3034,38 @@ msgstr "Tözeleş" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Östäw" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Eşkärtü" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, 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/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 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/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3142,7 +3243,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Awdar" @@ -3402,7 +3503,7 @@ msgid "Character set of the file" msgstr "Şul biremneñ bilgelämäse:" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Tözeleş" @@ -5030,7 +5131,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Sersüz" @@ -5312,8 +5413,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Xoquqlar" @@ -5333,7 +5434,7 @@ msgstr "Cibärelde" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5394,7 +5495,7 @@ msgid "Create" msgstr "Yarat" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Xoquqsız" @@ -5748,12 +5849,12 @@ msgstr "Qullanası tezeş" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 #, fuzzy msgid "Options" msgstr "Eşkärtü" @@ -5789,8 +5890,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5799,10 +5900,6 @@ msgstr "" msgid "Browser transformation" msgstr "Browser transformation" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5811,60 +5908,56 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Üter" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "sorawda" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Yazma sanı:" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "tulayım" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Soraw eşkärtü %01.4f sek aldı" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Bastıru küreneşe (bar mätennär belän)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF schema kürsätü" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy msgid "Create view" msgstr "Server söreme" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Bäyläneş tabılmadı" @@ -6058,7 +6151,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 #, fuzzy msgid "Port" msgstr "Tezü" @@ -6391,7 +6484,7 @@ msgstr "Barlıq MIME-törlär" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Host" @@ -6599,7 +6692,7 @@ msgstr "Çığaru ısulı" msgid "Open new phpMyAdmin window" msgstr "Yaña phpMyAdmin-täräzä açu" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6611,51 +6704,51 @@ msgstr "SQL qaytarışı" msgid "Generated by" msgstr "Ürçätkeç:" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 #, fuzzy msgid "Go to database" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 #, fuzzy msgid "Go to table" msgstr "Biremleklär yuq" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Tözeleşen genä" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6706,7 +6799,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 #, fuzzy msgid "Table name" msgstr "tüşämä adı" @@ -6728,6 +6821,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6779,7 +6896,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Üzgäreşsez" @@ -6788,7 +6905,7 @@ msgid "Charset" msgstr "Bilgelämä" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Binar" @@ -7093,7 +7210,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "İreşü iseme" @@ -7111,9 +7228,9 @@ msgid "Variable" msgstr "Üzgärmä" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Bäyä" @@ -7139,7 +7256,7 @@ msgstr "Törle qullanuçı" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Bu mätennän" @@ -7329,7 +7446,7 @@ msgid "Returns" msgstr "Tüşämä köyläneşe" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Waqıt" @@ -7481,8 +7598,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funksí" @@ -7806,8 +7923,8 @@ msgstr "Belgesez tel: %1$s." msgid "Current Server" msgstr "Server" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7829,7 +7946,7 @@ msgstr "Bilgelämä" msgid "Engines" msgstr "Engine" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 #, fuzzy msgid "Source database" msgstr "Biremlektä ezläw: " @@ -7848,7 +7965,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 #, fuzzy msgid "Target database" msgstr "Biremlektä ezläw: " @@ -7875,11 +7992,11 @@ msgstr "Täqwim" msgid "Columns" msgstr "Alan iseme" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" @@ -7907,7 +8024,7 @@ msgstr "Kürep kenä" msgid "Location of the text file" msgstr "SQL-ämerlege belän birem yökläw" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "web-server'neñ yökläw törgäge" @@ -8112,23 +8229,29 @@ msgid "+ Add a value" msgstr "Yaña qullanuçı östäw" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Browse foreign values" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operator" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Ezläw" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Östäw" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8312,8 +8435,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "ZIP-tuplama eçendä biremnär tabılmadı!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "ZIP-tuplama eçendä xata:" @@ -8341,8 +8464,8 @@ msgstr "Bäyläneşlär buyınça töp mömkinleklär" msgid "Protocol version" msgstr "Protokol söreme" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Qullanuçı" @@ -8481,7 +8604,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Biremleklär yuq" @@ -8509,7 +8632,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 #, fuzzy msgid "Create table" msgstr "Yaña Bit yaratu" @@ -8880,97 +9003,97 @@ msgstr "Saqlaw Isulı" msgid "View dump (schema) of databases" msgstr "Biremleklärneñ eçtälegen (tözeleşen) çığaru" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "GRANT'tan basqa bar xoquqlar da bar." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Biredä bulğan tüşämä tözeleşen üzgärtü xoquqı." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Allows altering and dropping stored routines." #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Yaña biremlek/tüşämä yasaw xoquqı." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Saqlanğan funksílar qorırğa birä." -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Yaña tüşämä yasaw xoquqı." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Waqıtlı tüşämä yasaw xoquqı." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Qullanuçı xísabın qoru/salu/ataw eşen qılırğa birä." #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Yaña qaraş qorırğa birä." #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Eçtälek beterü xoquqı." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Biremlek/tüşämä beterü xoquqı." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Tüşämä beterü xoquqı." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Eçke funksílar eşlätterergä birä." #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Allows importing data from and exporting data into files." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Allows adding users and privileges without reloading the privilege tüşämä." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Açqıçlarnı qoru/beterü xoquqı." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Eçtälek östäw/almaştıru xoquqı." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Allows locking tables for the current thread." @@ -9000,52 +9123,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "Limits the number of new connections the user may open per hour." #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Has no effect in this MySQL version." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Allows reloading server settings and flushing the server's caches." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Gives the right to the user to ask where the slaves / masters are." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Needed for the replication slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Eçtälekne uqu xoquqı." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Gives access to the complete list of databases." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "SHOW CREATE VIEW sorawların eşläterlek itä." #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Serverne tuqtatu xoquqı." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9056,46 +9179,46 @@ msgstr "" "killing threads of other users." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 #, fuzzy msgid "Allows creating and dropping triggers" msgstr "Açqıçlarnı qoru/beterü xoquqı." #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Eçtälek üzgärtü xoquqı." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Xoquqlar yuq." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Buş" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Berär tüşämä öçen xoquqlar" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Beläse: MySQL'da xoquq adı İnglizçä kertelä!" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "İdärä" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Töp xoquq" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Berär biremlekkä qağılışlı xoquqlar" @@ -9115,7 +9238,7 @@ msgstr "Kereş Turında" msgid "Do not change the password" msgstr "Sersüzen üzgärtäse tügel" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9166,7 +9289,7 @@ msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." msgid "The privileges were reloaded successfully." msgstr "Bu xoquqlarnı yökläw uñışlı uzdı." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Xoquqlar Üzgärtü" @@ -9174,34 +9297,34 @@ msgstr "Xoquqlar Üzgärtü" msgid "Revoke" msgstr "Töşer" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Törle" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Qullanuçılar tezmäse" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Xoquq" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Saylanğan qullanuçı beterü" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Qullanuçı xoquqların awdarıp beteräse." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9214,50 +9337,50 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Berär bağana öçen xoquqlar" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Kiläse biremlek öçen xoquqlar östäw" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "_ belän % bilgelären şul kileş kenä qullanu öçen \\ belän ütkärergä kiräk" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Kiläse tüşämä öçen xoquqlar östäw" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Change Login Information / Copy User" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Create a new user with the same privileges and ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... keep the old one." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... delete the old one from the user tables." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" "... revoke all active privileges from the old one and delete it afterwards." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9265,48 +9388,48 @@ msgstr "" "... delete the old one from the user tables and reload the privileges " "afterwards." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Qullanuçı biremlege" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Buş" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, fuzzy, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\" biremlege öçen xoquqlar tikşerü." -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "ğömümi" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "berär biremlekkä qağılışlı" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "almaşbilge" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10498,114 +10621,114 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "totıla" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 #, fuzzy msgid "Structure Difference" msgstr "Tözeleşen genä" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL-soraw" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "Totaşular" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10902,37 +11025,37 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL'nı Tikşer" -#: sql.php:918 +#: sql.php:928 #, 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:949 +#: sql.php:959 msgid "Label" msgstr "Yarlıq" @@ -10941,64 +11064,64 @@ msgstr "Yarlıq" msgid "Table %1$s has been altered successfully" msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Because of its length,
this field might not be editable" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Binar - üzgärtmäslek" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Yaña yazma kert tä" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr ", şunnan soñ" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Aldağı bitkä qaytu" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Tağın ber yazma östäw" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Bu bitkä kire qaytası" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Kiläse yazma üzgärtü" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Ber bäyädän ikençegä küçü öçen TAB töymäsen qullanası, başqa cirgä küçü " "öçen, CTRL+uq töymäläre bar" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -11084,49 +11207,45 @@ msgstr "\"%s\" atlı tüşämä beterelde" msgid "View dump (schema) of table" msgstr "Tüşämä eçtälegen (tözeleşen) çığaru" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "Add/Delete Field Columns" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Tulayım" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Biremgä saqlıysı" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy msgid "File name" msgstr "tüşämä adı" @@ -11358,25 +11477,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Alannar saylísı (iñ kimendä ber):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Ezläw şartın östäw (\"WHERE\" eçtälege):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Bit sayın Kertem sanı" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Kürsätü tärtibe:" @@ -12972,9 +13091,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Server söreme" -#~ msgid "Add a new User" -#~ msgstr "Yaña qullanuçı östäw" - #~ msgid "Delete the matches for the " #~ msgstr "Tüşämä eçtälegen çığaru" diff --git a/po/ug.po b/po/ug.po index 02171d01c8..ce909d9f33 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-08-26 11:59+0200\n" "Last-Translator: \n" "Language-Team: Uyghur \n" @@ -17,13 +17,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "ھەممىسىنى كۆرسىتىش" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -40,19 +40,20 @@ msgstr "" "كۆزنەكنى يىڭىلاشقا ئامالسىز،سىز بەلكەم باش كۆزنەكنى تاقىۋەتكەن بۇلىشىڭىز " "ياكى تور كۆرەۈچىڭىزنىڭ بىخەتەرلىك تەڭشىكى تسقۇنلۇق قىلغان بۇلىشى مۇمكىن." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "ئىزدەش" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -70,14 +71,14 @@ msgstr "ئىزدەش" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "جەدۋەل ئىزاھى" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -155,8 +156,8 @@ msgstr "سۆزلەم" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -167,7 +168,7 @@ msgstr "تۈرى" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -210,10 +211,10 @@ msgstr "ئىزاھلار" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "يوق" @@ -232,9 +233,9 @@ msgstr "يوق" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -335,7 +336,7 @@ msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -362,15 +363,15 @@ msgstr "PDF تىزىىسىنى كۆرسىتىش" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "جەدۋەل" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -428,19 +429,19 @@ msgstr "تۈرلەش" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "ئارتىش" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "كېمىيىش" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "كۆرسىتىش" @@ -461,8 +462,8 @@ msgid "Del" msgstr "ئۆچۈرۈش" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "ياكى" @@ -491,7 +492,7 @@ msgstr "جەدۋەللەرنى ئىشلىتىش" msgid "SQL query on database %s:" msgstr "SQL ئىجرا بولۋاتقان ساندان %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "تاپشۇرۇش" @@ -529,8 +530,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "كۆزەت" @@ -542,7 +543,7 @@ msgid "Delete the matches for the %s table?" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -616,7 +617,7 @@ msgstr "ئاكتىپ ئىزلاش" msgid "Tracking is not active." msgstr "ئىزلاش ئاكتىپ ئەمەس" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -644,22 +645,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s بولسا MySQL مۇلازىمىتېرنىڭ ساقلاش ئەندىزە موتۇرى" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "تاللانغىنى:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "ھەممىنى تاللاش" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "تاللاشنى بىكار قىلىش" @@ -667,10 +668,10 @@ msgstr "تاللاشنى بىكار قىلىش" msgid "Check tables having overhead" msgstr "مەزمۇن بارلارنى تاللاش" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -678,17 +679,17 @@ msgid "Export" msgstr "چىقىرىش" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "تازىلاش" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -738,9 +739,9 @@ msgstr "ئىزلانغان جەدۋەل" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "ساندان" @@ -759,15 +760,15 @@ msgstr "يېڭلاش" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "ھالەت" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "ئامال" @@ -820,7 +821,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -855,6 +856,90 @@ msgstr "بۇ %s ھۆججەتنى مۇلازىمىتېردا ساقلاش ھوق msgid "Dump has been saved to file %s." msgstr "%s ھۆججىتىدە ساقلاندى." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Routines" +msgid "Add a point" +msgstr "دائىملىق" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "قۇر ئالماشۇرۇش بەلگىسى" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add constraints" +msgid "Add a linestring" +msgstr "مەجبۇرى قوشۇش" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +msgid "Add an inner ring" +msgstr "" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +msgid "Add a polygon" +msgstr "" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add constraints" +msgid "Add geometry" +msgstr "مەجبۇرى قوشۇش" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -902,7 +987,7 @@ msgstr "خەتكۈچ ئۆچۈرۈلدى" msgid "Showing bookmark" msgstr "خەتكۈچنى كۆرسىتىش" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "قۇرۇلغان خەتكۈچ %s" @@ -929,7 +1014,7 @@ msgstr "" "won't be able to finish this import unless you increase php time limits." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -953,15 +1038,15 @@ msgstr "بىر چىكىپ تاللاڭ" msgid "Click to unselect" msgstr "بىر چىكىپ بىكار قىلىڭ" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "ساندان ئۆچۈرۈش بۇيرۇقى (\"DROP DATABASE\") چەكلەنگەن." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "راستىنلا ئجرا قىلىمسىز" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "ساندان تولۇق ئۆچۈرۈلدى!" @@ -1031,8 +1116,8 @@ msgstr "پارول بوشكەن!" msgid "The passwords aren't the same!" msgstr "كىرگۈزگەن پارولار ئوخشاش ئەمەس!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Add %s" msgid "Add user" @@ -1054,8 +1139,8 @@ msgid "Close" msgstr "" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1095,12 +1180,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1189,12 +1274,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KiB" @@ -1295,7 +1380,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "يوق" @@ -1707,8 +1792,8 @@ msgstr "SQL سورىقى" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "ئۆزگەرتتىش" @@ -1720,8 +1805,8 @@ msgstr "" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "" @@ -1735,7 +1820,7 @@ msgstr "" msgid "Show search criteria" msgstr "SQL سورىقى" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1779,106 +1864,114 @@ msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add/Delete columns" msgid "Add columns" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "سېرتقى ئۇلىنىشنى تاللاش" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "تاشقى ئاچقۇق قىممىتى" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "ئاساسىي قىممەت ياكى بىردىنبىر قىمەتنى تاللاڭ" # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "سۆزلەمنى كۆرسەتمەسلىك" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "بىر چىكىپ تاللاڭ" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "پارول ھاسىللاش" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "ھاسىللاش" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "پارولنى ئۆزگەرتىش" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "تېخىمۇ كۆپ" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1886,13 +1979,13 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "ېيڭى نەشىر" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" @@ -1900,18 +1993,18 @@ msgid "up to date" msgstr "%s جەدۋەل" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "تامام" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "ئالدىنقى ئاي" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1919,149 +2012,149 @@ msgid "Next" msgstr "كىيىنكى ئاي" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "بۈگۈن" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "قەھرىتان" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "ھۇت" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "نورۇز" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "ئۈمىد" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "باھار" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "6-ئاي" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "7-ئاي" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "8-ئاي" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "9-ئاي" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "10-ئاي" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "11-ئاي" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "12-ئاي" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "1-ئاي" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "2-ئاي" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "3-ئاي" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "4-ئاي" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "5-ئاي" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "6-ئاي" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "چىللە" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "تومۇز" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "مىزان" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "ئوغۇز" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "ئوغلاق" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "كۆنەك" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "يەكشەنبە" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "دۈشەنبە" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "چارشەنبە" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "پەيشەنبە" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "جۈمە" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "شەنبە" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2069,87 +2162,92 @@ msgid "Sun" msgstr "يەكشەنبە" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "دۈشەنبە" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "سەيشەنبە" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "چارشەنبە" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "پەيشەنبە" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "جۈمە" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "شەنبە" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "يەكشەنبە" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "دۈشەنبە" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "سەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "چارشەنبە" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "پەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "جۈمە" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "شەنبە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "ھەپتە" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "سائەت" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "مىنۇت" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "سېكنۇت" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "خەتنىڭ چوڭ-كىچىكلىكى" @@ -2261,13 +2359,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "ساندان" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "خاتالىق" @@ -2393,7 +2491,7 @@ msgstr "تېما %s تېپىلمىدى!" msgid "Theme path not found for theme %s!" msgstr "ماۋزۇ %s تېپىلمىدى." -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2565,7 +2663,7 @@ msgstr "" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "سانلىق مەلۇمات" @@ -2631,7 +2729,7 @@ msgstr "مۇلازىمىتېر %1$s ئۈنۈمسىز. تەڭشەك ھۆجقىت #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "مۇلازىمىتېر" @@ -2696,101 +2794,101 @@ msgstr "SQL سورىقى" msgid "MySQL said: " msgstr "MySQL جاۋابى:" -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "Failed to connect to SQL validator!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL ئىزاھى" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "SQL ئىزاھىىدىن ئاتلاش" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP كودى يوق" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP كودى قۇرۇش" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "يېڭلاش" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL دەلىللەشتىن ئاتلاش" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL دەلىللەش" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "Inline edit of this query" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "ئىچكى بىرلىشىش" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "ئاساسىي مەزمۇن" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "بايت" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PiB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "يەكشەنبە" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%يىل %ئاي %كۈن %سائەت:%مىنۇت" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s كۈن, %s سائەت, %s مىنىۇ ۋە %s سېكوند" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "دائىملىق" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2798,7 +2896,7 @@ msgctxt "First page" msgid "Begin" msgstr "باشلا" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2807,7 +2905,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "ئالدىنقىسى" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2816,7 +2914,7 @@ msgctxt "Next page" msgid "Next" msgstr "كىيىنكى ئاي" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2824,36 +2922,36 @@ msgctxt "Last page" msgid "End" msgstr "ئاخىرقىسى" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "ساندان "%s" .غا ئۆتۈش" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "بىر چىكىپ تاللاڭ" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "تۈزۈلىشى" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2861,38 +2959,38 @@ msgstr "تۈزۈلىشى" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "قىستۇرۇش" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "ئىشلەملەر" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3062,7 +3160,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "" @@ -3311,7 +3409,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "فورماتلاش" @@ -4865,7 +4963,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "پارول" @@ -5154,8 +5252,8 @@ msgid "Designer" msgstr "لايىھەلىگۈچ" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "ھۇقۇقى" @@ -5174,7 +5272,7 @@ msgstr "ھادىسە" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5235,7 +5333,7 @@ msgid "Create" msgstr "قۇرۇش" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "ھوقۇقسىز" @@ -5581,12 +5679,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "" @@ -5616,8 +5714,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5626,10 +5724,6 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5638,61 +5732,57 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "ئۇمۇمىي" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "بېسىپ چىقىرش كۈرۈلمىسى" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "جەدۋەل ئىزاھى" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "نەشىرنى قۇىماق" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "ئۇلىنىشنى تاپالمىدى" @@ -5871,7 +5961,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "ئېغىز" @@ -6198,7 +6288,7 @@ msgstr "MIMEشەكلىنى ئىشلىتەلەيسىز" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "ئاساسىي ماشىنا" @@ -6396,7 +6486,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6408,49 +6498,49 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "تۈزىلىشىنىلا" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6501,7 +6591,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6522,6 +6612,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "File %s does not contain any key id" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -6571,7 +6687,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "" @@ -6580,7 +6696,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "" @@ -6883,7 +6999,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "" @@ -6901,9 +7017,9 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "" @@ -6929,7 +7045,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "" @@ -7116,7 +7232,7 @@ msgid "Returns" msgstr "تۈرگە قايتىش" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "ۋاقىت" @@ -7269,8 +7385,8 @@ msgstr "" msgid "Routine parameters" msgstr "دائىملىق" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "" @@ -7588,8 +7704,8 @@ msgstr "" msgid "Current Server" msgstr "مۇلازىمىتېر" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7611,7 +7727,7 @@ msgstr "" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "" @@ -7629,7 +7745,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "" @@ -7652,11 +7768,11 @@ msgstr "" msgid "Columns" msgstr "" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7684,7 +7800,7 @@ msgstr "" msgid "Location of the text file" msgstr "يىزىق ھۆججەتنىڭ ئورنى" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" @@ -7851,23 +7967,29 @@ msgid "+ Add a value" msgstr "" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "ئىزدەش" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "قىستۇرۇش" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7993,8 +8115,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8022,8 +8144,8 @@ msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "" @@ -8148,7 +8270,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "" @@ -8175,7 +8297,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "" @@ -8528,96 +8650,96 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8644,52 +8766,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8697,43 +8819,43 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "" @@ -8753,7 +8875,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "" @@ -8802,7 +8924,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "" @@ -8810,34 +8932,34 @@ msgstr "" msgid "Revoke" msgstr "" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8846,93 +8968,93 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10094,112 +10216,112 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "مىنۇت" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Select All" msgid "Executed queries" msgstr "ھەممىنى تاللاش" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10491,34 +10613,34 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "" @@ -10527,60 +10649,60 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "كېيىن" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10663,49 +10785,45 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete columns" msgid "Label column" msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "كۈندىلىك ھۆججەت ئۇمۇمىي سانى" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "ھۆججەتنى باشقا ساقلاش" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Keyname" msgid "File name" @@ -10932,23 +11050,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "" diff --git a/po/uk.po b/po/uk.po index 3e83432126..db5d59a624 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-07-03 18:10+0200\n" "Last-Translator: \n" "Language-Team: ukrainian \n" @@ -15,13 +15,13 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Показати все" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -39,19 +39,20 @@ msgstr "" "вікно, або налаштування безпеки Вашого оглядача блокують між-віконні " "оновлення." -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Шукати" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -69,14 +70,14 @@ msgstr "Шукати" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -140,8 +141,8 @@ msgstr "Коментар до таблиці" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -156,8 +157,8 @@ msgstr "Стовпчик" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -168,7 +169,7 @@ msgstr "Тип" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -211,10 +212,10 @@ msgstr "Коментарі" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Ні" @@ -233,9 +234,9 @@ msgstr "Ні" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -336,7 +337,7 @@ msgstr "Перейти до скопійованої бази даних" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -361,15 +362,15 @@ msgstr "Редагувати або експортувати схему зв'я #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Таблиця" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -430,19 +431,19 @@ msgstr "Посортувати" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Зростаючий" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Спадаючий" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Показати" @@ -463,8 +464,8 @@ msgid "Del" msgstr "Видалити" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Або" @@ -493,7 +494,7 @@ msgstr "Використовувати таблиці" msgid "SQL query on database %s:" msgstr "SQL-запит до БД %s:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "Виконати запит" @@ -533,8 +534,8 @@ msgstr[0] "%s співпадіння у таблиці %s" msgstr[1] "%s співпадіння у таблиці %s" msgstr[2] "%s співпадінь у таблиці %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Переглянути" @@ -545,7 +546,7 @@ msgid "Delete the matches for the %s table?" msgstr "Видалити співпадіння для таблиці %s ?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -619,7 +620,7 @@ msgstr "Трекінг є активним." msgid "Tracking is not active." msgstr "Трекінг не активний." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -647,22 +648,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "З відміченими:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Відмітити все" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Зняти усі відмітки" @@ -670,10 +671,10 @@ msgstr "Зняти усі відмітки" msgid "Check tables having overhead" msgstr "" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -681,17 +682,17 @@ msgid "Export" msgstr "Експорт" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Версія для друку" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Очистити" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -741,9 +742,9 @@ msgstr "" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "БД" @@ -762,15 +763,15 @@ msgstr "Оновлено" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Статус" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Дія" @@ -823,7 +824,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -858,6 +859,92 @@ msgstr "Веб-сервер не має привілеїв для збереже msgid "Dump has been saved to file %s." msgstr "Dump збережено у файл %s." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add into comments" +msgid "Add a point" +msgstr "Додати коментар" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Рядки розділено" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add constraints" +msgid "Add a linestring" +msgstr "Додати constraints" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +msgid "Add an inner ring" +msgstr "" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add into comments" +msgid "Add a polygon" +msgstr "Додати коментар" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new User" +msgid "Add geometry" +msgstr "Додати нового користувача" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -898,7 +985,7 @@ msgstr "Закладку було видалено." msgid "Showing bookmark" msgstr "" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "" @@ -921,7 +1008,7 @@ msgid "" msgstr "" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -945,15 +1032,15 @@ msgstr "" msgid "Click to unselect" msgstr "" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Оператори \"DROP DATABASE\" заборонені." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Ви насправді хочете " -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1017,8 +1104,8 @@ msgstr "Порожній пароль!" msgid "The passwords aren't the same!" msgstr "Паролі не однакові!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "Додати користувача" @@ -1036,8 +1123,8 @@ msgid "Close" msgstr "Закрити" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1077,12 +1164,12 @@ msgid "Other" msgstr "Інше" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1171,12 +1258,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "кБ" @@ -1277,7 +1364,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Немає" @@ -1669,8 +1756,8 @@ msgstr "Показати блок запиту" msgid "No rows selected" msgstr "Рядків не вибрано" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Змінити" @@ -1684,8 +1771,8 @@ msgstr "Максимальний час виконання" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Зберегти" @@ -1697,7 +1784,7 @@ msgstr "Сховати критерії пошуку" msgid "Show search criteria" msgstr "Показати критерії пошуку" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1741,101 +1828,109 @@ msgstr "Додати/Прибрати колонки" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Ігнорувати" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add into comments" msgid "Add columns" msgstr "Додати коментар" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "Виберіть колонку для відображення" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 msgid "Go to link" msgstr "" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "Згенерувати пароль" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Згенерувати" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "Змінити пароль" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "Більше" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1843,29 +1938,29 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr "" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Перейти до бази даних" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "Готово" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Попередні" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1873,149 +1968,149 @@ msgid "Next" msgstr "Наступні" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "Сьогодні" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "Січень" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "Лютий" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "Березень" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "Квітень" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Травень" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "Червень" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "Липень" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "Серпень" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "Вересень" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "Жовтень" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "Листопад" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "Грудень" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Гру" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "Неділя" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "Понеділок" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "Вівторок" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "Середа" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "Четвер" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "П'ятниця" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "Субота" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2023,87 +2118,92 @@ msgid "Sun" msgstr "Нд" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "Нд" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "Хвилина" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "Секунда" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Розмір шрифту" @@ -2209,13 +2309,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Бази Даних" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Помилка" @@ -2342,7 +2442,7 @@ msgstr "" msgid "Theme path not found for theme %s!" msgstr "" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2510,7 +2610,7 @@ msgstr "Таблиць" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Дані" @@ -2576,7 +2676,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Сервер" @@ -2641,99 +2741,99 @@ msgstr "SQL-запит" msgid "MySQL said: " msgstr "Відповідь MySQL: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Тлумачити SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Не тлумачити SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "без PHP коду" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "Створити PHP код" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Оновити" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "Не перевіряти SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "Перевірити SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Б" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Нд" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d %Y р., %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s днів, %s годин, %s хвилин і %s секунд" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2741,7 +2841,7 @@ msgctxt "First page" msgid "Begin" msgstr "Початок" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2750,7 +2850,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Назад" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2759,7 +2859,7 @@ msgctxt "Next page" msgid "Next" msgstr "Наступні" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2767,34 +2867,34 @@ msgctxt "Last page" msgid "End" msgstr "Кінець" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "Перейти до бази даних "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Структура" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2802,37 +2902,37 @@ msgstr "Структура" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Вставити" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Операцій" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Виберіть з каталога веб-сервера для завантаження файлів %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Встановлений Вами каталог для завантаження файлів недоступний" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "Виконати" @@ -2998,7 +3098,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Перевстановити" @@ -3247,7 +3347,7 @@ msgid "Character set of the file" msgstr "" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Формат" @@ -4778,7 +4878,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Пароль" @@ -5055,8 +5155,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Привілеї" @@ -5075,7 +5175,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5134,7 +5234,7 @@ msgid "Create" msgstr "Створити" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Без привілеїв" @@ -5447,12 +5547,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "" @@ -5486,8 +5586,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Приховати" @@ -5496,10 +5596,6 @@ msgstr "Приховати" msgid "Browser transformation" msgstr "Перетворення МІМЕ-типу бровзером" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5508,61 +5604,57 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Рядок видалено" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Вбити" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "по запиту" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Показано записи " -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "всього" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Запит виконувався %01.4f сек" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Показати PDF схему" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create User" msgid "Create view" msgstr "Створити користувача" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Лінк не знайдено" @@ -5741,7 +5833,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "" @@ -6068,7 +6160,7 @@ msgstr "Доступні MIME-types" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Хост" @@ -6267,7 +6359,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6279,49 +6371,49 @@ msgstr "SQL result" msgid "Generated by" msgstr "Згенеровано" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Лише структуру" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6372,7 +6464,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6393,6 +6485,30 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +msgid "The imported file does not contain any data" +msgstr "" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6442,7 +6558,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Змін немає" @@ -6451,7 +6567,7 @@ msgid "Charset" msgstr "Набір символів" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Двійковий " @@ -6758,7 +6874,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Ім'я користувача" @@ -6776,9 +6892,9 @@ msgid "Variable" msgstr "Змінна" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Значення" @@ -6804,7 +6920,7 @@ msgstr "Довільний користувач" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Використовувати текстове поле" @@ -6995,7 +7111,7 @@ msgid "Returns" msgstr "Налаштування таблиці" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Час" @@ -7147,8 +7263,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Функція" @@ -7472,8 +7588,8 @@ msgstr "" msgid "Current Server" msgstr "Сервер" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7495,7 +7611,7 @@ msgstr "Кодування" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "" @@ -7513,7 +7629,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "" @@ -7538,11 +7654,11 @@ msgstr "" msgid "Columns" msgstr "Назви колонок" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Закладка на даний SQL-запит" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7570,7 +7686,7 @@ msgstr "Лише перегляд" msgid "Location of the text file" msgstr "вкажіть розташування текстового файлу" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "каталог веб-сервера для завантаження файлів (upload directory)" @@ -7772,23 +7888,29 @@ msgid "+ Add a value" msgstr "Додати нового користувача" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Шукати" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Вставити" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7949,8 +8071,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -7978,8 +8100,8 @@ msgstr "Загальні можливості" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Користувач" @@ -8112,7 +8234,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "БД відсутні" @@ -8141,7 +8263,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "" @@ -8502,97 +8624,97 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "Переглянути dump (схему) баз даних" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "Дозволити всі права за винятком GRANT." #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Дозволити змінювати структуру наявних таблиць." #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Дозволити створювати нові бази даних та таблиці." #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Дозволити створювати нові таблиці." #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Дозволити створювати тимчасові таблиці." #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Дозволити знищувати дані з таблиць." #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Дозволити знищувати бази даних та таблиці." -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Дозволити знищувати таблиці." #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Дозволити імпорт даних з файлів, та експорт у файли." -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" "Дозволити додавання користувачів та прав без перезавантаження таблиці прав." #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Дозволити створення та знищення індексів." #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Дозволити вставку та заміну даних." #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Дозволити блокування таблиць для біжучих потоків." @@ -8625,52 +8747,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "Неефективно для цієї версії MySQL." #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "Дозволити перезавантаження установок та очищення кешу сервера." #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "Надати користувачу право запитувати де є slaves / masters." #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Необхідно для реплікації slaves." #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Дозволити читання даних." #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Надати доступ до повного списку баз даних." #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Дозволити вимкнення сервера." #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8681,45 +8803,45 @@ msgstr "" "встановлення ґлобальних змінних чи припинення процесів інших користувачів." #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Дозволити зміну даних." -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Немає прав." -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Немає" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Права, які стосуються таблиці" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "Зауваження: привілеї MySQL задаються по-англійськи " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Адміністратор" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Глобальні права" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Права, які стосуються бази даних" @@ -8739,7 +8861,7 @@ msgstr "Вхідна інформація (Login)" msgid "Do not change the password" msgstr "Не змінювати пароль" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -8790,7 +8912,7 @@ msgstr "Відмічених користувачів успішно усуну msgid "The privileges were reloaded successfully." msgstr "Права успішно перезавантажено." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Редагування привілеїв" @@ -8798,34 +8920,34 @@ msgstr "Редагування привілеїв" msgid "Revoke" msgstr "Відмінити" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Довільний" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Огляд користувачів" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "Grant" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Усунути відмічених користувачів" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "Відмінити всі активні права користувачів та усунути їх після цього." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Усунути бази даних, які мають такі ж назви як імена користувачів." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8838,50 +8960,50 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Права, які стосуються колонок таблиці" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Додати права для цієї бази даних" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Додати права для цієї таблиці" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Змінити реєстраційні дані / Копіювати користувача" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Створити нового користувача з такими ж правами і ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... залишити старого." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... знищити старого з таблиці користувачів." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" " ... анулювати всі активні права старого користувача, знищивши його після " "того." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -8889,48 +9011,48 @@ msgstr "" " ... знищити старого з таблиці користувачів та перевантажити права після " "того." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Немає" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "Користувачі, котрі мають доступ до "%s"" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "глобальний" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "специфічний для бази даних" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "шаблон" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "The row has been deleted" msgid "User has been added." @@ -10109,114 +10231,114 @@ msgstr[0] "Хвилина" msgstr[1] "Хвилина" msgstr[2] "Хвилина" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy #| msgid "Execute" msgid "Executed queries" msgstr "Виконати" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Connections" msgid "Current connection" msgstr "З'єднань" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10508,36 +10630,36 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Перевірити SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Мітка" @@ -10546,62 +10668,62 @@ msgstr "Мітка" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Через велику довжину,
це поле не може бути відредаговано " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Двійкові дані - не редагуються " -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Вставити як новий рядок" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "і потім" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Повернутись" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Вставити новий запис" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10682,49 +10804,45 @@ msgstr "" msgid "View dump (schema) of table" msgstr "Переглянути дамп (схему) таблиці" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add into comments" msgid "Label column" msgstr "Додати коментар" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "Разом" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Зберегти як файл" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "User name" msgid "File name" @@ -10953,25 +11071,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Вибрати поля (щонайменше одне):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Додати умови пошуку (тіло для умови \"where\"):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "записів на сторінці" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Порядок перегляду:" diff --git a/po/ur.po b/po/ur.po index 887ec55258..93d568f7cc 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-04-23 08:37+0200\n" "Last-Translator: Mehbooob Khan \n" "Language-Team: Urdu \n" @@ -17,13 +17,13 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "تمام دکھائیں" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -40,19 +40,20 @@ msgstr "" "مطلوبہ براؤزر دریچہ تازہ نہیں کیا جاسکتا۔ ہوسکتا ہے کہ آپ نے اصل دریچہ بند " "کیا ہو یا آپ کے سلامتی ترتیبات پار دریچہ تازہ کاری میں رکاوٹ بن رہے ہوں۔" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "تلاش" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -70,14 +71,14 @@ msgstr "تلاش" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -142,8 +143,8 @@ msgstr "جدول تبصرے" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -160,8 +161,8 @@ msgstr "کالم" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -172,7 +173,7 @@ msgstr "قِسم" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -215,10 +216,10 @@ msgstr "تبصرہ" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "نہیں" @@ -237,9 +238,9 @@ msgstr "نہیں" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -340,7 +341,7 @@ msgstr "نقل شدہ کوائفیہ پر جائیں" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -365,15 +366,15 @@ msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "جدول" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -434,19 +435,19 @@ msgstr "چھانٹیں" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "صعودی" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "نزولی" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "دکھائیں" @@ -467,8 +468,8 @@ msgid "Del" msgstr "Del" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "یا" @@ -497,7 +498,7 @@ msgstr "جداول استعمال کریں" msgid "SQL query on database %s:" msgstr "کوائفیہ کے لیے %s SQL طلب" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "طلب بھیجیں" @@ -536,8 +537,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "%sجدول کے ساتھ مشابہ%s" msgstr[1] "%sجدول کے ساتھ مشابہات%s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "براؤز" @@ -548,7 +549,7 @@ msgid "Delete the matches for the %s table?" msgstr "اس جدول کے مشابہات حذف %s کریں؟" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -621,7 +622,7 @@ msgstr "کھوج فعال ہے۔" msgid "Tracking is not active." msgstr "کھوج غیر فعال ہے۔" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -650,22 +651,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%sاس MySQL سرور میں طے شدہ ذخیرہ انجن ہے۔" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "مع منتخب:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "تمام پڑتال کریں" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "تمام غیر پڑتال کریں" @@ -673,10 +674,10 @@ msgstr "تمام غیر پڑتال کریں" msgid "Check tables having overhead" msgstr "اوور ہیڈ جداول کی پڑتال کریں" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -684,17 +685,17 @@ msgid "Export" msgstr "برآمد" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "چھپائی منظر" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "خالی" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -746,9 +747,9 @@ msgstr "کھوج شدہ جداول" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "کوائفیہ" @@ -767,15 +768,15 @@ msgstr "تازہ کی گئی" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "حالت" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "عمل" @@ -828,7 +829,7 @@ msgstr "ہر قدر جدا قطعہ میں داخل کریں۔" msgid "+ Restart insertion and add a new value" msgstr "+ داخلہ پھر شروع اور نئی قدر اضافہ کریں" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "ماحصل" @@ -863,6 +864,93 @@ msgstr "اس مسل %s کو محفوظ کرنے کے لیے ویب سرور کے msgid "Dump has been saved to file %s." msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔" +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "کالم کی قدریں\"%s\"" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add a point" +msgstr "فیلڈ کالمز شامل یا ختم کریں" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "سطریں کے آخر میں" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add constraints" +msgid "Add a linestring" +msgstr "پابندیاں لگائیں" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +msgid "Add an inner ring" +msgstr "" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add a polygon" +msgstr "فیلڈ کالمز شامل یا ختم کریں" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a New User" +msgid "Add geometry" +msgstr "نیا صارف اضافہ کریں" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -910,7 +998,7 @@ msgstr "نشانی حذف ہوچکا ہے۔" msgid "Showing bookmark" msgstr "نشانی دکھاتے ہوئے" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "نشانی %s بنایا گیا" @@ -937,7 +1025,7 @@ msgstr "" "کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -961,15 +1049,15 @@ msgstr "انتخاب کے لیے کلک کریں" msgid "Click to unselect" msgstr "غیر منتخب کے لیے کلک کریں" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔" -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "کیا آپ واقعی چاہتے ہیں" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!" @@ -1038,8 +1126,8 @@ msgstr "پاس ورڈ خالی ہے" msgid "The passwords aren't the same!" msgstr "پاس ورڈ ایک جیسے نہیں ہیں" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Add %s" msgid "Add user" @@ -1059,8 +1147,8 @@ msgid "Close" msgstr "بند کریں" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1100,12 +1188,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1196,12 +1284,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "میگا بائٹ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "کلو بائٹ" @@ -1300,7 +1388,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "" @@ -1697,8 +1785,8 @@ msgstr "طلب خانہ دکھائیں" msgid "No rows selected" msgstr "" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "" @@ -1712,8 +1800,8 @@ msgstr "چلنے کی حد اوقات" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "" @@ -1725,7 +1813,7 @@ msgstr "تلاش کسوٹی چھپائیں" msgid "Show search criteria" msgstr "تلاش کسوٹی دکھائیں" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1769,105 +1857,113 @@ msgstr "کالم اضافہ/حذف کریں" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "نظر انداز کریں" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Add columns" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "محولہ کلید منتخب کریں" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "فارن کلید منتخب کریں" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "ایک بنیادی یا منفرد کلید منتخب کریں" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "کالم دکھانے کے لیے انتخاب کریں" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "کالم کے لیے ایک اختیار اضافہ کریں" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "انتخاب کے لیے کلک کریں" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Logo link URL" msgid "Go to link" msgstr "علامت ربط URL" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "پاس ورڈ بنائیں" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "بنائیں" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "پاس ورڈ تبدیل کریں" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "مزید" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1877,29 +1973,29 @@ msgstr "" "%s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ", حالیہ مستحکم نسخہ:" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "کوائفیہ جائیں" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "ہوچکا" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "پچھلا" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1907,149 +2003,149 @@ msgid "Next" msgstr "اگلا" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "آج" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "جنوری" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "فروری" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "مارچ" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "اپریل" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "مئی" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "جون" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "جولائی" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "اگست" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "ستمبر" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "اکتوبر" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "نومبر" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "دسمبر" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "جنوری" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "فروری" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "مارچ" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "اپریل" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "مئی" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "جون" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "جولائی" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "اگست" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "ستمبر" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "اکتوبر" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "نومبر" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "دسمبر" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "اتوار" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "پیر" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "منگل" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "بدھ" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "جمعرات" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "جمعہ" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "ہفتہ" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2057,87 +2153,92 @@ msgid "Sun" msgstr "اتوار" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "پیر" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "منگل" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "بدھ" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "جمعرات" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "جمعہ" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "ہفتہ" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "اتوار" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "پیر" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "منگل" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "بدھ" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "جمعرات" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "جمعہ" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "ہفتہ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "ہفتہ وار" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "گھنٹہ" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "منٹ" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "سیکنڈ" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "فانٹ سائز" @@ -2248,13 +2349,13 @@ msgstr "" #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "کوائفیے" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "نقص" @@ -2383,7 +2484,7 @@ msgstr "خیالیہ %s نیہں ملا!" msgid "Theme path not found for theme %s!" msgstr "خیالیہ راہ اس خیالیہ %s کے لیے نہیں ملا!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2554,7 +2655,7 @@ msgstr "جداول" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "کوائف" @@ -2621,7 +2722,7 @@ msgstr "سرور کے لیے ہوسٹ نام غلط ہے %1$s. اپنے تشکی #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "سرور" @@ -2686,99 +2787,99 @@ msgstr "SQL طلب" msgid "MySQL said: " msgstr "MySQL نے کہا:" -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "SQL جواز دہندہ سے جڑت ناکام ہوا!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL کی تفصیل بتائیں" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "SQL وضاحت کو چھوڑیں" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP کوڈ کے بغیر" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP کوڈ بنائیں" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "تازہ کریں" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL توثیق چھوڑیں" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL کی توثیق کریں" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "اس طلب کی ان لائن تدوین" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "ان لائن" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "تفصیلات" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "بائٹ" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "گیگا بائٹ" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "ٹیرا بائٹ" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "پیٹا بائٹ" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "ایگزا بائٹ" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "اتوار" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%B %d, %Y پر %I:%M %p" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s دن, %s گھنٹے, %s منٹ اور%s سیکنڈ" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2786,7 +2887,7 @@ msgctxt "First page" msgid "Begin" msgstr "شروع" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2795,7 +2896,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "پچھلا" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2804,7 +2905,7 @@ msgctxt "Next page" msgid "Next" msgstr "اگلا" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2812,36 +2913,36 @@ msgctxt "Last page" msgid "End" msgstr "اختتام" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "کوائفیہ میں جائیں "%s"." -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھیں %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "انتخاب کے لیے کلک کریں" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "ساخت" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2849,37 +2950,37 @@ msgstr "ساخت" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "داخل کریں" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "عملیات" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "اپنے کمپیوٹر کو براؤز کریں:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3045,7 +3146,7 @@ msgstr "صارفین کو اس قدر کے مخصوص کرنے کی اجازت #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "دوبارہ سیٹ کریں" @@ -3310,7 +3411,7 @@ msgid "Character set of the file" msgstr "مسل کے لیے حروف کی سیٹ" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "وضع" @@ -4926,7 +5027,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "" @@ -5207,8 +5308,8 @@ msgid "Designer" msgstr "" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "" @@ -5227,7 +5328,7 @@ msgstr "" msgid "Triggers" msgstr "" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5286,7 +5387,7 @@ msgid "Create" msgstr "" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "" @@ -5607,12 +5708,12 @@ msgstr "" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "" @@ -5640,8 +5741,8 @@ msgstr "" msgid "Show BLOB contents" msgstr "" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "" @@ -5650,10 +5751,6 @@ msgstr "" msgid "Browser transformation" msgstr "" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5662,61 +5759,57 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "ٹیبل کمنٹس" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Created" msgid "Create view" msgstr "تخلیق کیا گیا" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "" @@ -5895,7 +5988,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "" @@ -6206,7 +6299,7 @@ msgstr "" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "" @@ -6402,7 +6495,7 @@ msgstr "" msgid "Open new phpMyAdmin window" msgstr "" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6416,50 +6509,50 @@ msgstr "" msgid "Generated by" msgstr "" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "کوائف نہیں ملا برائے %s" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "صرف ساخت" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "" @@ -6510,7 +6603,7 @@ msgid "DocSQL" msgstr "" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "" @@ -6531,6 +6624,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "مسل %s کلید آئی ڈی کا حامل نہیں ہے" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "" @@ -6578,7 +6697,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "" @@ -6587,7 +6706,7 @@ msgid "Charset" msgstr "" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "" @@ -6892,7 +7011,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "" @@ -6910,9 +7029,9 @@ msgid "Variable" msgstr "" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "" @@ -6938,7 +7057,7 @@ msgstr "" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "" @@ -7128,7 +7247,7 @@ msgid "Returns" msgstr "عمل" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "وقت" @@ -7280,8 +7399,8 @@ msgstr "" msgid "Routine parameters" msgstr "" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "" @@ -7599,8 +7718,8 @@ msgstr "" msgid "Current Server" msgstr "" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "" @@ -7622,7 +7741,7 @@ msgstr "" msgid "Engines" msgstr "" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "" @@ -7640,7 +7759,7 @@ msgstr "" msgid "Difference" msgstr "" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "" @@ -7665,11 +7784,11 @@ msgstr "" msgid "Columns" msgstr "آراء-رائے" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "" @@ -7697,7 +7816,7 @@ msgstr "" msgid "Location of the text file" msgstr "" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "" @@ -7866,23 +7985,29 @@ msgid "+ Add a value" msgstr "" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "تلاش" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "داخل کریں" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8006,8 +8131,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "" @@ -8035,8 +8160,8 @@ msgstr "جنرل ریلیشن فیچرز" msgid "Protocol version" msgstr "" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "" @@ -8161,7 +8286,7 @@ msgid "" "issues." msgstr "" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "" @@ -8188,7 +8313,7 @@ msgstr "" msgid "Save position" msgstr "" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "" @@ -8539,96 +8664,96 @@ msgstr "" msgid "View dump (schema) of databases" msgstr "" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "" @@ -8655,52 +8780,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8708,43 +8833,43 @@ msgid "" msgstr "" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "" -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "" @@ -8764,7 +8889,7 @@ msgstr "" msgid "Do not change the password" msgstr "" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "" @@ -8813,7 +8938,7 @@ msgstr "" msgid "The privileges were reloaded successfully." msgstr "" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "" @@ -8821,34 +8946,34 @@ msgstr "" msgid "Revoke" msgstr "" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8857,93 +8982,93 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "" -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10120,111 +10245,111 @@ msgid_plural "%d minutes" msgstr[0] "منٹ" msgstr[1] "منٹ" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL طلب" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10516,34 +10641,34 @@ msgstr "" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "" @@ -10552,60 +10677,60 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "اور پھر" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "" @@ -10684,51 +10809,47 @@ msgstr "" msgid "View dump (schema) of table" msgstr "" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "سرور انتخاب دکھائیں" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "Label column" msgstr "فیلڈ کالمز شامل یا ختم کریں" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total" msgid "Spatial column" msgstr "میزان" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "بطور مسل محفوظ کریں" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Page number:" msgid "File name" @@ -10955,23 +11076,23 @@ msgstr "" msgid "Foreign key constraint" msgstr "" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "" diff --git a/po/uz.po b/po/uz.po index 892b267e4b..a62362608f 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-07-22 02:31+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_cyrillic \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Барчасини кўрсатиш" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "Браузернинг нишондаги ойнасини янгилаб бўлмади. Эҳтимол, бош ойна ёпилган " "ёки браузер хавфсизлик юзасидан ойналараро янгилашни блокировка қилмоқда" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Қидириш" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "Қидириш" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -138,8 +139,8 @@ msgstr "Жадвал изоҳи" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -156,8 +157,8 @@ msgstr "Майдон номлари" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -168,7 +169,7 @@ msgstr "Тур" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -211,10 +212,10 @@ msgstr "Изоҳлар" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Йўқ" @@ -233,9 +234,9 @@ msgstr "Йўқ" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -340,7 +341,7 @@ msgstr "Нусха олинган маълумотлар базасига ўти #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -370,15 +371,15 @@ msgstr "Алоқалар схемаси" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Жадвал " #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -439,19 +440,19 @@ msgstr "Сортировка қилиш" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "Ўсиш тартибида" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Камайиш тартибида" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Кўрсатиш" @@ -472,8 +473,8 @@ msgid "Del" msgstr "Ўчириш" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Ёки" @@ -506,7 +507,7 @@ msgstr "Жадвалларни ишлатиш" msgid "SQL query on database %s:" msgstr "\"%s\" маълумотлар базасига SQL-сўров: " -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "сўровни бажариш" @@ -546,8 +547,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Кўриб чиқиш" @@ -559,7 +560,7 @@ msgid "Delete the matches for the %s table?" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -637,7 +638,7 @@ msgstr "Кузатиш фаол." msgid "Tracking is not active." msgstr "Кузатиш фаол эмас." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -667,22 +668,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Белгиланганларни: " -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Барчасини белгилаш" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Белгилашни бекор қилиш" @@ -690,10 +691,10 @@ msgstr "Белгилашни бекор қилиш" msgid "Check tables having overhead" msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -701,17 +702,17 @@ msgid "Export" msgstr "Экспорт" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Чоп этиш версияси" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Тозалаш" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -765,9 +766,9 @@ msgstr "Кузатилган жадваллар" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Маълумотлар базаси" @@ -786,15 +787,15 @@ msgstr "Янгиланди" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Ҳолат" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Амал" @@ -847,7 +848,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -882,6 +883,94 @@ msgstr "\"%s\" файлини веб-серверга сақлаш учун ҳу msgid "Dump has been saved to file %s." msgstr "Дамп \"%s\" файлида сақланди." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add a point" +msgstr "Индекс(лар)ни сақлаш" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Қаторлар бўлувчиси" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Янги фойдаланувчи қўшиш" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Янги фойдаланувчи қўшиш" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column(s)" +msgid "Add a polygon" +msgstr "Устун(лар) қўшиш" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "Янги фойдаланувчи қўшиш" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -933,7 +1022,7 @@ msgstr "Хатчўп ўчирилди." msgid "Showing bookmark" msgstr "Хатчўпларни кўрсатиш" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" хатчўпи тузилди" @@ -962,7 +1051,7 @@ msgstr "" "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -987,15 +1076,15 @@ msgstr "Танлаш учун сичқонча тугмасини босинг" msgid "Click to unselect" msgstr "Танлашни бекор қилиш учун сичқонча тугмасини босинг" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!" @@ -1067,8 +1156,8 @@ msgstr "Парол белгиланмаган!" msgid "The passwords aren't the same!" msgstr "Киритилган пароллар бир хил эмас!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1092,8 +1181,8 @@ msgid "Close" msgstr "Ёпиш" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1133,12 +1222,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1231,12 +1320,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "МБ" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "КБ" @@ -1343,7 +1432,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Йўқ" @@ -1769,8 +1858,8 @@ msgstr "SQL сўровлари қутиси" msgid "No rows selected" msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак. " -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "Ўзгартириш" @@ -1784,8 +1873,8 @@ msgstr "Максимум бажарилиш вақти" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Сақлаш" @@ -1801,7 +1890,7 @@ msgstr "SQL сўровлари қутиси" msgid "Show search criteria" msgstr "SQL сўровлари қутиси" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1845,113 +1934,121 @@ msgstr "Устун қўшиш/ўчириш" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "Эътибор бермаслик" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column(s)" msgid "Add columns" msgstr "Устун(лар) қўшиш" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Боғлиқ калитни танланг" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Ташқи калитни танланг" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "Бирламчи (PRIMARY) ёки уникал (UNIQUE) индекс бўлган майдонни танланг!" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Кўрсатиладиган майдонни танлаш" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Танлаш учун сичқонча тугмасини босинг" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Ушбу кўринишга ўтиш" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Парол ўрнатиш" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Генерация қилиш" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Паролни ўзгартириш" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Душ" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1962,33 +2059,33 @@ msgstr "" "чиқарилган." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Охирги версияни текшириш" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ушбу базага ўтиш" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Садақа" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Орқага" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1996,96 +2093,96 @@ msgid "Next" msgstr "Кейинги" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Жами" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Иккилик" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Мар" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Апр" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "Май" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Июн" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Июл" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Авг" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Окт" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2093,78 +2190,78 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Дек" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Якш" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Душ" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Сеш" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Жум" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2172,107 +2269,112 @@ msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Шан" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Якш" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Душ" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Сеш" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Чор" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пай" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Жум" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Шан" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Вики" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ишлатилмоқда" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундига" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Шрифт ўлчами" @@ -2384,13 +2486,13 @@ msgstr "%1$s ва %2$s индекслари бир хил, улардан бир #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Маълумотлар базалари" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Хатолик" @@ -2526,7 +2628,7 @@ msgstr "\"%s\" мавзуси топилмади!" msgid "Theme path not found for theme %s!" msgstr "\"%s\" мавзуси файлларига йўл топилмади!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2703,7 +2805,7 @@ msgstr "Жадваллар" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Маълумотлар" @@ -2781,7 +2883,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Сервер" @@ -2847,105 +2949,105 @@ msgstr "SQL сўрови" msgid "MySQL said: " msgstr "MySQL жавоби: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL-серверга уланиб бўлмади" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "Сўров таҳлили" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Таҳлил керак эмас" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP-код олиб ташлаш" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP-код" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Янгилаш" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL синтаксиси текширувини олиб ташлаш" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL тўғрилигини текшириш" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Жадвал турлари" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Профиллаштириш" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Байт" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "ГБ" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "ТБ" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "ПБ" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "ЭБ" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Якш" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y й., %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" кун, \"%s\" соат, \"%s\" минут ва \"%s\" секунд" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Муолажалар" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2953,7 +3055,7 @@ msgctxt "First page" msgid "Begin" msgstr "Боши" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2962,7 +3064,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Орқага" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2971,7 +3073,7 @@ msgctxt "Next page" msgid "Next" msgstr "Кейинги" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2979,38 +3081,38 @@ msgctxt "Last page" msgid "End" msgstr "Охири" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "\"%s\" маълумотлар базасига ўтиш" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" " \"%s\" параметрининг иши маълум хатоликка олиб келиши мумкин, батафсил " "маълумот учун қаранг \"%s\"" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Танлаш учун сичқонча тугмасини босинг" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Тузилиши" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -3018,38 +3120,38 @@ msgstr "Тузилиши" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Қўйиш" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Операциялар" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Юклаш каталогидан" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Кўрсатилган каталокка юклаб бўлмади" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3228,7 +3330,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Тозалаш" @@ -3519,7 +3621,7 @@ msgid "Character set of the file" msgstr "Файл кодировкаси" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Формат" @@ -5299,7 +5401,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Парол" @@ -5614,8 +5716,8 @@ msgid "Designer" msgstr "Дизайнер" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Привилегиялар" @@ -5634,7 +5736,7 @@ msgstr "Ҳодисалар" msgid "Triggers" msgstr "Триггерлар" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5699,7 +5801,7 @@ msgid "Create" msgstr "Тузиш" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Привилегиялар йўқ" @@ -6083,12 +6185,12 @@ msgstr "Индекс бўйича сортировка қилиш" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Параметрлар" @@ -6122,8 +6224,8 @@ msgstr "Иккилик маълумотларни кўрсатиш" msgid "Show BLOB contents" msgstr "BLOB туридаги маълумотларни кўрсатиш" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Яшириш" @@ -6132,10 +6234,6 @@ msgstr "Яшириш" msgid "Browser transformation" msgstr "Ўгириш" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -6144,61 +6242,57 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Ёзув ўчирилди" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Тугатиш" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "сўров бўйича" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Ёзувларни кўрсатиш" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "жами" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "Сўров %01.4f секунд вақт олди" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Чоп этиш версияси (тўла)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схемани кўрсатиш" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Версиясини тузиш" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Алоқа топилмади" @@ -6406,7 +6500,7 @@ msgstr "" "нисбати. Қиймат 1 ва 99 орасидабўлиши шарт. Асл қиймати – 50." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Порт" @@ -6767,7 +6861,7 @@ msgstr "Мавжуд MIME турлари" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Хост" @@ -6970,7 +7064,7 @@ msgstr "Таркибини экспорт қилиш" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin дастурини янги ойнада очиш" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -6982,56 +7076,56 @@ msgstr "SQL сўрови натижаси" msgid "Generated by" msgstr "Тузилган" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "" "Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни " "бажаришингиз мумкин:" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 #, 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:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Ушбу базага ўтиш" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" майдонида маълумот йўқ" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Ушбу жадвалга ўтиш" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Фақат тузилиши" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Ушбу кўринишга ўтиш" @@ -7085,7 +7179,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Жадвал номи" @@ -7111,6 +7205,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Пул бирликларини импорт қилиш (масалан, $5.00 ни 5.00 га)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "\"%s\" файлида калит идентификатори мавжуд эмас" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -7168,7 +7288,7 @@ msgstr "" msgid "Add prefix" msgstr "Индекс(лар)ни сақлаш" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "Ўзгариш йўқ" @@ -7177,7 +7297,7 @@ msgid "Charset" msgstr "Кодировка" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Иккилик" @@ -7494,7 +7614,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Фойдаланувчи номи" @@ -7512,9 +7632,9 @@ msgid "Variable" msgstr "Ўзгарувчи" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Қиймати" @@ -7542,7 +7662,7 @@ msgstr "Ҳар қайси фойдаланувчи" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Матнмайдонини ишлатиш" @@ -7740,7 +7860,7 @@ msgid "Returns" msgstr "Қайтариладиган тип" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Вақт" @@ -7898,8 +8018,8 @@ msgstr "" msgid "Routine parameters" msgstr "Муолажалар" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Функция" @@ -8236,8 +8356,8 @@ msgstr "Номаълум тил: %1$s." msgid "Current Server" msgstr "Жорий сервер" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Синхронизация қилиш" @@ -8259,7 +8379,7 @@ msgstr "Кодировкалар" msgid "Engines" msgstr "Жадвал турлари" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Манба база" @@ -8277,7 +8397,7 @@ msgstr "Масофадаги сервер" msgid "Difference" msgstr "Фарқ" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Нишон база" @@ -8302,11 +8422,11 @@ msgstr "Тозалаш" msgid "Columns" msgstr "Майдон номлари" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Барча фойдаланувчиларга рухсат бериш" @@ -8334,7 +8454,7 @@ msgstr "Фақат кўриш" msgid "Location of the text file" msgstr "Файлни танлаш" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "Юклаш каталогидан" @@ -8541,23 +8661,29 @@ msgid "+ Add a value" msgstr "Янги фойдаланувчи қўшиш" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Ташқи қийматларни кўриб чиқиш" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Оператор" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Қидириш" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Қўйиш" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8766,8 +8892,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "ZIP-архив ичида файл мавжуд эмас!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Ушбу ZIP архивда хатолик:" @@ -8797,8 +8923,8 @@ msgstr "танловлар" msgid "Protocol version" msgstr "Протокол версияси" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Фойдаланувчи" @@ -8966,7 +9092,7 @@ msgstr "" "Сервер \"Suhosin\" ҳимоя тизимадан фойдаланмоқда. Юзага келган муаммолар " "ечими учун \"%s\"документация\"%s\" га қаранг." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Маълумотлар базаси мавжуд эмас" @@ -8995,7 +9121,7 @@ msgstr "Чап менюни кўрсатиш/яшириш" msgid "Save position" msgstr "Жадваллар жойлашишини сақлаш" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Жадвал тузиш" @@ -9373,80 +9499,80 @@ msgstr "Жадвал турлари" msgid "View dump (schema) of databases" msgstr "Маълумотлар базалари дампини (схемасини) намойиш этиш" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "GRANT дан ташқари барча привилегияларни ўз ичига олади" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Мавжуд жадвалларнинг тузилишини ўзгартиришга рухсат беради" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Сақланадиган муолажаларни ўзгартириш ва ўчиришга рухсат беради" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Янги маълумотлар базалари ва жадваллар тузишга рухсат беради" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Сақланадиган муолажалар тузишга рухсат беради" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Янги жадваллар тузишга рухсат беради" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Вақтинчалик жадваллар тузишга рухсат беради" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "Фойдаланувчилар ҳисобини қўшиш, ўчириш ва ўзгартиришга рухсат беради" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Янги намойишлар тузиш(CREATE VIEW)га рухсат беради" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Маълумотларни ўчиришга рухсат беради" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Маълумотлар базаларини ва жадвалларни ўчиришга рухсат беради" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Жадвалларни ўчиришга рухъсат беради" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Кечиктирилган ҳодисаларни созлашга рухсат беради" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Сақланадиган муолажаларни бажаришга рухсат беради" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Маълумотларни файлдан импорт ва файлга экспорт қилишга рухсат беради" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -9454,17 +9580,17 @@ msgstr "" "привилегиялар қўшишга рухсат беради" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Индекслар қўшиш ва уларни ўчиришга рухсат беради" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Маълумот қўйиш ва ўзгартиришга рухсат беради" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Жорий оқим учун жадвални блокировку қилишга рухсат беради" @@ -9496,56 +9622,56 @@ msgstr "" "уланишлар сони" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Барча фойдаланувчиларнинг жараёнларини кўришга рухсат беради" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "MySQL-сервернинг ушбу версияда бундай хусусият мавжуд эмас!" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Сервер созланишларини қайта юклашга ва унинг кешларини тозалашга рухсат " "беради" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Бош ва тобе серверларнинг жойлашиши ҳақидаги маълумотни талаб қилишга рухсат " "беради" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "Репликация (захира нусха кўчириш) вақтида тобе серверлар учун керак" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Маълумотларни чақиришга рухсат беради" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Маълумотлар базаларининг тўлиқ рўйхатига рухсат беради" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Намойиш тузадиган сўров(SHOW CREATE VIEW)ни бажаришга рухсат беради" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Сервер ишини якунлашга рухсат беради" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9556,47 +9682,47 @@ msgstr "" "ўзгарувчилар ўрнатиш ёки бошқа фойдаланувчи жараёнини ўчириш)" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" "Триггерлар (маълум шартлар бажарилганда автоматик ишга тушадиган жараёнлар) " "тузиш ва уларни ўчиришга рухсат беради" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Маълумотларни ўзгартиришга рухсат беради" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Привилегиялар йўқ" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Йўқ" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Жадвал даражасижаги привилегиялар" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "ИЗОҲ: MySQL привилегиялари турлари инглиз тилида кўрсатилади." -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Администрация" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Глобал привилегиялар" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Маълумотлар базаси привилегиялари" @@ -9618,7 +9744,7 @@ msgstr "Фойдаланувчи ҳисоби ҳақида маълумот" msgid "Do not change the password" msgstr "Паролни ўзгартирмаслик" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9669,7 +9795,7 @@ msgstr "Белгиланган фойдаланувчилар муваффақи msgid "The privileges were reloaded successfully." msgstr "Привилегиялар муваффақиятли қайта юкланди." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Привилегияларни таҳрирлаш" @@ -9677,36 +9803,36 @@ msgstr "Привилегияларни таҳрирлаш" msgid "Revoke" msgstr "Бекор қилиш" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Ҳар қайси" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Фойдаланувчиларнинг барча фаол привилегияларини бекор қилиш, сўнг уларни " "ўчириш." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9719,102 +9845,102 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Майдон привилегиялари" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Қуйидаги маълумотлар омборига привилегия қўшиш" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Маълумотлар базалари номларида пастки чизиқ (_) ва фоиз (%) белгилари " "ишлатилганда улар олдига тескари эгри чизиқ (\\) қўйиш керак." -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Қуйидаги жадвалга привилегия қўшиш" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Фойдаланувчининг логинини ўзгартириш / Фойдаланувчидан нусха олиш" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Худди шундай привилегияли янги фойдаланувчи киритиш..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "ва эскисини сақлаш." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "ва фойдаланувчилар жадвалидан эскисини ўчириш." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr ", эскисининг барча фаол привилегияларини бекор қилиб ўчириш." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "" ", фойдаланувчилар жадвалидан эскисини ўчириб привилегияларни қайта юклаш." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Фойдаланувчи учун маълумотлар базаси" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Йўқ" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" "Фойдаланувчи номи билан аталган маълумотлар базаси тузиш ва унга тўлиқ " "привилегияларни бериш." -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "(фойдаланувчи\\_%) шаблонига тўғри келадиган барча маълумотлар базаларига " "тўлиқ привилегияларни бериш." -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" маълумотлар базасига барча привилегияларни бериш;" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"га рухсати бўлган фойдаланувчилар" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "Глобал" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "Маълумотлар базаси даражасида" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "Гуруҳлаш белгиси" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -11169,114 +11295,114 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "ишлатилмоқда" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Манбага уланиб бўлмади" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Нишонга уланиб бўлмади" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' номли база мавжуд эмас." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Тузилишни синхронизация қилиш" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Маълумотлар синхронизацияси" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "Мавжуд эмас" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Тузилишдаги фарқ" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Маълумотлар фарқи" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Устун(лар) қўшиш" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Устун(лар)ни олиб ташлаш" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Устун(лар)ни ўзгартириш" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Индекс(лар)ни олиб ташлаш" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Индекс(лар)ни сақлаш" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Қатор(лар)ни янгилаш" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Қатор(лар) қўшиш" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Нишон жадвалдаги барча олдинги қаторларни ўчирмоқчимисиз?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Киритилган ўзгаришларни сақлаш" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Базаларни синхронизация қилиш" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Танланган жадваллар манба жадваллар билан синхронизация қилинди." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Нишон база манба база билан синхронизация қилинди" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL сўровлари" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Нохавфсиз уланиш" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Конфигурацион файл" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Сокет" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11679,36 +11805,36 @@ msgstr "Калит жуда қисқа, у камида 8 та белгидан msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Калит ҳарфлар, рақамлар [em]ва[/em] махсус белгиларни олиши керак" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "PHP-код сифатида кўрсатиш" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL тўғрилигини текшириш" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Хатчўп белгиси" @@ -11717,63 +11843,63 @@ msgstr "Хатчўп белгиси" msgid "Table %1$s has been altered successfully" msgstr "%1$s жадвали муваффақиятли ўзгартирилди" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Маълумотлар кўплиги сабали
ўзгартириш қийишлашиши мумкин" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "BLOB омбори мурожаатларини ўчириш" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Иккилик маълумот - таҳрирлаш мумкин эмас" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "BLOB омборига юклаш" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Ёзув киритиш" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Киритилган сўровни кўрсатиш" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "ва сўнг" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Олдинги саҳифага ўтиш" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Янги ёзув киритиш" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Ушбу саҳифага қайтиш" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Кейинги қаторни таҳрирлаш" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11863,53 +11989,49 @@ msgstr "%1$s жадвали тузилди." msgid "View dump (schema) of table" msgstr "Жадвал дампини (схемасини) намойиш этиш" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Сервер танловини кўрсатиш" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "CHAR майдонидаги устунлар сони" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- йўқ -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Журнал файллари сони" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Файл каби сақлаш" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12146,25 +12268,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "Ташқи калит чегаралари" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Майдонни танланг (камида битта):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Қидириш шартини кўшиш (яъни \"where\" жумласи):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Саҳифадаги қаторлар сони " -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Сортировка:" @@ -13814,9 +13936,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Версиясини тузиш" -#~ msgid "Add a new User" -#~ msgstr "Янги фойдаланувчи қўшиш" - #~ msgid "Show table row links on left side" #~ msgstr "Чап рамкада логотипни кўрсатиш" diff --git a/po/uz@latin.po b/po/uz@latin.po index 5530eb0604..fb660686d2 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2010-07-22 02:30+0200\n" "Last-Translator: Marc Delisle \n" "Language-Team: uzbek_latin \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.1\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "Barchasini ko‘rsatish" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -38,19 +38,20 @@ msgstr "" "yopilgan yoki brauzer xavfsizlik yuzasidan oynalararo yangilashni blokirovka " "qilmoqda" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "Qidirish" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -68,14 +69,14 @@ msgstr "Qidirish" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -139,8 +140,8 @@ msgstr "Jadval izohi" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 #, fuzzy @@ -157,8 +158,8 @@ msgstr "Maydon nomlari" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -169,7 +170,7 @@ msgstr "Tur" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -212,10 +213,10 @@ msgstr "Izohlar" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "Yo‘q" @@ -234,9 +235,9 @@ msgstr "Yo‘q" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -341,7 +342,7 @@ msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -371,15 +372,15 @@ msgstr "Aloqalar sxemasi" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "Jadval " #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -440,19 +441,19 @@ msgstr "Sortirovka qilish" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "O‘sish tartibida" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "Kamayish tartibida" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "Ko‘rsatish" @@ -473,8 +474,8 @@ msgid "Del" msgstr "O‘chirish" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "Yoki" @@ -507,7 +508,7 @@ msgstr "Jadvallarni ishlatish" msgid "SQL query on database %s:" msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov: " -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "so‘rovni bajarish" @@ -547,8 +548,8 @@ msgid_plural "%s matches inside table %s" msgstr[0] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "Ko‘rib chiqish" @@ -560,7 +561,7 @@ msgid "Delete the matches for the %s table?" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -639,7 +640,7 @@ msgstr "Kuzatish faol." msgid "Tracking is not active." msgstr "Kuzatish faol emas." -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -669,22 +670,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi." #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "Belgilanganlarni: " -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "Barchasini belgilash" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "Belgilashni bekor qilish" @@ -692,10 +693,10 @@ msgstr "Belgilashni bekor qilish" msgid "Check tables having overhead" msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -703,17 +704,17 @@ msgid "Export" msgstr "Eksport" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "Chop etish versiyasi" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "Tozalash" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -767,9 +768,9 @@ msgstr "Kuzatilgan jadvallar" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "Ma`lumotlar bazasi" @@ -788,15 +789,15 @@ msgstr "Yangilandi" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "Holat" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "Amal" @@ -849,7 +850,7 @@ msgstr "" msgid "+ Restart insertion and add a new value" msgstr "" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "" @@ -884,6 +885,94 @@ msgstr "\"%s\" faylini veb-serverga saqlash uchun huquqlar yetarli emas." msgid "Dump has been saved to file %s." msgstr "Damp \"%s\" faylida saqlandi." +#: gis_data_editor.php:84 +#, php-format +msgid "Value for the column \"%s\"" +msgstr "" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add a point" +msgstr "Indеks(lar)ni saqlash" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "Qatorlar bo‘luvchisi" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "Yangi foydalanuvchi qo‘shish" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "Yangi foydalanuvchi qo‘shish" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column(s)" +msgid "Add a polygon" +msgstr "Ustun(lar) qo‘shish" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "Yangi foydalanuvchi qo‘shish" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -935,7 +1024,7 @@ msgstr "Xatcho‘p o‘chirildi." msgid "Showing bookmark" msgstr "Xatcho‘plarni ko‘rsatish" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" xatcho‘pi tuzildi" @@ -964,7 +1053,7 @@ msgstr "" "phpMyAdmin dasturi import jarayonini yakunla olmasligini bildiradi." #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -990,16 +1079,16 @@ msgstr "Tanlash uchun sichqoncha tugmasini bosing" msgid "Click to unselect" msgstr "Tanlashni bеkor qilish uchun sichqoncha tugmasini bosing" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" "\"DROP DATABASE\" (ma`lumotlar bazasini o‘chirish) buyrug‘i o‘chirilgan." -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "Haqiqatan ham so‘rovni bajarmoqchimisiz?" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "Ma`lumotlar bazasi to‘liq O‘CHIRILADI!" @@ -1072,8 +1161,8 @@ msgstr "Parol belgilanmagan!" msgid "The passwords aren't the same!" msgstr "Kiritilgan parollar bir xil emas!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 #, fuzzy #| msgid "Any user" msgid "Add user" @@ -1097,8 +1186,8 @@ msgid "Close" msgstr "Yopish" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1138,12 +1227,12 @@ msgid "Other" msgstr "" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "" #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "," @@ -1236,12 +1325,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1348,7 +1437,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "Yo‘q" @@ -1775,8 +1864,8 @@ msgid "No rows selected" msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak. " -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "O‘zgartirish" @@ -1790,8 +1879,8 @@ msgstr "Maksimum bajarilish vaqti" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "Saqlash" @@ -1807,7 +1896,7 @@ msgstr "SQL so‘rovlari qutisi" msgid "Show search criteria" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1851,114 +1940,122 @@ msgstr "Ustun qo‘shish/o‘chirish" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "E`tibor bermaslik" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column(s)" msgid "Add columns" msgstr "Ustun(lar) qo‘shish" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "Bog‘liq kalitni tanlang" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "Tashqi kalitni tanlang" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "" "Birlamchi (PRIMARY) yoki unikal (UNIQUE) indeks bo‘lgan maydonni tanlang!" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display" msgstr "Ko‘rsatiladigan maydonni tanlash" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "" -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "Tanlash uchun sichqoncha tugmasini bosing" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "Ushbu ko‘rinishga o‘tish" -#: js/messages.php:310 +#: js/messages.php:322 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Parol o‘rnatish" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "Generatsiya qilish" -#: js/messages.php:312 +#: js/messages.php:324 #, fuzzy #| msgid "Change password" msgid "Change Password" msgstr "Parolni o‘zgartirish" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dush" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1969,33 +2066,33 @@ msgstr "" "sanada chiqarilgan." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Oxirgi versiyani tekshirish" -#: js/messages.php:321 +#: js/messages.php:333 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ushbu bazaga o‘tish" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 #, fuzzy #| msgid "Donate" msgid "Done" msgstr "Sadaqa" -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Orqaga" -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2003,96 +2100,96 @@ msgid "Next" msgstr "Keyingi" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jami" -#: js/messages.php:355 +#: js/messages.php:367 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Ikkilik" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "" -#: js/messages.php:357 +#: js/messages.php:369 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:358 +#: js/messages.php:370 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "May" -#: js/messages.php:360 +#: js/messages.php:372 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Iyun" -#: js/messages.php:361 +#: js/messages.php:373 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Iyul" -#: js/messages.php:362 +#: js/messages.php:374 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avg" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "" -#: js/messages.php:364 +#: js/messages.php:376 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2100,78 +2197,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "Dek" -#: js/messages.php:395 +#: js/messages.php:407 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Yaksh" -#: js/messages.php:396 +#: js/messages.php:408 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dush" -#: js/messages.php:397 +#: js/messages.php:409 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sesh" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "" -#: js/messages.php:400 +#: js/messages.php:412 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2179,107 +2276,112 @@ msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "Shan" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Yaksh" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dush" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sesh" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Chor" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pay" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Shan" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 #, fuzzy #| msgid "Wiki" msgid "Wk" msgstr "Viki" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "" -#: js/messages.php:438 +#: js/messages.php:450 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ishlatilmoqda" -#: js/messages.php:439 +#: js/messages.php:451 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundiga" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "Shrift o‘lchami" @@ -2391,13 +2493,13 @@ msgstr "%1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin." #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "Ma`lumotlar bazalari" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "Xatolik" @@ -2533,7 +2635,7 @@ msgstr "\"%s\" mavzusi topilmadi!" msgid "Theme path not found for theme %s!" msgstr "\"%s\" mavzusi fayllariga yo‘l topilmadi!" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2710,7 +2812,7 @@ msgstr "Jadvallar" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "Ma`lumotlar" @@ -2788,7 +2890,7 @@ msgstr "" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "Server" @@ -2855,105 +2957,105 @@ msgstr "SQL so‘rovi" msgid "MySQL said: " msgstr "MySQL javobi: " -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 #, fuzzy #| msgid "Could not connect to MySQL server" msgid "Failed to connect to SQL validator!" msgstr "MySQL-serverga ulanib bo‘lmadi" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "So‘rov tahlili" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "Tahlil kerak emas" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "PHP-kod olib tashlash" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "PHP-kod" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "Yangilash" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "SQL sintaksisi tekshiruvini olib tashlash" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 #, fuzzy #| msgid "Engines" msgctxt "Inline edit query" msgid "Inline" msgstr "Jadval turlari" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "Profillashtirish" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "Bayt" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "Yaksh" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%d %B %Y y., %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "\"%s\" kun, \"%s\" soat, \"%s\" minut va \"%s\" sekund" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "Muolajalar" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2961,7 +3063,7 @@ msgctxt "First page" msgid "Begin" msgstr "Boshi" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2970,7 +3072,7 @@ msgctxt "Previous page" msgid "Previous" msgstr "Orqaga" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2979,7 +3081,7 @@ msgctxt "Next page" msgid "Next" msgstr "Keyingi" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2987,38 +3089,38 @@ msgctxt "Last page" msgid "End" msgstr "Oxiri" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "\"%s\" ma`lumotlar bazasiga o‘tish" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "" " \"%s\" parametrining ishi ma`lum xatolikka olib kelishi mumkin, batafsil " "ma`lumot uchun qarang \"%s\"" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "Tanlash uchun sichqoncha tugmasini bosing" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "Tuzilishi" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -3026,38 +3128,38 @@ msgstr "Tuzilishi" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "Qo‘yish" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "Operatsiyalar" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Yuklash katalogidan" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -3236,7 +3338,7 @@ msgstr "" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "Tozalash" @@ -3528,7 +3630,7 @@ msgid "Character set of the file" msgstr "Fayl kodirovkasi" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "Format" @@ -5318,7 +5420,7 @@ msgstr "" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "Parol" @@ -5635,8 +5737,8 @@ msgid "Designer" msgstr "Dizayner" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "Privilegiyalar" @@ -5655,7 +5757,7 @@ msgstr "Hodisalar" msgid "Triggers" msgstr "Triggerlar" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5720,7 +5822,7 @@ msgid "Create" msgstr "Tuzish" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "Privilegiyalar yo‘q" @@ -6105,12 +6207,12 @@ msgstr "Indeks bo‘yicha sortirovka qilish" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "Parametrlar" @@ -6144,8 +6246,8 @@ msgstr "Ikkilik ma`lumotlarni ko‘rsatish" msgid "Show BLOB contents" msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "Yashirish" @@ -6154,10 +6256,6 @@ msgstr "Yashirish" msgid "Browser transformation" msgstr "O‘girish" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -6166,61 +6264,57 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "Tugatish" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "so‘rov bo‘yicha" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "Yozuvlarni ko‘rsatish" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "jami" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "So‘rov %01.4f sekund vaqt oldi" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "Chop etish versiyasi (to‘la)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-sxemani ko‘rsatish" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Vеrsiyasini tuzish" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "Aloqa topilmadi" @@ -6430,7 +6524,7 @@ msgstr "" "nisbati. Qiymat 1 va 99 orasidabo‘lishi shart. Asl qiymati – 50." #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "Port" @@ -6792,7 +6886,7 @@ msgstr "Mavjud MIME turlari" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "Xost" @@ -6996,7 +7090,7 @@ msgstr "Tarkibini eksport qilish" msgid "Open new phpMyAdmin window" msgstr "phpMyAdmin dasturini yangi oynada ochish" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "" @@ -7008,56 +7102,56 @@ msgstr "SQL so‘rovi natijasi" msgid "Generated by" msgstr "Tuzilgan" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 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:1075 +#: libraries/import.lib.php:1095 #, 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:1076 +#: libraries/import.lib.php:1096 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:1077 +#: libraries/import.lib.php:1097 #, 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:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "Ushbu bazaga o‘tish" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "\"%s\" maydonida ma`lumot yo‘q" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "Ushbu jadvalga o‘tish" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "Faqat tuzilishi" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "Ushbu ko‘rinishga o‘tish" @@ -7112,7 +7206,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "Jadval nomi" @@ -7138,6 +7232,32 @@ msgstr "" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "Pul birliklarini import qilish (masalan, $5.00 ni 5.00 ga)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "File %s does not contain any key id" +msgid "The imported file does not contain any data" +msgstr "\"%s\" faylida kalit identifikatori mavjud emas" + #: libraries/import/sql.php:33 #, fuzzy #| msgid "SQL compatibility mode" @@ -7195,7 +7315,7 @@ msgstr "" msgid "Add prefix" msgstr "Indеks(lar)ni saqlash" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "O‘zgarish yo‘q" @@ -7204,7 +7324,7 @@ msgid "Charset" msgstr "Kodirovka" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "Ikkilik" @@ -7523,7 +7643,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "Foydalanuvchi nomi" @@ -7541,9 +7661,9 @@ msgid "Variable" msgstr "O‘zgaruvchi" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "Qiymati" @@ -7571,7 +7691,7 @@ msgstr "Har qaysi foydalanuvchi" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "Matnmaydonini ishlatish" @@ -7769,7 +7889,7 @@ msgid "Returns" msgstr "Qaytariladigan tip" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "Vaqt" @@ -7927,8 +8047,8 @@ msgstr "" msgid "Routine parameters" msgstr "Muolajalar" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "Funksiya" @@ -8265,8 +8385,8 @@ msgstr "Noma`lum til: %1$s." msgid "Current Server" msgstr "Joriy sеrvеr" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "Sinxronizatsiya qilish" @@ -8288,7 +8408,7 @@ msgstr "Kodirovkalar" msgid "Engines" msgstr "Jadval turlari" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "Manba baza" @@ -8306,7 +8426,7 @@ msgstr "Masofadagi sеrvеr" msgid "Difference" msgstr "Farq" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "Nishon baza" @@ -8331,11 +8451,11 @@ msgstr "Tozalash" msgid "Columns" msgstr "Maydon nomlari" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "Barcha foydalanuvchilarga ruxsat berish" @@ -8363,7 +8483,7 @@ msgstr "Faqat ko‘rish" msgid "Location of the text file" msgstr "Faylni tanlash" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "Yuklash katalogidan" @@ -8572,23 +8692,29 @@ msgid "+ Add a value" msgstr "Yangi foydalanuvchi qo‘shish" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "Tashqi qiymatlarni ko‘rib chiqish" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "Operator" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "Qidirish" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "Qo‘yish" + #: libraries/transformations/application_octetstream__download.inc.php:10 #, fuzzy #| msgid "" @@ -8800,8 +8926,8 @@ msgstr "" msgid "No files found inside ZIP archive!" msgstr "ZIP-arxiv ichida fayl mavjud emas!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "Ushbu ZIP arxivda xatolik:" @@ -8831,8 +8957,8 @@ msgstr "tanlovlar" msgid "Protocol version" msgstr "Protokol versiyasi" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "Foydalanuvchi" @@ -9001,7 +9127,7 @@ msgstr "" "Server \"Suhosin\" himoya tizimadan foydalanmoqda. Yuzaga kelgan muammolar " "yechimi uchun \"%s\"dokumentatsiya\"%s\" ga qarang." -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "Ma`lumotlar bazasi mavjud emas" @@ -9030,7 +9156,7 @@ msgstr "Chap menyuni ko‘rsatish/yashirish" msgid "Save position" msgstr "Jadvallar joylashishini saqlash" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "Jadval tuzish" @@ -9410,81 +9536,81 @@ msgstr "Jadval turlari" msgid "View dump (schema) of databases" msgstr "Ma`lumotlar bazalari dampini (sxemasini) namoyish etish" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "GRANT dan tashqari barcha privilegiyalarni o‘z ichiga oladi" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "Mavjud jadvallarning tuzilishini o‘zgartirishga ruxsat beradi" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "Saqlanadigan muolajalarni o‘zgartirish va o‘chirishga ruxsat beradi" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "Yangi ma`lumotlar bazalari va jadvallar tuzishga ruxsat beradi" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "Saqlanadigan muolajalar tuzishga ruxsat beradi" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "Yangi jadvallar tuzishga ruxsat beradi" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "Vaqtinchalik jadvallar tuzishga ruxsat beradi" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "" "Foydalanuvchilar hisobini qo‘shish, o‘chirish va o‘zgartirishga ruxsat beradi" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "Yangi namoyishlar tuzish(CREATE VIEW)ga ruxsat beradi" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "Ma`lumotlarni o‘chirishga ruxsat beradi" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "Ma`lumotlar bazalarini va jadvallarni o‘chirishga ruxsat beradi" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "Jadvallarni o‘chirishga rux`sat beradi" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "Kechiktirilgan hodisalarni sozlashga ruxsat beradi" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "Ma`lumotlarni fayldan import va faylga eksport qilishga ruxsat beradi" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "" @@ -9492,17 +9618,17 @@ msgstr "" "privilegiyalar qo‘shishga ruxsat beradi" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "Indekslar qo‘shish va ularni o‘chirishga ruxsat beradi" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "Ma`lumot qo‘yish va o‘zgartirishga ruxsat beradi" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "Joriy oqim uchun jadvalni blokirovku qilishga ruxsat beradi" @@ -9536,57 +9662,57 @@ msgstr "" "ulanishlar soni" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "Barcha foydalanuvchilarning jarayonlarini ko‘rishga ruxsat beradi" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "MySQL-serverning ushbu versiyada bunday xususiyat mavjud emas!" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "" "Server sozlanishlarini qayta yuklashga va uning keshlarini tozalashga ruxsat " "beradi" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "" "Bosh va tobe serverlarning joylashishi haqidagi ma`lumotni talab qilishga " "ruxsat beradi" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "" "Replikatsiya (zaxira nusxa ko‘chirish) vaqtida tobe serverlar uchun kerak" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "Ma`lumotlarni chaqirishga ruxsat beradi" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "Ma`lumotlar bazalarining to‘liq ro‘yxatiga ruxsat beradi" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "Namoyish tuzadigan so‘rov(SHOW CREATE VIEW)ni bajarishga ruxsat beradi" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "Server ishini yakunlashga ruxsat beradi" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -9598,47 +9724,47 @@ msgstr "" "o‘chirish)" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "" "Triggerlar (ma`lum shartlar bajarilganda avtomatik ishga tushadigan " "jarayonlar) tuzish va ularni o‘chirishga ruxsat beradi" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "Ma`lumotlarni o‘zgartirishga ruxsat beradi" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "Privilegiyalar yo‘q" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 #, fuzzy #| msgid "None" msgctxt "None privileges" msgid "None" msgstr "Yo‘q" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "Jadval darajasijagi privilegiyalar" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "IZOH: MySQL privilegiyalari turlari ingliz tilida ko‘rsatiladi." -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "Administratsiya" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "Global privilegiyalar" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "Ma`lumotlar bazasi privilegiyalari" @@ -9660,7 +9786,7 @@ msgstr "Foydalanuvchi hisobi haqida ma`lumot" msgid "Do not change the password" msgstr "Parolni o‘zgartirmaslik" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 #, fuzzy #| msgid "No user(s) found." msgid "No user found." @@ -9711,7 +9837,7 @@ msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi." msgid "The privileges were reloaded successfully." msgstr "Privilegiyalar muvaffaqiyatli qayta yuklandi." -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "Privilegiyalarni tahrirlash" @@ -9719,37 +9845,37 @@ msgstr "Privilegiyalarni tahrirlash" msgid "Revoke" msgstr "Bekor qilish" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "Har qaysi" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "Foydalanuvchilar hisobini ko‘rib chiqish" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "GRANT" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "Belgilangan foydalanuvchilarni o‘chirish" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "" "Foydalanuvchilarning barcha faol privilegiyalarini bekor qilish, so‘ng " "ularni o‘chirish." -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "" "Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish." -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -9762,50 +9888,50 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "Maydon privilegiyalari" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "" "Ma`lumotlar bazalari nomlarida pastki chiziq (_) va foiz (%) belgilari " "ishlatilganda ular oldiga teskari egri chiziq (\\) qo‘yish kerak." -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "Quyidagi jadvalga privilegiya qo‘shish" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "Foydalanuvchining loginini o‘zgartirish / Foydalanuvchidan nusxa olish" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "Xuddi shunday privilegiyali yangi foydalanuvchi kiritish..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "va eskisini saqlash." -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "va foydalanuvchilar jadvalidan eskisini o‘chirish." -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr ", eskisining barcha faol privilegiyalarini bekor qilib o‘chirish." -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." @@ -9813,52 +9939,52 @@ msgstr "" ", foydalanuvchilar jadvalidan eskisini o‘chirib privilegiyalarni qayta " "yuklash." -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "Foydalanuvchi uchun ma`lumotlar bazasi" -#: server_privileges.php:2205 +#: server_privileges.php:2203 #, fuzzy #| msgid "None" msgctxt "Create none database for user" msgid "None" msgstr "Yo‘q" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "" "Foydalanuvchi nomi bilan atalgan ma`lumotlar bazasi tuzish va unga to‘liq " "privilegiyalarni berish." -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "" "(foydalanuvchi\\_%) shabloniga to‘g‘ri keladigan barcha ma`lumotlar " "bazalariga to‘liq privilegiyalarni berish." -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "\"%s\"" ma`lumotlar bazasiga barcha privilegiyalarni berish;" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "Global" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "Ma`lumotlar bazasi darajasida" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "Guruhlash belgisi" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -11228,114 +11354,114 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "ishlatilmoqda" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "Manbaga ulanib bo‘lmadi" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "Nishonga ulanib bo‘lmadi" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "'%s' nomli baza mavjud emas." -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "Tuzilishni sinxronizatsiya qilish" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "Ma’lumotlar sinxronizatsiyasi" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "Mavjud emas" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "Tuzilishdagi farq" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "Ma’lumotlar farqi" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "Ustun(lar) qo‘shish" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "Ustun(lar)ni olib tashlash" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "Ustun(lar)ni o‘zgartirish" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "Indеks(lar)ni olib tashlash" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "Indеks(lar)ni saqlash" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "Qator(lar)ni yangilash" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "Qator(lar) qo‘shish" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "Nishon jadvaldagi barcha oldingi qatorlarni o‘chirmoqchimisiz?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "Kiritilgan o‘zgarishlarni saqlash" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "Bazalarni sinxronizatsiya qilish" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "Tanlangan jadvallar manba jadvallar bilan sinxronizatsiya qilindi." -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "Nishon baza manba baza bilan sinxronizatsiya qilindi" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL so‘rovlari" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 #, fuzzy #| msgid "Insecure connection" msgid "Current connection" msgstr "Noxavfsiz ulanish" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, fuzzy, php-format #| msgid "Configuration file" msgid "Configuration: %s" msgstr "Konfiguratsion fayl" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "Sokеt" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -11741,36 +11867,36 @@ msgstr "Kalit juda qisqa, u kamida 8 ta belgidan iborat bo‘lishi kerak" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "Kalit harflar, raqamlar [em]va[/em] maxsus belgilarni olishi kerak" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "PHP-kod sifatida ko‘rsatish" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: sql.php:697 +#: sql.php:707 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "Xatcho‘p belgisi" @@ -11779,64 +11905,64 @@ msgstr "Xatcho‘p belgisi" msgid "Table %1$s has been altered successfully" msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi" -#: tbl_change.php:683 +#: tbl_change.php:700 #, fuzzy #| msgid "Because of its length,
this field might not be editable " msgid "Because of its length,
this column might not be editable" msgstr "Ma`lumotlar ko‘pligi sabali
o‘zgartirish qiyishlashishi mumkin" -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "BLOB ombori murojaatlarini o‘chirish" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "BLOB omboriga yuklash" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "Yozuv kiritish" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "Kiritilgan so‘rovni ko‘rsatish" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "va so‘ng" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "Oldingi sahifaga o‘tish" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "Yangi yozuv kiritish" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "Ushbu sahifaga qaytish" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "Keyingi qatorni tahrirlash" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" "Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan " "foydalaning" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, fuzzy, php-format #| msgid "Restart insertion with %s rows" msgid "Continue insertion with %s rows" @@ -11926,53 +12052,49 @@ msgstr "%1$s jadvali tuzildi." msgid "View dump (schema) of table" msgstr "Jadval dampini (sxemasini) namoyish etish" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "Server tanlovini ko‘rsatish" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "CHAR textarea columns" msgid "Label column" msgstr "CHAR maydonidagi ustunlar soni" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- yo‘q -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Log file count" msgid "Spatial column" msgstr "Jurnal fayllari soni" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "Fayl kabi saqlash" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -12209,25 +12331,25 @@ msgstr "" msgid "Foreign key constraint" msgstr "Tashqi kalit chegaralari" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")" -#: tbl_select.php:155 +#: tbl_select.php:186 #, fuzzy #| msgid "Select fields (at least one):" msgid "Select columns (at least one):" msgstr "Maydonni tanlang (kamida bitta):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "Qidirish shartini ko‘shish (ya`ni \"where\" jumlasi):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "Sahifadagi qatorlar soni " -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "Sortirovka:" @@ -13879,9 +14001,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "Vеrsiyasini tuzish" -#~ msgid "Add a new User" -#~ msgstr "Yangi foydalanuvchi qo‘shish" - #~ msgid "Show table row links on left side" #~ msgstr "Chap ramkada logotipni ko‘rsatish" diff --git a/po/zh_CN.po b/po/zh_CN.po index 97b8f5345f..426f2f7dc7 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-08-11 04:40+0200\n" "Last-Translator: shanyan baishui \n" "Language-Team: chinese_simplified \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "全部显示" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "无法更新目标浏览窗口。可能你已经关闭了父窗口或您浏览器的安全设置阻止了跨窗口" "更新。" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "搜索" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "搜索" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -136,8 +137,8 @@ msgstr "表注释" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -152,8 +153,8 @@ msgstr "字段" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -164,7 +165,7 @@ msgstr "类型" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -207,10 +208,10 @@ msgstr "注释" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "否" @@ -229,9 +230,9 @@ msgstr "否" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -332,7 +333,7 @@ msgstr "切换到复制的数据库" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -355,15 +356,15 @@ msgstr "编辑或导出关系大纲" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "表" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -421,19 +422,19 @@ msgstr "排序" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "递增" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "递减" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "显示" @@ -454,8 +455,8 @@ msgid "Del" msgstr "删除" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "或" @@ -484,7 +485,7 @@ msgstr "使用表" msgid "SQL query on database %s:" msgstr "在数据库 %s 执行 SQL 语句:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "提交查询" @@ -522,8 +523,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "在表 %2$s 中找到 %1$s 个匹配" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "浏览" @@ -534,7 +535,7 @@ msgid "Delete the matches for the %s table?" msgstr "删除 %s 表中所有匹配的记录?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -602,7 +603,7 @@ msgstr "追踪已启用。" msgid "Tracking is not active." msgstr "追踪已禁用。" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -630,22 +631,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 服务器的默认存储引擎。" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "选中项:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "全选" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "全不选" @@ -653,10 +654,10 @@ msgstr "全不选" msgid "Check tables having overhead" msgstr "仅选择多余" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -664,17 +665,17 @@ msgid "Export" msgstr "导出" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "打印预览" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "清空" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -722,9 +723,9 @@ msgstr "已追踪的表" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "数据库" @@ -743,15 +744,15 @@ msgstr "更新" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "状态" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "操作" @@ -804,7 +805,7 @@ msgstr "请将每个值分别输入在不同的输入框中。" msgid "+ Restart insertion and add a new value" msgstr "+ 重新插入并添加一个值" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "输出" @@ -837,6 +838,95 @@ msgstr "网站服务器没有保存文件 %s 的权限。" msgid "Dump has been saved to file %s." msgstr "转存已经保存到文件 %s 中。" +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "字段“%s”的值" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "以 OpenStreetMaps 为背景" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add routine" +msgid "Add a point" +msgstr "添加程序" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "换行符" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "添加新用户" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "添加新用户" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "添加字段" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add event" +msgid "Add geometry" +msgstr "添加事件" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -880,7 +970,7 @@ msgstr "书签已删除。" msgid "Showing bookmark" msgstr "显示书签" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "已创建书签 %s" @@ -905,7 +995,7 @@ msgstr "" "将无法完成导入操作。" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -929,15 +1019,15 @@ msgstr "点击选中" msgid "Click to unselect" msgstr "点击取消" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已经禁用删除数据库 (“DROP DATABASE”) 语句。" -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "您真的要" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "您将要删除一个完整的数据库!" @@ -999,8 +1089,8 @@ msgstr "密码不能为空!" msgid "The passwords aren't the same!" msgstr "两次密码不一致!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "添加用户" @@ -1018,8 +1108,8 @@ msgid "Close" msgstr "关闭" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1055,12 +1145,12 @@ msgid "Other" msgstr "其它" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1147,12 +1237,12 @@ msgid "System swap" msgstr "系统交换空间" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1241,7 +1331,7 @@ msgstr "请至少添加一个数据" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "无" @@ -1618,8 +1708,8 @@ msgstr "显示查询框" msgid "No rows selected" msgstr "没有选中任何行" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "修改" @@ -1631,8 +1721,8 @@ msgstr "查询执行时间" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "保存" @@ -1644,7 +1734,7 @@ msgstr "隐藏搜索条件" msgid "Show search criteria" msgstr "显示搜索条件" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1688,101 +1778,109 @@ msgstr "添加/删除字段" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "忽略" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "复制" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 msgid "Add columns" msgstr "添加字段" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "选择外键" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "选择外键" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "请选择主键或唯一键" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "选择要显示的字段" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "尚未保存当前布局。如果继续将会丢失本次的修改。是否继续?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "给字段添加选项 " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "按 Esc 键取消编辑" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "已有数据被修改但尚未保存。你真的要不保存修改就离开本页吗?" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "拖拽以调整顺序" -#: js/messages.php:301 +#: js/messages.php:313 msgid "Click to sort" msgstr "点击以排序" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "点击以标记/取消标记" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "点击下箭头以设置显示的字段" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "转到视图" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "生成密码" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "生成" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "修改密码" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "更多" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1790,258 +1888,263 @@ msgid "" msgstr "有新的 phpMyAdmin 可用,请考虑升级。最新的版本是 %s,于 %s 发布。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ",最新稳定版本: " -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "已更新" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "完成" -#: js/messages.php:344 +#: js/messages.php:356 msgctxt "Previous month" msgid "Prev" msgstr "上个月" -#: js/messages.php:349 +#: js/messages.php:361 msgctxt "Next month" msgid "Next" msgstr "下个月" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "今天" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "一月" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "二月" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "三月" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "四月" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "五月" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "六月" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "七月" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "八月" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "九月" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "十月" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "十一月" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "十二月" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "星期日" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "星期一" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "星期四" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "星期五" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "周六" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "周" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "时" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "分" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "秒" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "字号" @@ -2147,13 +2250,13 @@ msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除 #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "数据库" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "错误" @@ -2273,7 +2376,7 @@ msgstr "未找到主题 %s !" msgid "Theme path not found for theme %s!" msgstr "找不到主题 %s 的路径" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "主题" @@ -2440,7 +2543,7 @@ msgstr "数据表" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "数据" @@ -2504,7 +2607,7 @@ msgstr "无效的主机名 %1$s,请检查配置文件。" #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "服务器" @@ -2569,152 +2672,152 @@ msgstr "SQL 查询" msgid "MySQL said: " msgstr "MySQL 返回:" -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "连接到 SQL 校验器失败!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "解释 SQL" -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "略过解释 SQL" -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "无 PHP 代码" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "创建 PHP 代码" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "刷新" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "略过校验 SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "校验 SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "在本页面编辑此查询" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "快速编辑" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "概要" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "字节" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "周日" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小时,%s 分 %s 秒" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 msgid "Missing parameter:" msgstr "缺少参数:" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 msgctxt "First page" msgid "Begin" msgstr "首页" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 msgctxt "Previous page" msgid "Previous" msgstr "上一页" -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 msgctxt "Next page" msgid "Next" msgstr "下一页" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 msgctxt "Last page" msgid "End" msgstr "尾页" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "跳转到数据库“%s”。" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 msgid "Click to toggle" msgstr "点击切换" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "结构" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2722,37 +2825,37 @@ msgstr "结构" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "插入" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "操作" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "从计算机中上传:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "从网站服务器上传文件夹 %s 中选择:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "用于上传的文件夹出错,无法使用" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "没有可上传的文件" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "执行" @@ -2918,7 +3021,7 @@ msgstr "允许用户自定义该值" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "重置" @@ -3175,7 +3278,7 @@ msgid "Character set of the file" msgstr "文件字符集" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "格式" @@ -4758,7 +4861,7 @@ msgstr "需要启用 SQL 校验器" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "密码" @@ -5047,8 +5150,8 @@ msgid "Designer" msgstr "设计器" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "权限" @@ -5067,7 +5170,7 @@ msgstr "事件" msgid "Triggers" msgstr "触发器" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5125,7 +5228,7 @@ msgid "Create" msgstr "创建" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "无权限" @@ -5438,12 +5541,12 @@ msgstr "主键排序" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "选项" @@ -5471,8 +5574,8 @@ msgstr "显示二进制内容" msgid "Show BLOB contents" msgstr "显示 BLOB 内容" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "隐藏" @@ -5481,10 +5584,6 @@ msgstr "隐藏" msgid "Browser transformation" msgstr "浏览器转换" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5493,57 +5592,53 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "复制" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "已删除该行" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "杀死" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "查询中" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "显示行" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "总计" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "查询花费 %01.4f 秒" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "查询结果选项" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "打印预览 (全文显示)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "显示图表" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "可视化 GIS 数据" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "新建视图" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "找不到链接" @@ -5733,7 +5828,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "在库文件被压缩之前垃圾数据所占的比率。" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "端口" @@ -6055,7 +6150,7 @@ msgstr "显示 MIME 类型" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "主机" @@ -6258,7 +6353,7 @@ msgstr "导出内容" msgid "Open new phpMyAdmin window" msgstr "打开新 phpMyAdmin 窗口" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 msgid "No data found for GIS visualization." msgstr "未找到用于 GIS 可视化的数据。" @@ -6270,48 +6365,48 @@ msgstr "SQL 查询结果" msgid "Generated by" msgstr "生成者" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列结构被创建或修改。你可以:" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 msgid "View a structure's contents by clicking on its name" msgstr "请通过点击结构的名称来查看它的内容" -#: libraries/import.lib.php:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "点击相应的“选项”链接修改它的设置" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 msgid "Edit structure by following the \"Structure\" link" msgstr "请通过点击 \"结构\" 链接来编辑结构" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "转到数据库" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, php-format msgid "Edit settings for %s" msgstr "编辑 %s 的设置" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "转到数据表" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, php-format msgid "Structure of %s" msgstr "%s 的结构" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "转到视图" @@ -6364,7 +6459,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "数据表名" @@ -6385,6 +6480,32 @@ msgstr "导入百分数为小数 (如: 12.00% 将被导入为 .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "导入货币 (如: $5.00 将被导入为 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "此页没有包含任何表!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "SQL 兼容模式:" @@ -6430,7 +6551,7 @@ msgstr "添加表前缀" msgid "Add prefix" msgstr "添加前缀" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "无更改" @@ -6439,7 +6560,7 @@ msgid "Charset" msgstr "字符集" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "二进制" @@ -6746,7 +6867,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "用户名" @@ -6764,9 +6885,9 @@ msgid "Variable" msgstr "变量" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "值" @@ -6792,7 +6913,7 @@ msgstr "任意用户" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "使用文本域" @@ -6973,7 +7094,7 @@ msgid "Returns" msgstr "返回类型" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "时间" @@ -7111,8 +7232,8 @@ msgstr "运行程序" msgid "Routine parameters" msgstr "程序参数" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "函数" @@ -7393,8 +7514,8 @@ msgstr "未知的语言:%1$s." msgid "Current Server" msgstr "当前服务器" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "同步" @@ -7416,7 +7537,7 @@ msgstr "字符集" msgid "Engines" msgstr "引擎" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "源数据库" @@ -7434,7 +7555,7 @@ msgstr "远程服务器" msgid "Difference" msgstr "差异" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "目标数据库" @@ -7457,11 +7578,11 @@ msgstr "清除" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "让所有用户均可访问此书签" @@ -7489,7 +7610,7 @@ msgstr "仅查看" msgid "Location of the text file" msgstr "文本文件的位置" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "网站服务器上传文件夹" @@ -7669,23 +7790,29 @@ msgid "+ Add a value" msgstr "+ 添加" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "浏览不相关的值" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "运算符" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "搜索" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "插入" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -7828,8 +7955,8 @@ msgstr "你的浏览器中有当前域的 phpMyAdmin 设置。是否导入到当 msgid "No files found inside ZIP archive!" msgstr "ZIP 包中未找到文件!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "ZIP 包中有错误:" @@ -7853,8 +7980,8 @@ msgstr "更多设置" msgid "Protocol version" msgstr "协议版本" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "用户" @@ -7994,7 +8121,7 @@ msgid "" "issues." msgstr "服务器上运行了 Suhosin。请先查看%s文档%s中是否有类似的情况。" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "无数据库" @@ -8021,7 +8148,7 @@ msgstr "显示/隐藏左侧菜单" msgid "Save position" msgstr "保存位置" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "新建数据表" @@ -8356,96 +8483,96 @@ msgstr "存储引擎" msgid "View dump (schema) of databases" msgstr "查看数据库的转存(大纲)" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "除了授权 (GRANT) 以外的所有权限。" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "允许修改现有数据表的结构。" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "允许修改或删除储存过程。" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "允许创建新数据库和数据表。" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "允许创建存储过程。" -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "允许创建新数据表。" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "允许创建临时表。" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "允许创建、删除和重命名用户账户。" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "允许创建视图。" #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "允许删除数据。" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "允许删除数据库和数据表。" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "允许删除数据表。" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "允许为事件触发器设置事件" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "允许运行存储过程。" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "允许从文件中导入数据以及将数据导出至文件。" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允许添加用户和权限,而不允许重新载入权限表。" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "允许创建和删除索引。" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "允许插入和替换数据。" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "允许锁定当前线程的表。" @@ -8472,52 +8599,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "限制该用户的并发连接数。" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "允许查看所有用户的进程" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "在此版本的 MySQL 中无效。" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "允许重新载入服务器设置并刷新服务器的缓存。" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "用户有权询问附属者/控制者在哪里。" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "回复附属者所需。" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "允许读取数据。" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "允许访问完整的数据库列表。" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "允许执行 SHOW CREATE VIEW 查询。" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "允许关闭服务器。" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8527,43 +8654,43 @@ msgstr "" "管理操作是必需的。" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "允许创建和删除触发器" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "允许修改数据。" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "无权限。" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "无" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "按表指定权限" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "注意:MySQL 权限名称会以英文显示 " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "管理" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "全局权限" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "按数据库指定权限" @@ -8583,7 +8710,7 @@ msgstr "登录信息" msgid "Do not change the password" msgstr "保持原密码" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "未找到用户。" @@ -8632,7 +8759,7 @@ msgstr "已成功删除选中的用户。" msgid "The privileges were reloaded successfully." msgstr "已成功重新载入权限。" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "编辑权限" @@ -8640,34 +8767,34 @@ msgstr "编辑权限" msgid "Revoke" msgstr "撤销" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "任意" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "查看用户" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "授权" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "删除选中的用户" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "撤销用户所有权限,然后删除用户。" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "删除与用户同名的数据库。" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8679,93 +8806,93 @@ msgstr "" "将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" "限%s。" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "在权限表内找不到选中的用户。" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "按字段指定权限" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "在下列数据库添加权限" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "要使用通配符 _ 和 % 本身,应使用用 \\ 转义" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "在下列数据表添加权限" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "修改登录信息/复制用户" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "创建具有相同权限的新用户然后 ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... 保留旧用户。" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... 从用户表中删除旧用户。" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... 撤销旧用户的所有权限,然后删除旧用户。" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... 从用户表中删除旧用户,然后重新载入权限。" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "用户数据库" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "无" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "创建与用户同名的数据库并授予所有权限" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "给以 用户名_ 开头的数据库 (username\\_%) 授予所有权限" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "授予数据库“%s”的所有权限。" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "用户可以访问“%s”" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "全局" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "按数据库指定" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "通配符" -#: server_privileges.php:2382 +#: server_privileges.php:2380 msgid "User has been added." msgstr "用户已添加。" @@ -10026,110 +10153,110 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "%d 分" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "无法连接到源数据库" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "无法连接到目标数据库" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "数据库 '%s' 不存在。" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "结构同步" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "数据同步" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "未找到" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "结构差异" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "数据差异" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "增加字段" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "删除字段" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "修改字段" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "删除索引" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "增加索引" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "更新行" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "增加行" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "你希望删除当前目标表中的所有数据吗?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "应用选中的修改" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "同步数据库" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "选中的数据表已根据源数据表同步。" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "已根据源数据库同步目标数据库" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 msgid "Executed queries" msgstr "已执行的查询" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "手动输入" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "当前连接" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "配置: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "套接字" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10444,34 +10571,34 @@ msgstr "短语密码太短,至少应有 8 个字符。" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用书签 \"%s\" 作为默认的查询。" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "显示为 PHP 代码" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "已校验的 SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "标签" @@ -10480,60 +10607,60 @@ msgstr "标签" msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s " -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "因长度问题,
该字段可能无法编辑 " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "删除 BLOB 容器功能" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "二进制 - 无法编辑" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "上传到 BLOB 容器" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "以新行插入" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略错误)" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "显示插入语句" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "然后" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "返回上一页" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "插入新数据" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "返回到本页" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "编辑下一行" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "继续插入 %s 行" @@ -10604,43 +10731,39 @@ msgstr "创建数据表 %1$s 成功。" msgid "View dump (schema) of table" msgstr "查看数据表的转存(大纲)。" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 msgid "Display GIS Visualization" msgstr "显示可视化 GIS" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "宽" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "高" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 msgid "Label column" msgstr "名称字段" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 msgid "-- None --" msgstr "-- 无 --" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 msgid "Spatial column" msgstr "空间字段" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "以 OpenStreetMaps 为背景" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "重绘" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 msgid "Save to file" msgstr "保存文件" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 msgid "File name" msgstr "文件名" @@ -10861,23 +10984,23 @@ msgstr "不需要一个和外键关系一致的内联关系" msgid "Foreign key constraint" msgstr "外键约束" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "执行“依例查询”(通配符:“%”)" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "选择字段 (至少一个):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "添加搜索条件 (“where”语句的主体):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "每页行数" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "显示顺序:" @@ -12568,9 +12691,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "新建用户" -#~ msgid "Add a new User" -#~ msgstr "添加新用户" - #~ msgid "Show table row links on left side" #~ msgstr "在数据左侧显示操作链接" diff --git a/po/zh_TW.po b/po/zh_TW.po index 99414a837f..35fe772c91 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2011-08-16 19:11+0200\n" +"POT-Creation-Date: 2011-08-17 16:58+0200\n" "PO-Revision-Date: 2011-06-19 09:59+0200\n" "Last-Translator: \n" "Language-Team: chinese_traditional \n" @@ -14,13 +14,13 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Pootle 2.0.5\n" -#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:304 -#: libraries/display_tbl.lib.php:358 server_privileges.php:1670 +#: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 +#: libraries/display_tbl.lib.php:358 server_privileges.php:1668 msgid "Show all" msgstr "全部顯示" #: browse_foreigners.php:70 libraries/PDF.class.php:42 -#: libraries/common.lib.php:2258 +#: libraries/common.lib.php:2285 #: libraries/schema/Pdf_Relation_Schema.class.php:922 #: libraries/schema/Pdf_Relation_Schema.class.php:938 #: libraries/schema/User_Schema.class.php:376 @@ -37,19 +37,20 @@ msgstr "" "無法更新目標瀏覽視窗。可能您已經關閉了父視窗或您瀏覽器的安全設定阻止了跨視窗" "更新" -#: browse_foreigners.php:151 libraries/common.lib.php:2869 -#: libraries/common.lib.php:2876 libraries/common.lib.php:3061 -#: libraries/common.lib.php:3062 libraries/db_links.inc.php:60 +#: browse_foreigners.php:151 libraries/common.lib.php:2921 +#: libraries/common.lib.php:2928 libraries/common.lib.php:3113 +#: libraries/common.lib.php:3114 libraries/db_links.inc.php:60 #: libraries/tbl_links.inc.php:68 msgid "Search" msgstr "搜尋" #: browse_foreigners.php:154 db_operations.php:369 db_operations.php:409 #: db_operations.php:517 db_operations.php:544 db_search.php:329 -#: db_structure.php:530 enum_editor.php:63 js/messages.php:207 -#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:307 -#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1279 -#: libraries/common.lib.php:2234 libraries/core.lib.php:508 +#: db_structure.php:530 enum_editor.php:63 gis_data_editor.php:133 +#: gis_data_editor.php:166 gis_data_editor.php:309 js/messages.php:207 +#: libraries/Config.class.php:1187 libraries/Theme_Manager.class.php:309 +#: libraries/auth/cookie.auth.lib.php:247 libraries/common.lib.php:1285 +#: libraries/common.lib.php:2261 libraries/core.lib.php:508 #: libraries/display_change_password.lib.php:72 #: libraries/display_create_table.lib.php:61 #: libraries/display_export.lib.php:349 libraries/display_import.lib.php:267 @@ -67,14 +68,14 @@ msgstr "搜尋" #: libraries/tbl_properties.inc.php:592 libraries/tbl_properties.inc.php:763 #: main.php:109 navigation.php:169 navigation.php:207 pmd_pdf.php:120 #: prefs_manage.php:263 prefs_manage.php:314 server_binlog.php:109 -#: server_privileges.php:733 server_privileges.php:1781 -#: server_privileges.php:2138 server_privileges.php:2185 -#: server_privileges.php:2225 server_replication.php:233 +#: server_privileges.php:733 server_privileges.php:1779 +#: server_privileges.php:2136 server_privileges.php:2183 +#: server_privileges.php:2223 server_replication.php:233 #: server_replication.php:316 server_replication.php:347 -#: server_synchronize.php:1170 tbl_change.php:335 tbl_change.php:1027 -#: tbl_change.php:1064 tbl_indexes.php:268 tbl_operations.php:284 +#: server_synchronize.php:1278 tbl_change.php:345 tbl_change.php:1067 +#: tbl_change.php:1104 tbl_indexes.php:268 tbl_operations.php:284 #: tbl_operations.php:321 tbl_operations.php:523 tbl_operations.php:585 -#: tbl_operations.php:767 tbl_select.php:212 tbl_structure.php:667 +#: tbl_operations.php:767 tbl_select.php:243 tbl_structure.php:667 #: tbl_structure.php:704 tbl_tracking.php:416 tbl_tracking.php:554 #: tbl_zoom_select.php:313 view_create.php:181 view_operations.php:99 msgid "Go" @@ -136,8 +137,8 @@ msgstr "表註釋" #: libraries/export/odt.php:288 libraries/export/texytext.php:230 #: libraries/schema/Pdf_Relation_Schema.class.php:1062 #: libraries/schema/Pdf_Relation_Schema.class.php:1083 -#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:109 -#: tbl_change.php:313 tbl_chart.php:89 tbl_indexes.php:196 +#: libraries/tbl_properties.inc.php:277 libraries/tbl_select.lib.php:121 +#: tbl_change.php:323 tbl_chart.php:89 tbl_indexes.php:196 #: tbl_printview.php:136 tbl_relation.php:399 tbl_tracking.php:257 #: tbl_tracking.php:308 tbl_zoom_select.php:408 msgid "Column" @@ -152,8 +153,8 @@ msgstr "欄位" #: libraries/rte/rte_routines.lib.php:1359 #: libraries/schema/Pdf_Relation_Schema.class.php:1063 #: libraries/schema/Pdf_Relation_Schema.class.php:1084 -#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:110 -#: server_privileges.php:2238 tbl_change.php:292 tbl_change.php:319 +#: libraries/tbl_properties.inc.php:103 libraries/tbl_select.lib.php:122 +#: server_privileges.php:2236 tbl_change.php:302 tbl_change.php:329 #: tbl_printview.php:137 tbl_printview.php:277 tbl_structure.php:203 #: tbl_structure.php:761 tbl_tracking.php:258 tbl_tracking.php:305 msgid "Type" @@ -164,7 +165,7 @@ msgstr "類型" #: libraries/export/odt.php:294 libraries/export/texytext.php:232 #: libraries/schema/Pdf_Relation_Schema.class.php:1065 #: libraries/schema/Pdf_Relation_Schema.class.php:1086 -#: libraries/tbl_properties.inc.php:112 tbl_change.php:328 +#: libraries/tbl_properties.inc.php:112 tbl_change.php:338 #: tbl_printview.php:139 tbl_structure.php:206 tbl_tracking.php:260 #: tbl_tracking.php:311 tbl_zoom_select.php:409 msgid "Null" @@ -207,10 +208,10 @@ msgstr "註釋" #: libraries/export/texytext.php:280 libraries/mult_submits.inc.php:287 #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:128 -#: server_privileges.php:1468 server_privileges.php:1479 -#: server_privileges.php:1725 server_privileges.php:1736 -#: server_privileges.php:2056 server_privileges.php:2061 -#: server_privileges.php:2355 sql.php:278 sql.php:339 tbl_printview.php:194 +#: server_privileges.php:1467 server_privileges.php:1477 +#: server_privileges.php:1723 server_privileges.php:1734 +#: server_privileges.php:2054 server_privileges.php:2059 +#: server_privileges.php:2353 sql.php:288 sql.php:349 tbl_printview.php:194 #: tbl_structure.php:347 tbl_tracking.php:321 tbl_tracking.php:326 msgid "No" msgstr "否" @@ -229,9 +230,9 @@ msgstr "否" #: libraries/schema/Pdf_Relation_Schema.class.php:1113 #: libraries/user_preferences.lib.php:270 prefs_manage.php:127 #: server_databases.php:76 server_privileges.php:1465 -#: server_privileges.php:1476 server_privileges.php:1722 -#: server_privileges.php:1736 server_privileges.php:2056 -#: server_privileges.php:2059 server_privileges.php:2355 sql.php:338 +#: server_privileges.php:1475 server_privileges.php:1720 +#: server_privileges.php:1734 server_privileges.php:2054 +#: server_privileges.php:2057 server_privileges.php:2353 sql.php:348 #: tbl_printview.php:194 tbl_structure.php:41 tbl_structure.php:347 #: tbl_tracking.php:319 tbl_tracking.php:324 msgid "Yes" @@ -332,7 +333,7 @@ msgstr "切換到複製的資料庫" #: db_operations.php:537 libraries/Index.class.php:438 #: libraries/build_html_for_db.lib.php:20 libraries/db_structure.lib.php:48 #: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:110 -#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:111 +#: libraries/tbl_properties.inc.php:706 libraries/tbl_select.lib.php:123 #: server_collations.php:53 server_collations.php:65 tbl_operations.php:382 #: tbl_structure.php:204 tbl_structure.php:866 tbl_tracking.php:259 #: tbl_tracking.php:310 @@ -355,15 +356,15 @@ msgstr "編輯或匯出關聯大綱" #: libraries/export/pdf.php:95 libraries/export/xml.php:346 #: libraries/header.inc.php:158 libraries/rte/rte_list.lib.php:59 #: libraries/rte/rte_triggers.lib.php:310 -#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1832 -#: server_privileges.php:1888 server_privileges.php:2152 -#: server_synchronize.php:399 server_synchronize.php:826 tbl_tracking.php:634 +#: libraries/schema/User_Schema.class.php:254 server_privileges.php:1830 +#: server_privileges.php:1886 server_privileges.php:2150 +#: server_synchronize.php:434 server_synchronize.php:906 tbl_tracking.php:634 msgid "Table" msgstr "表" #: db_printview.php:103 libraries/build_html_for_db.lib.php:31 #: libraries/db_structure.lib.php:42 libraries/header_printview.inc.php:62 -#: libraries/import.lib.php:146 navigation.php:591 navigation.php:613 +#: libraries/import.lib.php:151 navigation.php:591 navigation.php:613 #: tbl_printview.php:358 tbl_structure.php:362 tbl_structure.php:468 #: tbl_structure.php:876 msgid "Rows" @@ -422,19 +423,19 @@ msgstr "排序" #: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:97 #: libraries/display_tbl.lib.php:547 libraries/display_tbl.lib.php:916 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:279 -#: tbl_select.php:199 +#: tbl_select.php:230 msgid "Ascending" msgstr "遞增" #: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:105 #: libraries/display_tbl.lib.php:552 libraries/display_tbl.lib.php:913 #: server_databases.php:157 server_databases.php:174 tbl_operations.php:280 -#: tbl_select.php:200 +#: tbl_select.php:231 msgid "Descending" msgstr "遞減" #: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:422 -#: tbl_change.php:282 tbl_tracking.php:639 +#: tbl_change.php:292 tbl_tracking.php:639 msgid "Show" msgstr "顯示" @@ -455,8 +456,8 @@ msgid "Del" msgstr "刪除" #: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575 -#: server_privileges.php:394 tbl_change.php:890 tbl_indexes.php:264 -#: tbl_select.php:173 +#: server_privileges.php:395 tbl_change.php:909 tbl_indexes.php:264 +#: tbl_select.php:204 msgid "Or" msgstr "或" @@ -485,7 +486,7 @@ msgstr "使用表" msgid "SQL query on database %s:" msgstr "在資料庫 %s 執行 SQL 指令:" -#: db_qbe.php:955 libraries/common.lib.php:1137 +#: db_qbe.php:955 libraries/common.lib.php:1140 msgid "Submit Query" msgstr "送出查詢" @@ -523,8 +524,8 @@ msgid "%s match inside table %s" msgid_plural "%s matches inside table %s" msgstr[0] "%s 筆資料符合 - 於資料表 %s" -#: db_search.php:225 libraries/common.lib.php:2871 -#: libraries/common.lib.php:3059 libraries/common.lib.php:3060 +#: db_search.php:225 libraries/common.lib.php:2923 +#: libraries/common.lib.php:3111 libraries/common.lib.php:3112 #: libraries/tbl_links.inc.php:55 tbl_structure.php:566 msgid "Browse" msgstr "瀏覽" @@ -535,7 +536,7 @@ msgid "Delete the matches for the %s table?" msgstr "刪除 %s 資料表中符合的資料?" #: db_search.php:230 libraries/display_tbl.lib.php:1362 -#: libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:2352 #: libraries/schema/User_Schema.class.php:186 #: libraries/schema/User_Schema.class.php:255 #: libraries/schema/User_Schema.class.php:290 @@ -607,7 +608,7 @@ msgstr "追蹤已啓用" msgid "Tracking is not active." msgstr "追蹤已停用" -#: db_structure.php:374 libraries/display_tbl.lib.php:2226 +#: db_structure.php:374 libraries/display_tbl.lib.php:2236 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -635,22 +636,22 @@ msgid "%s is the default storage engine on this MySQL server." msgstr "%s 是此 MySQL 伺服器的預設儲存引擎" #: db_structure.php:478 db_structure.php:495 db_structure.php:496 -#: libraries/display_tbl.lib.php:2367 libraries/display_tbl.lib.php:2372 +#: libraries/display_tbl.lib.php:2377 libraries/display_tbl.lib.php:2382 #: libraries/mult_submits.inc.php:15 server_databases.php:259 -#: server_databases.php:264 server_privileges.php:1753 tbl_structure.php:554 +#: server_databases.php:264 server_privileges.php:1751 tbl_structure.php:554 #: tbl_structure.php:563 msgid "With selected:" msgstr "選中項:" -#: db_structure.php:481 libraries/display_tbl.lib.php:2362 -#: server_databases.php:261 server_privileges.php:670 -#: server_privileges.php:1756 tbl_structure.php:557 +#: db_structure.php:481 libraries/display_tbl.lib.php:2372 +#: server_databases.php:261 server_privileges.php:671 +#: server_privileges.php:1754 tbl_structure.php:557 msgid "Check All" msgstr "全選" -#: db_structure.php:485 libraries/display_tbl.lib.php:2363 +#: db_structure.php:485 libraries/display_tbl.lib.php:2373 #: libraries/replication_gui.lib.php:35 server_databases.php:263 -#: server_privileges.php:673 server_privileges.php:1760 tbl_structure.php:561 +#: server_privileges.php:674 server_privileges.php:1758 tbl_structure.php:561 msgid "Uncheck All" msgstr "全不選" @@ -658,10 +659,10 @@ msgstr "全不選" msgid "Check tables having overhead" msgstr "僅選擇多餘" -#: db_structure.php:498 libraries/common.lib.php:3072 -#: libraries/common.lib.php:3073 libraries/config/messages.inc.php:164 -#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2380 -#: libraries/display_tbl.lib.php:2518 libraries/server_links.inc.php:65 +#: db_structure.php:498 libraries/common.lib.php:3124 +#: libraries/common.lib.php:3125 libraries/config/messages.inc.php:164 +#: libraries/db_links.inc.php:56 libraries/display_tbl.lib.php:2390 +#: libraries/display_tbl.lib.php:2528 libraries/server_links.inc.php:65 #: libraries/tbl_links.inc.php:80 prefs_manage.php:286 #: server_privileges.php:1441 server_status.php:1485 #: setup/frames/menu.inc.php:21 @@ -669,17 +670,17 @@ msgid "Export" msgstr "匯出" #: db_structure.php:500 db_structure.php:554 -#: libraries/display_tbl.lib.php:2469 tbl_structure.php:609 +#: libraries/display_tbl.lib.php:2479 tbl_structure.php:609 msgid "Print view" msgstr "列印預覽" -#: db_structure.php:504 libraries/common.lib.php:3068 -#: libraries/common.lib.php:3069 +#: db_structure.php:504 libraries/common.lib.php:3120 +#: libraries/common.lib.php:3121 msgid "Empty" msgstr "清空" #: db_structure.php:506 db_tracking.php:104 libraries/Index.class.php:482 -#: libraries/common.lib.php:3066 libraries/common.lib.php:3067 +#: libraries/common.lib.php:3118 libraries/common.lib.php:3119 #: server_databases.php:265 tbl_structure.php:151 tbl_structure.php:152 #: tbl_structure.php:570 msgid "Drop" @@ -727,9 +728,9 @@ msgstr "已追蹤的表" #: libraries/export/sql.php:583 libraries/export/texytext.php:66 #: libraries/export/xml.php:279 libraries/header.inc.php:146 #: libraries/header_printview.inc.php:57 server_databases.php:156 -#: server_privileges.php:1827 server_privileges.php:1888 -#: server_privileges.php:2146 server_status.php:1118 -#: server_synchronize.php:1140 server_synchronize.php:1144 +#: server_privileges.php:1825 server_privileges.php:1886 +#: server_privileges.php:2144 server_status.php:1118 +#: server_synchronize.php:1248 server_synchronize.php:1252 #: tbl_tracking.php:633 msgid "Database" msgstr "資料庫" @@ -748,15 +749,15 @@ msgstr "更新" #: db_tracking.php:89 libraries/rte/rte_events.lib.php:380 #: libraries/rte/rte_list.lib.php:67 libraries/server_links.inc.php:51 -#: server_status.php:1121 sql.php:870 tbl_tracking.php:638 +#: server_status.php:1121 sql.php:880 tbl_tracking.php:638 msgid "Status" msgstr "狀態" #: db_tracking.php:90 libraries/Index.class.php:430 #: libraries/db_structure.lib.php:39 libraries/rte/rte_list.lib.php:52 #: libraries/rte/rte_list.lib.php:61 libraries/rte/rte_list.lib.php:68 -#: server_databases.php:190 server_privileges.php:1699 -#: server_privileges.php:1892 server_privileges.php:2241 tbl_structure.php:212 +#: server_databases.php:190 server_privileges.php:1697 +#: server_privileges.php:1890 server_privileges.php:2239 tbl_structure.php:212 msgid "Action" msgstr "動作" @@ -809,7 +810,7 @@ msgstr "請將資料填入以下欄位" msgid "+ Restart insertion and add a new value" msgstr "+重新執行插入並增加新值" -#: enum_editor.php:67 +#: enum_editor.php:67 gis_data_editor.php:311 msgid "Output" msgstr "輸出" @@ -842,6 +843,95 @@ msgstr "網站伺服器沒有儲存 %s 檔案的權限" msgid "Dump has been saved to file %s." msgstr "備份資料已儲存至檔案 %s." +#: gis_data_editor.php:84 +#, fuzzy, php-format +#| msgid "Values for the column \"%s\"" +msgid "Value for the column \"%s\"" +msgstr "%s 欄位的值" + +#: gis_data_editor.php:113 tbl_gis_visualization.php:172 +msgid "Use OpenStreetMaps as Base Layer" +msgstr "" + +#: gis_data_editor.php:134 +msgid "SRID" +msgstr "" + +#: gis_data_editor.php:151 js/messages.php:289 +#: libraries/display_tbl.lib.php:663 +msgid "Geometry" +msgstr "" + +#: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 +#: gis_data_editor.php:290 js/messages.php:286 +msgid "Point" +msgstr "" + +#: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 +#: gis_data_editor.php:291 js/messages.php:284 +msgid "X" +msgstr "" + +#: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 +#: gis_data_editor.php:293 js/messages.php:285 +msgid "Y" +msgstr "" + +#: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 +#: js/messages.php:292 +#, fuzzy +#| msgid "Add index" +msgid "Add a point" +msgstr "新增索引" + +#: gis_data_editor.php:218 js/messages.php:287 +#, fuzzy +#| msgid "Lines terminated by" +msgid "Linestring" +msgstr "資料分行使用字元:" + +#: gis_data_editor.php:221 gis_data_editor.php:275 +msgid "Outer Ring:" +msgstr "" + +#: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 +msgid "Inner Ring" +msgstr "" + +#: gis_data_editor.php:248 +#, fuzzy +#| msgid "Add a new User" +msgid "Add a linestring" +msgstr "新增新使用者" + +#: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 +#, fuzzy +#| msgid "Add a new User" +msgid "Add an inner ring" +msgstr "新增新使用者" + +#: gis_data_editor.php:262 js/messages.php:288 +msgid "Polygon" +msgstr "" + +#: gis_data_editor.php:300 js/messages.php:294 +#, fuzzy +#| msgid "Add column" +msgid "Add a polygon" +msgstr "新增欄位" + +#: gis_data_editor.php:304 +#, fuzzy +#| msgid "Add a new server" +msgid "Add geometry" +msgstr "新增伺服器" + +#: gis_data_editor.php:312 +msgid "" +"Chose \"GeomFromText\" from the \"Function\" column and paste the below " +"string into the \"Value\" field" +msgstr "" + #: import.php:57 #, php-format msgid "" @@ -886,7 +976,7 @@ msgstr "書籤已被刪除." msgid "Showing bookmark" msgstr "顯示書籤" -#: import.php:401 sql.php:905 +#: import.php:401 sql.php:915 #, php-format msgid "Bookmark %s created" msgstr "已建立書籤 %s" @@ -912,7 +1002,7 @@ msgstr "" "將無法完成匯入操作" #: import.php:452 libraries/Message.class.php:175 -#: libraries/display_tbl.lib.php:2263 libraries/rte/rte_routines.lib.php:1197 +#: libraries/display_tbl.lib.php:2273 libraries/rte/rte_routines.lib.php:1197 #: libraries/sql_query_form.lib.php:113 tbl_operations.php:229 #: tbl_relation.php:289 tbl_row_action.php:126 view_operations.php:60 msgid "Your SQL query has been executed successfully" @@ -936,15 +1026,15 @@ msgstr "點擊選取" msgid "Click to unselect" msgstr "點擊取消" -#: js/messages.php:29 libraries/import.lib.php:102 sql.php:235 +#: js/messages.php:29 libraries/import.lib.php:103 sql.php:245 msgid "\"DROP DATABASE\" statements are disabled." msgstr "已經停用刪除資料庫 (“DROP DATABASE”) 指令" -#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:333 +#: js/messages.php:32 libraries/mult_submits.inc.php:282 sql.php:343 msgid "Do you really want to " msgstr "您真的要" -#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:318 +#: js/messages.php:33 libraries/mult_submits.inc.php:282 sql.php:328 msgid "You are about to DESTROY a complete database!" msgstr "您將要刪除一個完整的資料庫!" @@ -1007,8 +1097,8 @@ msgstr "密碼不能爲空!" msgid "The passwords aren't the same!" msgstr "兩次密碼不一致!" -#: js/messages.php:58 server_privileges.php:1766 server_privileges.php:1790 -#: server_privileges.php:2195 server_privileges.php:2389 +#: js/messages.php:58 server_privileges.php:1764 server_privileges.php:1788 +#: server_privileges.php:2193 server_privileges.php:2387 msgid "Add user" msgstr "新增使用者" @@ -1026,8 +1116,8 @@ msgid "Close" msgstr "關閉" #: js/messages.php:64 js/messages.php:249 libraries/Index.class.php:460 -#: libraries/common.lib.php:580 libraries/common.lib.php:1113 -#: libraries/common.lib.php:3070 libraries/common.lib.php:3071 +#: libraries/common.lib.php:580 libraries/common.lib.php:1116 +#: libraries/common.lib.php:3122 libraries/common.lib.php:3123 #: libraries/config/messages.inc.php:478 libraries/display_tbl.lib.php:1326 #: libraries/schema/User_Schema.class.php:185 setup/frames/index.inc.php:138 msgid "Edit" @@ -1063,12 +1153,12 @@ msgid "Other" msgstr "其他" #. l10n: Thousands separator -#: js/messages.php:75 libraries/common.lib.php:1353 +#: js/messages.php:75 libraries/common.lib.php:1359 msgid "," msgstr "," #. l10n: Decimal separator -#: js/messages.php:77 libraries/common.lib.php:1355 +#: js/messages.php:77 libraries/common.lib.php:1361 msgid "." msgstr "." @@ -1157,12 +1247,12 @@ msgid "System swap" msgstr "" #. l10n: shortcuts for Megabyte -#: js/messages.php:103 libraries/common.lib.php:1303 server_status.php:1565 +#: js/messages.php:103 libraries/common.lib.php:1309 server_status.php:1565 msgid "MiB" msgstr "MB" #. l10n: shortcuts for Kilobyte -#: js/messages.php:104 libraries/common.lib.php:1301 server_status.php:1565 +#: js/messages.php:104 libraries/common.lib.php:1307 server_status.php:1565 msgid "KiB" msgstr "KB" @@ -1267,7 +1357,7 @@ msgstr "" #: js/messages.php:132 libraries/display_export.lib.php:308 #: libraries/display_tbl.lib.php:554 libraries/export/sql.php:1052 #: libraries/tbl_properties.inc.php:544 pmd_general.php:510 -#: server_privileges.php:2042 server_status.php:1155 server_status.php:1582 +#: server_privileges.php:2040 server_status.php:1155 server_status.php:1582 #: tbl_zoom_select.php:158 tbl_zoom_select.php:283 msgid "None" msgstr "無" @@ -1661,8 +1751,8 @@ msgstr "顯示查詢框" msgid "No rows selected" msgstr "沒有選中任何行" -#: js/messages.php:251 libraries/common.lib.php:2531 -#: libraries/display_tbl.lib.php:2375 querywindow.php:90 querywindow.php:94 +#: js/messages.php:251 libraries/common.lib.php:2558 +#: libraries/display_tbl.lib.php:2385 querywindow.php:90 querywindow.php:94 #: querywindow.php:97 tbl_structure.php:150 tbl_structure.php:569 msgid "Change" msgstr "修改" @@ -1676,8 +1766,8 @@ msgstr "最長執行時間" #: js/messages.php:255 libraries/config/FormDisplay.tpl.php:323 #: libraries/schema/User_Schema.class.php:334 #: libraries/tbl_properties.inc.php:752 setup/frames/config.inc.php:39 -#: setup/frames/index.inc.php:228 tbl_change.php:979 -#: tbl_gis_visualization.php:222 tbl_indexes.php:261 tbl_relation.php:563 +#: setup/frames/index.inc.php:228 tbl_change.php:1019 +#: tbl_gis_visualization.php:193 tbl_indexes.php:261 tbl_relation.php:563 msgid "Save" msgstr "儲存" @@ -1689,7 +1779,7 @@ msgstr "隱藏搜尋條件" msgid "Show search criteria" msgstr "顯示搜尋條件" -#: js/messages.php:262 libraries/tbl_select.lib.php:138 +#: js/messages.php:262 libraries/tbl_select.lib.php:150 #, fuzzy #| msgid "Search" msgid "Zoom Search" @@ -1733,105 +1823,113 @@ msgstr "新增/刪除欄位" msgid "Select two different columns" msgstr "" -#: js/messages.php:282 tbl_change.php:307 tbl_indexes.php:211 +#: js/messages.php:282 tbl_change.php:317 tbl_indexes.php:211 #: tbl_indexes.php:238 msgid "Ignore" msgstr "忽略" -#: js/messages.php:285 +#: js/messages.php:283 libraries/display_tbl.lib.php:1327 +msgid "Copy" +msgstr "複製" + +#: js/messages.php:291 +msgid "Outer Ring" +msgstr "" + +#: js/messages.php:297 #, fuzzy #| msgid "Add column" msgid "Add columns" msgstr "新增欄位" -#: js/messages.php:288 +#: js/messages.php:300 msgid "Select referenced key" msgstr "選擇外部鍵" -#: js/messages.php:289 +#: js/messages.php:301 msgid "Select Foreign Key" msgstr "選擇外部鍵" -#: js/messages.php:290 +#: js/messages.php:302 msgid "Please select the primary key or a unique key" msgstr "請選擇主鍵或唯一鍵" -#: js/messages.php:291 pmd_general.php:87 tbl_relation.php:545 +#: js/messages.php:303 pmd_general.php:87 tbl_relation.php:545 msgid "Choose column to display" msgstr "選擇要顯示的欄位" -#: js/messages.php:292 +#: js/messages.php:304 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them.Do you want to continue?" msgstr "你尚未儲存修改的資料。請確認是否要捨棄這些資料?" -#: js/messages.php:295 +#: js/messages.php:307 msgid "Add an option for column " msgstr "新增選項給欄位 " -#: js/messages.php:298 +#: js/messages.php:310 msgid "Press escape to cancel editing" msgstr "" -#: js/messages.php:299 +#: js/messages.php:311 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" msgstr "" -#: js/messages.php:300 +#: js/messages.php:312 msgid "Drag to reorder" msgstr "" -#: js/messages.php:301 +#: js/messages.php:313 #, fuzzy #| msgid "Click to select" msgid "Click to sort" msgstr "點擊選取" -#: js/messages.php:302 +#: js/messages.php:314 msgid "Click to mark/unmark" msgstr "" -#: js/messages.php:303 +#: js/messages.php:315 msgid "Click the drop-down arrow
to toggle column's visibility" msgstr "" -#: js/messages.php:305 +#: js/messages.php:317 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." msgstr "" -#: js/messages.php:306 +#: js/messages.php:318 msgid "" "You can also edit most columns
by clicking directly on their content." msgstr "" -#: js/messages.php:307 +#: js/messages.php:319 #, fuzzy #| msgid "Go to view" msgid "Go to link" msgstr "轉到 view" -#: js/messages.php:310 +#: js/messages.php:322 msgid "Generate password" msgstr "產生密碼" -#: js/messages.php:311 libraries/replication_gui.lib.php:369 +#: js/messages.php:323 libraries/replication_gui.lib.php:369 msgid "Generate" msgstr "產生" -#: js/messages.php:312 +#: js/messages.php:324 msgid "Change Password" msgstr "修改密碼" -#: js/messages.php:315 tbl_structure.php:464 +#: js/messages.php:327 tbl_structure.php:464 msgid "More" msgstr "更多" -#: js/messages.php:318 setup/lib/index.lib.php:173 +#: js/messages.php:330 setup/lib/index.lib.php:173 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -1839,21 +1937,21 @@ msgid "" msgstr "有新的 phpMyAdmin 可用,請考慮升級。最新的版本是 %s,於 %s 發佈" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:320 +#: js/messages.php:332 msgid ", latest stable version:" msgstr ",最新穩定版本: " -#: js/messages.php:321 +#: js/messages.php:333 msgid "up to date" msgstr "最新" #. l10n: Display text for calendar close link -#: js/messages.php:340 +#: js/messages.php:352 msgid "Done" msgstr "完成" # 這應該是使用於選擇日期的月曆 -#: js/messages.php:344 +#: js/messages.php:356 #, fuzzy #| msgid "Prev" msgctxt "Previous month" @@ -1861,7 +1959,7 @@ msgid "Prev" msgstr "上個月" # 這應該使用於選擇日期的小月曆 -#: js/messages.php:349 +#: js/messages.php:361 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -1869,149 +1967,149 @@ msgid "Next" msgstr "下個月" #. l10n: Display text for current month link in calendar -#: js/messages.php:352 +#: js/messages.php:364 msgid "Today" msgstr "今天" -#: js/messages.php:355 +#: js/messages.php:367 msgid "January" msgstr "一月" -#: js/messages.php:356 +#: js/messages.php:368 msgid "February" msgstr "二月" -#: js/messages.php:357 +#: js/messages.php:369 msgid "March" msgstr "三月" -#: js/messages.php:358 +#: js/messages.php:370 msgid "April" msgstr "四月" -#: js/messages.php:359 +#: js/messages.php:371 msgid "May" msgstr "五月" -#: js/messages.php:360 +#: js/messages.php:372 msgid "June" msgstr "六月" -#: js/messages.php:361 +#: js/messages.php:373 msgid "July" msgstr "七月" -#: js/messages.php:362 +#: js/messages.php:374 msgid "August" msgstr "八月" -#: js/messages.php:363 +#: js/messages.php:375 msgid "September" msgstr "九月" -#: js/messages.php:364 +#: js/messages.php:376 msgid "October" msgstr "十月" -#: js/messages.php:365 +#: js/messages.php:377 msgid "November" msgstr "十一月" -#: js/messages.php:366 +#: js/messages.php:378 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:370 libraries/common.lib.php:1503 +#: js/messages.php:382 libraries/common.lib.php:1509 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:372 libraries/common.lib.php:1505 +#: js/messages.php:384 libraries/common.lib.php:1511 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:374 libraries/common.lib.php:1507 +#: js/messages.php:386 libraries/common.lib.php:1513 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:376 libraries/common.lib.php:1509 +#: js/messages.php:388 libraries/common.lib.php:1515 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:378 libraries/common.lib.php:1511 +#: js/messages.php:390 libraries/common.lib.php:1517 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:380 libraries/common.lib.php:1513 +#: js/messages.php:392 libraries/common.lib.php:1519 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:382 libraries/common.lib.php:1515 +#: js/messages.php:394 libraries/common.lib.php:1521 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:384 libraries/common.lib.php:1517 +#: js/messages.php:396 libraries/common.lib.php:1523 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:386 libraries/common.lib.php:1519 +#: js/messages.php:398 libraries/common.lib.php:1525 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:388 libraries/common.lib.php:1521 +#: js/messages.php:400 libraries/common.lib.php:1527 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:390 libraries/common.lib.php:1523 +#: js/messages.php:402 libraries/common.lib.php:1529 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:392 libraries/common.lib.php:1525 +#: js/messages.php:404 libraries/common.lib.php:1531 msgid "Dec" msgstr "十二月" -#: js/messages.php:395 +#: js/messages.php:407 msgid "Sunday" msgstr "星期日" -#: js/messages.php:396 +#: js/messages.php:408 msgid "Monday" msgstr "星期一" -#: js/messages.php:397 +#: js/messages.php:409 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:398 +#: js/messages.php:410 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:399 +#: js/messages.php:411 msgid "Thursday" msgstr "星期四" -#: js/messages.php:400 +#: js/messages.php:412 msgid "Friday" msgstr "星期五" -#: js/messages.php:401 +#: js/messages.php:413 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:405 +#: js/messages.php:417 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2019,87 +2117,92 @@ msgid "Sun" msgstr "週日" #. l10n: Short week day name -#: js/messages.php:407 libraries/common.lib.php:1530 +#: js/messages.php:419 libraries/common.lib.php:1536 msgid "Mon" msgstr "週一" #. l10n: Short week day name -#: js/messages.php:409 libraries/common.lib.php:1532 +#: js/messages.php:421 libraries/common.lib.php:1538 msgid "Tue" msgstr "週二" #. l10n: Short week day name -#: js/messages.php:411 libraries/common.lib.php:1534 +#: js/messages.php:423 libraries/common.lib.php:1540 msgid "Wed" msgstr "週三" #. l10n: Short week day name -#: js/messages.php:413 libraries/common.lib.php:1536 +#: js/messages.php:425 libraries/common.lib.php:1542 msgid "Thu" msgstr "週四" #. l10n: Short week day name -#: js/messages.php:415 libraries/common.lib.php:1538 +#: js/messages.php:427 libraries/common.lib.php:1544 msgid "Fri" msgstr "週五" #. l10n: Short week day name -#: js/messages.php:417 libraries/common.lib.php:1540 +#: js/messages.php:429 libraries/common.lib.php:1546 msgid "Sat" msgstr "週六" #. l10n: Minimal week day name -#: js/messages.php:421 +#: js/messages.php:433 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:423 +#: js/messages.php:435 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:425 +#: js/messages.php:437 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:427 +#: js/messages.php:439 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:429 +#: js/messages.php:441 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:431 +#: js/messages.php:443 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:433 +#: js/messages.php:445 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:435 +#: js/messages.php:447 msgid "Wk" msgstr "周" -#: js/messages.php:437 +#: js/messages.php:449 msgid "Hour" msgstr "時" -#: js/messages.php:438 +#: js/messages.php:450 msgid "Minute" msgstr "分" -#: js/messages.php:439 +#: js/messages.php:451 msgid "Second" msgstr "秒" +#: libraries/Advisor.class.php:145 +#, php-format +msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" +msgstr "" + #: libraries/Config.class.php:1159 msgid "Font size" msgstr "字體大小" @@ -2207,13 +2310,13 @@ msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除 #: libraries/List_Database.class.php:379 libraries/config/messages.inc.php:177 #: libraries/server_links.inc.php:43 server_databases.php:99 -#: server_privileges.php:1827 +#: server_privileges.php:1825 msgid "Databases" msgstr "資料庫" #: libraries/Message.class.php:193 libraries/blobstreaming.lib.php:325 #: libraries/blobstreaming.lib.php:331 libraries/common.lib.php:547 -#: libraries/core.lib.php:210 libraries/import.lib.php:135 tbl_change.php:886 +#: libraries/core.lib.php:210 libraries/import.lib.php:140 tbl_change.php:905 #: tbl_operations.php:229 tbl_relation.php:287 view_operations.php:60 msgid "Error" msgstr "錯誤" @@ -2337,7 +2440,7 @@ msgstr "未找到主題 %s !" msgid "Theme path not found for theme %s!" msgstr "找不到主題 %s 的路徑" -#: libraries/Theme_Manager.class.php:294 themes.php:20 themes.php:27 +#: libraries/Theme_Manager.class.php:296 themes.php:20 themes.php:27 msgid "Theme" msgstr "" @@ -2506,7 +2609,7 @@ msgstr "資料表" #: libraries/config/user_preferences.forms.php:260 #: libraries/config/user_preferences.forms.php:265 #: libraries/export/latex.php:201 libraries/export/sql.php:1052 -#: server_privileges.php:600 server_replication.php:314 tbl_printview.php:281 +#: server_privileges.php:601 server_replication.php:314 tbl_printview.php:281 #: tbl_structure.php:767 msgid "Data" msgstr "資料" @@ -2572,7 +2675,7 @@ msgstr "伺服器 %1$s 主機名稱錯誤, 請檢查設定檔案." #: libraries/common.inc.php:656 libraries/config/messages.inc.php:502 #: libraries/header.inc.php:136 main.php:161 server_status.php:686 -#: server_synchronize.php:1120 +#: server_synchronize.php:1228 msgid "Server" msgstr "伺服器" @@ -2637,101 +2740,101 @@ msgstr "SQL 查詢" msgid "MySQL said: " msgstr "MySQL 返回:" -#: libraries/common.lib.php:1047 +#: libraries/common.lib.php:1050 msgid "Failed to connect to SQL validator!" msgstr "連線到 SQL 檢驗器失敗!" -#: libraries/common.lib.php:1088 libraries/config/messages.inc.php:479 +#: libraries/common.lib.php:1091 libraries/config/messages.inc.php:479 msgid "Explain SQL" msgstr "SQL說明 " -#: libraries/common.lib.php:1092 +#: libraries/common.lib.php:1095 msgid "Skip Explain SQL" msgstr "略過SQL說明 " -#: libraries/common.lib.php:1126 +#: libraries/common.lib.php:1129 msgid "Without PHP Code" msgstr "無 PHP 程式碼" -#: libraries/common.lib.php:1129 libraries/config/messages.inc.php:481 +#: libraries/common.lib.php:1132 libraries/config/messages.inc.php:481 msgid "Create PHP Code" msgstr "建立 PHP 程式碼" -#: libraries/common.lib.php:1147 libraries/config/messages.inc.php:480 +#: libraries/common.lib.php:1151 libraries/config/messages.inc.php:480 #: server_status.php:697 server_status.php:719 server_status.php:738 msgid "Refresh" msgstr "重新整理" -#: libraries/common.lib.php:1156 +#: libraries/common.lib.php:1161 msgid "Skip Validate SQL" msgstr "略過檢驗 SQL" -#: libraries/common.lib.php:1159 libraries/config/messages.inc.php:483 +#: libraries/common.lib.php:1164 libraries/config/messages.inc.php:483 msgid "Validate SQL" msgstr "檢驗 SQL" -#: libraries/common.lib.php:1214 +#: libraries/common.lib.php:1219 msgid "Inline edit of this query" msgstr "在本頁面編輯此查詢" -#: libraries/common.lib.php:1216 +#: libraries/common.lib.php:1221 msgctxt "Inline edit query" msgid "Inline" msgstr "行間" -#: libraries/common.lib.php:1278 sql.php:866 +#: libraries/common.lib.php:1284 sql.php:876 msgid "Profiling" msgstr "概要" #. l10n: shortcuts for Byte -#: libraries/common.lib.php:1299 +#: libraries/common.lib.php:1305 msgid "B" msgstr "B" #. l10n: shortcuts for Gigabyte -#: libraries/common.lib.php:1305 +#: libraries/common.lib.php:1311 msgid "GiB" msgstr "GB" #. l10n: shortcuts for Terabyte -#: libraries/common.lib.php:1307 +#: libraries/common.lib.php:1313 msgid "TiB" msgstr "TB" #. l10n: shortcuts for Petabyte -#: libraries/common.lib.php:1309 +#: libraries/common.lib.php:1315 msgid "PiB" msgstr "PB" #. l10n: shortcuts for Exabyte -#: libraries/common.lib.php:1311 +#: libraries/common.lib.php:1317 msgid "EiB" msgstr "EB" #. l10n: Short week day name -#: libraries/common.lib.php:1528 +#: libraries/common.lib.php:1534 msgctxt "Short week day name" msgid "Sun" msgstr "週日" #. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string -#: libraries/common.lib.php:1544 +#: libraries/common.lib.php:1550 #: libraries/transformations/text_plain__dateformat.inc.php:35 msgid "%B %d, %Y at %I:%M %p" msgstr "%Y 年 %m 月 %d 日 %H:%M" -#: libraries/common.lib.php:1856 +#: libraries/common.lib.php:1865 #, php-format msgid "%s days, %s hours, %s minutes and %s seconds" msgstr "%s 天 %s 小時,%s 分 %s 秒" -#: libraries/common.lib.php:1944 +#: libraries/common.lib.php:1953 #, fuzzy #| msgid "Routines" msgid "Missing parameter:" msgstr "一般" -#: libraries/common.lib.php:2267 libraries/common.lib.php:2270 +#: libraries/common.lib.php:2294 libraries/common.lib.php:2297 #: libraries/display_tbl.lib.php:306 #, fuzzy #| msgid "Begin" @@ -2739,7 +2842,7 @@ msgctxt "First page" msgid "Begin" msgstr "開始" -#: libraries/common.lib.php:2268 libraries/common.lib.php:2271 +#: libraries/common.lib.php:2295 libraries/common.lib.php:2298 #: libraries/display_tbl.lib.php:307 server_binlog.php:135 #: server_binlog.php:137 #, fuzzy @@ -2749,7 +2852,7 @@ msgid "Previous" msgstr "上一個" # 這應該使用於選擇日期的小月曆 -#: libraries/common.lib.php:2297 libraries/common.lib.php:2300 +#: libraries/common.lib.php:2324 libraries/common.lib.php:2327 #: libraries/display_tbl.lib.php:370 server_binlog.php:170 #: server_binlog.php:172 #, fuzzy @@ -2758,7 +2861,7 @@ msgctxt "Next page" msgid "Next" msgstr "下個月" -#: libraries/common.lib.php:2298 libraries/common.lib.php:2301 +#: libraries/common.lib.php:2325 libraries/common.lib.php:2328 #: libraries/display_tbl.lib.php:385 #, fuzzy #| msgid "End" @@ -2766,36 +2869,36 @@ msgctxt "Last page" msgid "End" msgstr "結束" -#: libraries/common.lib.php:2366 +#: libraries/common.lib.php:2393 #, php-format msgid "Jump to database "%s"." msgstr "跳轉到資料庫“%s”" -#: libraries/common.lib.php:2382 +#: libraries/common.lib.php:2409 #, php-format msgid "The %s functionality is affected by a known bug, see %s" msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,參見 %s" -#: libraries/common.lib.php:2538 +#: libraries/common.lib.php:2565 #, fuzzy #| msgid "Click to select" msgid "Click to toggle" msgstr "點擊選取" -#: libraries/common.lib.php:2867 libraries/common.lib.php:2874 -#: libraries/common.lib.php:3065 libraries/config/setup.forms.php:293 +#: libraries/common.lib.php:2919 libraries/common.lib.php:2926 +#: libraries/common.lib.php:3117 libraries/config/setup.forms.php:293 #: libraries/config/setup.forms.php:330 libraries/config/setup.forms.php:356 #: libraries/config/user_preferences.forms.php:192 #: libraries/config/user_preferences.forms.php:229 #: libraries/config/user_preferences.forms.php:255 #: libraries/db_links.inc.php:48 libraries/export/latex.php:338 -#: libraries/import.lib.php:1099 libraries/tbl_links.inc.php:61 +#: libraries/import.lib.php:1119 libraries/tbl_links.inc.php:61 #: libraries/tbl_properties.inc.php:608 pmd_general.php:151 -#: server_privileges.php:600 server_replication.php:313 tbl_tracking.php:253 +#: server_privileges.php:601 server_replication.php:313 tbl_tracking.php:253 msgid "Structure" msgstr "結構" -#: libraries/common.lib.php:2868 libraries/common.lib.php:2875 +#: libraries/common.lib.php:2920 libraries/common.lib.php:2927 #: libraries/config/messages.inc.php:214 libraries/db_links.inc.php:53 #: libraries/export/sql.php:25 libraries/import/sql.php:18 #: libraries/server_links.inc.php:47 libraries/tbl_links.inc.php:65 @@ -2803,37 +2906,37 @@ msgstr "結構" msgid "SQL" msgstr "SQL" -#: libraries/common.lib.php:2870 libraries/common.lib.php:3063 -#: libraries/common.lib.php:3064 libraries/sql_query_form.lib.php:284 +#: libraries/common.lib.php:2922 libraries/common.lib.php:3115 +#: libraries/common.lib.php:3116 libraries/sql_query_form.lib.php:284 #: libraries/sql_query_form.lib.php:287 libraries/tbl_links.inc.php:74 msgid "Insert" msgstr "插入" -#: libraries/common.lib.php:2877 libraries/db_links.inc.php:86 +#: libraries/common.lib.php:2929 libraries/db_links.inc.php:86 #: libraries/tbl_links.inc.php:93 libraries/tbl_links.inc.php:114 #: view_operations.php:87 msgid "Operations" msgstr "操作" -#: libraries/common.lib.php:3009 +#: libraries/common.lib.php:3061 msgid "Browse your computer:" msgstr "從計算機中上傳:" -#: libraries/common.lib.php:3026 +#: libraries/common.lib.php:3078 #, php-format msgid "Select from the web server upload directory %s:" msgstr "選擇 Web 伺服器上傳目錄 %s:" -#: libraries/common.lib.php:3038 libraries/sql_query_form.lib.php:447 -#: tbl_change.php:887 +#: libraries/common.lib.php:3090 libraries/sql_query_form.lib.php:447 +#: tbl_change.php:906 msgid "The directory you set for upload work cannot be reached" msgstr "設定之上傳目錄錯誤,無法使用" -#: libraries/common.lib.php:3046 +#: libraries/common.lib.php:3098 msgid "There are no files to upload" msgstr "沒有可上傳的檔案" -#: libraries/common.lib.php:3074 libraries/common.lib.php:3075 +#: libraries/common.lib.php:3126 libraries/common.lib.php:3127 msgid "Execute" msgstr "" @@ -2999,7 +3102,7 @@ msgstr "允許使用者自訂該值" #: libraries/config/FormDisplay.tpl.php:324 #: libraries/schema/User_Schema.class.php:487 prefs_manage.php:318 -#: prefs_manage.php:323 tbl_change.php:1028 +#: prefs_manage.php:323 tbl_change.php:1068 msgid "Reset" msgstr "重置" @@ -3258,7 +3361,7 @@ msgid "Character set of the file" msgstr "檔案字集" #: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88 -#: tbl_gis_visualization.php:210 tbl_printview.php:340 tbl_structure.php:836 +#: tbl_gis_visualization.php:181 tbl_printview.php:340 tbl_structure.php:836 msgid "Format" msgstr "格式" @@ -4844,7 +4947,7 @@ msgstr "需要啓用 SQL 檢驗器" #: libraries/replication_gui.lib.php:341 libraries/replication_gui.lib.php:345 #: libraries/replication_gui.lib.php:355 server_privileges.php:865 #: server_privileges.php:869 server_privileges.php:880 -#: server_privileges.php:1695 server_synchronize.php:1136 +#: server_privileges.php:1693 server_synchronize.php:1244 msgid "Password" msgstr "密碼" @@ -5132,8 +5235,8 @@ msgid "Designer" msgstr "設計器" #: libraries/db_links.inc.php:93 libraries/server_links.inc.php:60 -#: server_privileges.php:119 server_privileges.php:1889 -#: server_privileges.php:2239 +#: server_privileges.php:119 server_privileges.php:1887 +#: server_privileges.php:2237 msgid "Privileges" msgstr "權限" @@ -5152,7 +5255,7 @@ msgstr "事件" msgid "Triggers" msgstr "觸發器" -#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2112 +#: libraries/db_structure.lib.php:43 libraries/display_tbl.lib.php:2122 msgid "" "May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ " "3.11[/a]" @@ -5212,7 +5315,7 @@ msgid "Create" msgstr "建立" #: libraries/display_create_database.lib.php:43 server_privileges.php:121 -#: server_privileges.php:1580 server_replication.php:33 +#: server_privileges.php:1578 server_replication.php:33 msgid "No Privileges" msgstr "無權限" @@ -5527,12 +5630,12 @@ msgstr "主鍵排序" #: libraries/export/pdf.php:29 libraries/export/php_array.php:29 #: libraries/export/sql.php:88 libraries/export/texytext.php:31 #: libraries/export/xml.php:27 libraries/export/yaml.php:30 -#: libraries/import.lib.php:1078 libraries/import.lib.php:1099 +#: libraries/import.lib.php:1098 libraries/import.lib.php:1119 #: libraries/import/csv.php:33 libraries/import/docsql.php:35 #: libraries/import/ldi.php:49 libraries/import/ods.php:32 -#: libraries/import/sql.php:20 libraries/import/xml.php:25 -#: libraries/rte/rte_routines.lib.php:856 tbl_select.php:152 -#: tbl_structure.php:852 +#: libraries/import/shp.php:17 libraries/import/sql.php:20 +#: libraries/import/xml.php:25 libraries/rte/rte_routines.lib.php:856 +#: tbl_select.php:183 tbl_structure.php:852 msgid "Options" msgstr "選項" @@ -5560,8 +5663,8 @@ msgstr "顯示二進制內容" msgid "Show BLOB contents" msgstr "顯示 BLOB 內容" -#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:319 -#: tbl_change.php:325 +#: libraries/display_tbl.lib.php:658 pmd_general.php:158 tbl_change.php:329 +#: tbl_change.php:335 msgid "Hide" msgstr "隱藏" @@ -5570,10 +5673,6 @@ msgstr "隱藏" msgid "Browser transformation" msgstr "瀏覽器轉換" -#: libraries/display_tbl.lib.php:663 -msgid "Geometry" -msgstr "" - #: libraries/display_tbl.lib.php:664 msgid "Well Known Text" msgstr "" @@ -5582,57 +5681,53 @@ msgstr "" msgid "Well Known Binary" msgstr "" -#: libraries/display_tbl.lib.php:1327 -msgid "Copy" -msgstr "複製" - #: libraries/display_tbl.lib.php:1342 libraries/display_tbl.lib.php:1354 msgid "The row has been deleted" msgstr "已刪除該行" -#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2342 +#: libraries/display_tbl.lib.php:1381 libraries/display_tbl.lib.php:2352 #: server_status.php:1151 msgid "Kill" msgstr "中止" -#: libraries/display_tbl.lib.php:2216 +#: libraries/display_tbl.lib.php:2226 msgid "in query" msgstr "查詢中" -#: libraries/display_tbl.lib.php:2234 +#: libraries/display_tbl.lib.php:2244 msgid "Showing rows" msgstr "顯示行" -#: libraries/display_tbl.lib.php:2244 +#: libraries/display_tbl.lib.php:2254 msgid "total" msgstr "總計" -#: libraries/display_tbl.lib.php:2252 sql.php:703 +#: libraries/display_tbl.lib.php:2262 sql.php:713 #, php-format msgid "Query took %01.4f sec" msgstr "查詢花費 %01.4f 秒" -#: libraries/display_tbl.lib.php:2448 +#: libraries/display_tbl.lib.php:2458 msgid "Query results operations" msgstr "查詢結果選項" -#: libraries/display_tbl.lib.php:2476 +#: libraries/display_tbl.lib.php:2486 msgid "Print view (with full texts)" msgstr "列印預覽 (全文顯示)" -#: libraries/display_tbl.lib.php:2524 tbl_chart.php:86 +#: libraries/display_tbl.lib.php:2534 tbl_chart.php:86 msgid "Display chart" msgstr "顯示圖表" -#: libraries/display_tbl.lib.php:2539 +#: libraries/display_tbl.lib.php:2549 msgid "Visualize GIS data" msgstr "" -#: libraries/display_tbl.lib.php:2559 +#: libraries/display_tbl.lib.php:2569 msgid "Create view" msgstr "新建視圖" -#: libraries/display_tbl.lib.php:2661 +#: libraries/display_tbl.lib.php:2671 msgid "Link not found" msgstr "找不到連結" @@ -5821,7 +5916,7 @@ msgid "The percentage of garbage in a repository file before it is compacted." msgstr "在庫檔案被壓縮之前垃圾資料所佔的比率" #: libraries/engines/pbms.lib.php:35 libraries/replication_gui.lib.php:70 -#: server_synchronize.php:1124 +#: server_synchronize.php:1232 msgid "Port" msgstr "連接埠" @@ -6142,7 +6237,7 @@ msgstr "顯示 MIME 類型" #: libraries/replication_gui.lib.php:275 libraries/replication_gui.lib.php:278 #: libraries/replication_gui.lib.php:335 server_privileges.php:800 #: server_privileges.php:803 server_privileges.php:859 -#: server_privileges.php:1694 server_privileges.php:2237 +#: server_privileges.php:1692 server_privileges.php:2235 #: server_status.php:1117 msgid "Host" msgstr "主機" @@ -6349,7 +6444,7 @@ msgstr "匯出內容" msgid "Open new phpMyAdmin window" msgstr "開啟新 phpMyAdmin 視窗" -#: libraries/gis_visualization.lib.php:129 +#: libraries/gis_visualization.lib.php:134 #, fuzzy #| msgid "No data found for the chart." msgid "No data found for GIS visualization." @@ -6363,54 +6458,54 @@ msgstr "SQL 查詢結果" msgid "Generated by" msgstr "產生者" -#: libraries/import.lib.php:152 libraries/rte/rte_routines.lib.php:1241 -#: sql.php:699 tbl_change.php:183 tbl_get_field.php:34 +#: libraries/import.lib.php:157 libraries/rte/rte_routines.lib.php:1241 +#: sql.php:709 tbl_change.php:193 tbl_get_field.php:34 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查詢結果爲空 (即零行)" -#: libraries/import.lib.php:1074 +#: libraries/import.lib.php:1094 msgid "" "The following structures have either been created or altered. Here you can:" msgstr "下列結構被建立或修改。您可以:" -#: libraries/import.lib.php:1075 +#: libraries/import.lib.php:1095 #, 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:1076 +#: libraries/import.lib.php:1096 msgid "" "Change any of its settings by clicking the corresponding \"Options\" link" msgstr "點選相應的“選項”連結修改它的設定" -#: libraries/import.lib.php:1077 +#: libraries/import.lib.php:1097 #, fuzzy #| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "點選“結構”連結編輯它的結構" -#: libraries/import.lib.php:1080 +#: libraries/import.lib.php:1100 msgid "Go to database" msgstr "轉到資料庫" -#: libraries/import.lib.php:1083 libraries/import.lib.php:1106 +#: libraries/import.lib.php:1103 libraries/import.lib.php:1126 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Edit settings for %s" msgstr "在 %s 中丟失資料" -#: libraries/import.lib.php:1101 +#: libraries/import.lib.php:1121 msgid "Go to table" msgstr "轉到資料表" -#: libraries/import.lib.php:1104 +#: libraries/import.lib.php:1124 #, fuzzy, php-format #| msgid "Structure only" msgid "Structure of %s" msgstr "僅結構" -#: libraries/import.lib.php:1110 +#: libraries/import.lib.php:1130 msgid "Go to view" msgstr "轉到 view" @@ -6463,7 +6558,7 @@ msgid "DocSQL" msgstr "DocSQL" #: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:583 -#: server_synchronize.php:404 server_synchronize.php:831 +#: server_synchronize.php:439 server_synchronize.php:911 msgid "Table name" msgstr "資料資料表名稱" @@ -6484,6 +6579,32 @@ msgstr "匯入百分數爲小數 (如: 12.00% 將被匯入爲 .12)" msgid "Import currencies (ex. $5.00 to 5.00)" msgstr "匯入貨幣 (如: $5.00 將被匯入爲 5.00)" +#: libraries/import/shp.php:14 +msgid "ESRI Shape File" +msgstr "" + +#: libraries/import/shp.php:254 +#, php-format +msgid "There was an error importing the ESRI shape file: \"%s\"." +msgstr "" + +#: libraries/import/shp.php:310 +msgid "" +"You tried to import an invalid file or the imported file contains invalid " +"data" +msgstr "" + +#: libraries/import/shp.php:312 +#, php-format +msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." +msgstr "" + +#: libraries/import/shp.php:350 +#, fuzzy +#| msgid "This page does not contain any tables!" +msgid "The imported file does not contain any data" +msgstr "此頁沒有包含任何資料表!" + #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" msgstr "SQL 相容模式:" @@ -6531,7 +6652,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:488 tbl_replace.php:313 +#: libraries/mult_submits.inc.php:488 tbl_replace.php:344 msgid "No change" msgstr "無更改" @@ -6540,7 +6661,7 @@ msgid "Charset" msgstr "字集" #: libraries/mysql_charsets.lib.php:202 libraries/mysql_charsets.lib.php:403 -#: tbl_change.php:556 +#: tbl_change.php:573 msgid "Binary" msgstr "二進制" @@ -6847,7 +6968,7 @@ msgstr "" #: libraries/replication_gui.lib.php:255 libraries/replication_gui.lib.php:258 #: libraries/replication_gui.lib.php:265 server_privileges.php:780 #: server_privileges.php:783 server_privileges.php:790 -#: server_synchronize.php:1132 +#: server_synchronize.php:1240 msgid "User name" msgstr "帳號" @@ -6865,9 +6986,9 @@ msgid "Variable" msgstr "變數" #: libraries/replication_gui.lib.php:119 -#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:113 +#: libraries/rte/rte_routines.lib.php:1363 libraries/tbl_select.lib.php:125 #: pmd_general.php:476 pmd_general.php:535 pmd_general.php:658 -#: pmd_general.php:775 server_status.php:1363 tbl_change.php:329 +#: pmd_general.php:775 server_status.php:1363 tbl_change.php:339 #: tbl_printview.php:334 tbl_structure.php:828 tbl_zoom_select.php:410 msgid "Value" msgstr "值" @@ -6893,7 +7014,7 @@ msgstr "任意使用者" #: libraries/replication_gui.lib.php:261 libraries/replication_gui.lib.php:329 #: libraries/replication_gui.lib.php:352 server_privileges.php:786 #: server_privileges.php:853 server_privileges.php:877 -#: server_privileges.php:2095 server_privileges.php:2125 +#: server_privileges.php:2093 server_privileges.php:2123 msgid "Use text field" msgstr "使用文字域" @@ -7087,7 +7208,7 @@ msgid "Returns" msgstr "返回類型" #: libraries/rte/rte_list.lib.php:62 libraries/rte/rte_triggers.lib.php:326 -#: server_status.php:1120 sql.php:871 +#: server_status.php:1120 sql.php:881 msgid "Time" msgstr "時間" @@ -7243,8 +7364,8 @@ msgstr "" msgid "Routine parameters" msgstr "一般" -#: libraries/rte/rte_routines.lib.php:1361 tbl_change.php:287 -#: tbl_change.php:325 +#: libraries/rte/rte_routines.lib.php:1361 libraries/tbl_select.lib.php:117 +#: tbl_change.php:297 tbl_change.php:335 msgid "Function" msgstr "函數" @@ -7563,8 +7684,8 @@ msgstr "未知的語言:%1$s." msgid "Current Server" msgstr "目前伺服器" -#: libraries/server_links.inc.php:79 server_synchronize.php:1037 -#: server_synchronize.php:1045 +#: libraries/server_links.inc.php:79 server_synchronize.php:1144 +#: server_synchronize.php:1152 msgid "Synchronize" msgstr "同步" @@ -7586,7 +7707,7 @@ msgstr "字集" msgid "Engines" msgstr "引擎" -#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1061 +#: libraries/server_synchronize.lib.php:1286 server_synchronize.php:1168 msgid "Source database" msgstr "來源資料庫" @@ -7604,7 +7725,7 @@ msgstr "遠程伺服器" msgid "Difference" msgstr "差異" -#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1063 +#: libraries/server_synchronize.lib.php:1294 server_synchronize.php:1170 msgid "Target database" msgstr "目標資料庫" @@ -7627,11 +7748,11 @@ msgstr "清除" msgid "Columns" msgstr "字段" -#: libraries/sql_query_form.lib.php:302 sql.php:944 sql.php:961 +#: libraries/sql_query_form.lib.php:302 sql.php:954 sql.php:971 msgid "Bookmark this SQL query" msgstr "將此 SQL 查詢加爲書籤" -#: libraries/sql_query_form.lib.php:309 sql.php:955 +#: libraries/sql_query_form.lib.php:309 sql.php:965 msgid "Let every user access this bookmark" msgstr "讓所有使用者均可訪問此書籤" @@ -7659,7 +7780,7 @@ msgstr "僅查看" msgid "Location of the text file" msgstr "文字檔案的位置" -#: libraries/sql_query_form.lib.php:450 tbl_change.php:890 +#: libraries/sql_query_form.lib.php:450 tbl_change.php:909 msgid "web server upload directory" msgstr "網站伺服器上傳資料夾" @@ -7841,23 +7962,29 @@ msgid "+ Add a value" msgstr "+ 增加" #: libraries/tbl_select.lib.php:26 libraries/tbl_select.lib.php:27 -#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:98 -#: tbl_change.php:257 +#: libraries/tbl_select.lib.php:30 libraries/tbl_select.lib.php:34 sql.php:108 +#: tbl_change.php:267 msgid "Browse foreign values" msgstr "瀏覽不相關的值" -#: libraries/tbl_select.lib.php:112 pmd_general.php:487 pmd_general.php:507 +#: libraries/tbl_select.lib.php:124 pmd_general.php:487 pmd_general.php:507 #: pmd_general.php:629 pmd_general.php:642 pmd_general.php:705 #: pmd_general.php:759 msgid "Operator" msgstr "運算符" -#: libraries/tbl_select.lib.php:131 +#: libraries/tbl_select.lib.php:143 #, fuzzy #| msgid "Search" msgid "Table Search" msgstr "搜尋" +#: libraries/tbl_select.lib.php:229 tbl_change.php:994 +#, fuzzy +#| msgid "Insert" +msgid "Edit/Insert" +msgstr "插入" + #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" "Displays a link to download the binary data of the column. You can use the " @@ -8001,8 +8128,8 @@ msgstr "您的瀏覽器中有目前域的 phpMyAdmin 設定。是否匯入到目 msgid "No files found inside ZIP archive!" msgstr "ZIP 包中未找到檔案!" -#: libraries/zip_extension.lib.php:48 libraries/zip_extension.lib.php:50 -#: libraries/zip_extension.lib.php:65 +#: libraries/zip_extension.lib.php:52 libraries/zip_extension.lib.php:54 +#: libraries/zip_extension.lib.php:69 msgid "Error in ZIP archive:" msgstr "ZIP 包中有錯誤:" @@ -8026,8 +8153,8 @@ msgstr "更多設定" msgid "Protocol version" msgstr "協定版本" -#: main.php:165 server_privileges.php:1539 server_privileges.php:1693 -#: server_privileges.php:1817 server_privileges.php:2236 +#: main.php:165 server_privileges.php:1537 server_privileges.php:1691 +#: server_privileges.php:1815 server_privileges.php:2234 #: server_status.php:1116 msgid "User" msgstr "使用者" @@ -8167,7 +8294,7 @@ msgid "" "issues." msgstr "伺服器上運行了 Suhosin。請先查看%s檔案%s中是否有類似的情況" -#: navigation.php:180 server_databases.php:280 server_synchronize.php:1152 +#: navigation.php:180 server_databases.php:280 server_synchronize.php:1260 msgid "No databases" msgstr "無資料庫" @@ -8194,7 +8321,7 @@ msgstr "顯示/隱藏左側選單" msgid "Save position" msgstr "儲存位置" -#: pmd_general.php:81 server_synchronize.php:405 server_synchronize.php:832 +#: pmd_general.php:81 server_synchronize.php:440 server_synchronize.php:912 msgid "Create table" msgstr "建立資料表" @@ -8528,96 +8655,96 @@ msgstr "儲存引擎" msgid "View dump (schema) of databases" msgstr "查看資料庫的轉存(大綱)" -#: server_privileges.php:32 server_privileges.php:363 +#: server_privileges.php:32 server_privileges.php:364 msgid "Includes all privileges except GRANT." msgstr "除了授權 (GRANT) 以外的所有權限" #: server_privileges.php:33 server_privileges.php:241 -#: server_privileges.php:616 +#: server_privileges.php:617 msgid "Allows altering the structure of existing tables." msgstr "允許修改現有資料表的結構" #: server_privileges.php:34 server_privileges.php:299 -#: server_privileges.php:622 +#: server_privileges.php:623 msgid "Allows altering and dropping stored routines." msgstr "允許修改或刪除 Procedure" #: server_privileges.php:35 server_privileges.php:209 -#: server_privileges.php:615 +#: server_privileges.php:616 msgid "Allows creating new databases and tables." msgstr "允許建立新資料庫和資料表" #: server_privileges.php:36 server_privileges.php:295 -#: server_privileges.php:621 +#: server_privileges.php:622 msgid "Allows creating stored routines." msgstr "允許建立 stored routines " -#: server_privileges.php:37 server_privileges.php:615 +#: server_privileges.php:37 server_privileges.php:616 msgid "Allows creating new tables." msgstr "允許建立新資料表" #: server_privileges.php:38 server_privileges.php:253 -#: server_privileges.php:619 +#: server_privileges.php:620 msgid "Allows creating temporary tables." msgstr "允許建立臨時表" #: server_privileges.php:39 server_privileges.php:303 -#: server_privileges.php:655 +#: server_privileges.php:656 msgid "Allows creating, dropping and renaming user accounts." msgstr "允許建立、刪除和重命名使用者帳號" #: server_privileges.php:40 server_privileges.php:269 -#: server_privileges.php:282 server_privileges.php:627 -#: server_privileges.php:631 +#: server_privileges.php:282 server_privileges.php:628 +#: server_privileges.php:632 msgid "Allows creating new views." msgstr "允許建立 views " #: server_privileges.php:41 server_privileges.php:205 -#: server_privileges.php:607 +#: server_privileges.php:608 msgid "Allows deleting data." msgstr "允許刪除資料" #: server_privileges.php:42 server_privileges.php:213 -#: server_privileges.php:618 +#: server_privileges.php:619 msgid "Allows dropping databases and tables." msgstr "允許刪除資料庫和資料表" -#: server_privileges.php:43 server_privileges.php:618 +#: server_privileges.php:43 server_privileges.php:619 msgid "Allows dropping tables." msgstr "允許刪除資料表" #: server_privileges.php:44 server_privileges.php:273 -#: server_privileges.php:635 +#: server_privileges.php:636 msgid "Allows to set up events for the event scheduler" msgstr "允許爲事件觸發器設定事件" #: server_privileges.php:45 server_privileges.php:307 -#: server_privileges.php:623 +#: server_privileges.php:624 msgid "Allows executing stored routines." msgstr "允許運行 Procedure" #: server_privileges.php:46 server_privileges.php:229 -#: server_privileges.php:610 +#: server_privileges.php:611 msgid "Allows importing data from and exporting data into files." msgstr "允許從檔案中匯入資料以及將資料匯出至檔案" -#: server_privileges.php:47 server_privileges.php:641 +#: server_privileges.php:47 server_privileges.php:642 msgid "" "Allows adding users and privileges without reloading the privilege tables." msgstr "允許新增使用者和權限,而不允許重新載入權限表" #: server_privileges.php:48 server_privileges.php:237 -#: server_privileges.php:617 +#: server_privileges.php:618 msgid "Allows creating and dropping indexes." msgstr "允許建立和刪除索引" #: server_privileges.php:49 server_privileges.php:197 -#: server_privileges.php:541 server_privileges.php:605 +#: server_privileges.php:542 server_privileges.php:606 msgid "Allows inserting and replacing data." msgstr "允許插入和替換資料" #: server_privileges.php:50 server_privileges.php:257 -#: server_privileges.php:650 +#: server_privileges.php:651 msgid "Allows locking tables for the current thread." msgstr "允許鎖定目前程序的表" @@ -8644,52 +8771,52 @@ msgid "Limits the number of simultaneous connections the user may have." msgstr "限制該使用者的同時連線數" #: server_privileges.php:55 server_privileges.php:225 -#: server_privileges.php:645 +#: server_privileges.php:646 msgid "Allows viewing processes of all users" msgstr "允許查看所有使用者的程序" #: server_privileges.php:56 server_privileges.php:233 -#: server_privileges.php:547 server_privileges.php:651 +#: server_privileges.php:548 server_privileges.php:652 msgid "Has no effect in this MySQL version." msgstr "在此版本的 MySQL 中無效" #: server_privileges.php:57 server_privileges.php:217 -#: server_privileges.php:646 +#: server_privileges.php:647 msgid "Allows reloading server settings and flushing the server's caches." msgstr "允許重新載入伺服器設定並重新整理伺服器的快取" #: server_privileges.php:58 server_privileges.php:265 -#: server_privileges.php:653 +#: server_privileges.php:654 msgid "Allows the user to ask where the slaves / masters are." msgstr "使用者有權詢問附屬者/控制者在哪裏" #: server_privileges.php:59 server_privileges.php:261 -#: server_privileges.php:654 +#: server_privileges.php:655 msgid "Needed for the replication slaves." msgstr "replication slaves所需" #: server_privileges.php:60 server_privileges.php:193 -#: server_privileges.php:538 server_privileges.php:604 +#: server_privileges.php:539 server_privileges.php:605 msgid "Allows reading data." msgstr "允許讀取資料" #: server_privileges.php:61 server_privileges.php:245 -#: server_privileges.php:648 +#: server_privileges.php:649 msgid "Gives access to the complete list of databases." msgstr "允許訪問完整的資料庫列表" #: server_privileges.php:62 server_privileges.php:286 -#: server_privileges.php:291 server_privileges.php:620 +#: server_privileges.php:291 server_privileges.php:621 msgid "Allows performing SHOW CREATE VIEW queries." msgstr "允許執行 SHOW CREATE VIEW 查詢" #: server_privileges.php:63 server_privileges.php:221 -#: server_privileges.php:647 +#: server_privileges.php:648 msgid "Allows shutting down the server." msgstr "允許關閉伺服器" #: server_privileges.php:64 server_privileges.php:249 -#: server_privileges.php:644 +#: server_privileges.php:645 msgid "" "Allows connecting, even if maximum number of connections is reached; " "required for most administrative operations like setting global variables or " @@ -8699,43 +8826,43 @@ msgstr "" "的管理操作是必需的" #: server_privileges.php:65 server_privileges.php:277 -#: server_privileges.php:636 +#: server_privileges.php:637 msgid "Allows creating and dropping triggers" msgstr "允許建立和刪除 triggers" #: server_privileges.php:66 server_privileges.php:201 -#: server_privileges.php:544 server_privileges.php:606 +#: server_privileges.php:545 server_privileges.php:607 msgid "Allows changing data." msgstr "允許修改資料" -#: server_privileges.php:67 server_privileges.php:357 +#: server_privileges.php:67 server_privileges.php:358 msgid "No privileges." msgstr "無權限" -#: server_privileges.php:399 server_privileges.php:400 +#: server_privileges.php:400 server_privileges.php:401 msgctxt "None privileges" msgid "None" msgstr "無" -#: server_privileges.php:530 server_privileges.php:667 -#: server_privileges.php:1885 server_privileges.php:1891 +#: server_privileges.php:531 server_privileges.php:668 +#: server_privileges.php:1883 server_privileges.php:1889 msgid "Table-specific privileges" msgstr "按表指定權限" -#: server_privileges.php:531 server_privileges.php:675 -#: server_privileges.php:1697 +#: server_privileges.php:532 server_privileges.php:676 +#: server_privileges.php:1695 msgid "Note: MySQL privilege names are expressed in English" msgstr "注意:MySQL 權限名稱會以英文顯示 " -#: server_privileges.php:600 +#: server_privileges.php:601 msgid "Administration" msgstr "管理" -#: server_privileges.php:664 server_privileges.php:1696 +#: server_privileges.php:665 server_privileges.php:1694 msgid "Global privileges" msgstr "全域權限" -#: server_privileges.php:666 server_privileges.php:1885 +#: server_privileges.php:667 server_privileges.php:1883 msgid "Database-specific privileges" msgstr "按資料庫指定權限" @@ -8755,7 +8882,7 @@ msgstr "登錄資訊" msgid "Do not change the password" msgstr "保持原密碼" -#: server_privileges.php:904 server_privileges.php:2373 +#: server_privileges.php:904 server_privileges.php:2371 msgid "No user found." msgstr "未找到使用者" @@ -8804,7 +8931,7 @@ msgstr "已成功刪除選中的使用者" msgid "The privileges were reloaded successfully." msgstr "已成功重新載入權限" -#: server_privileges.php:1424 server_privileges.php:1816 +#: server_privileges.php:1424 server_privileges.php:1814 msgid "Edit Privileges" msgstr "編輯權限" @@ -8812,34 +8939,34 @@ msgstr "編輯權限" msgid "Revoke" msgstr "移除" -#: server_privileges.php:1460 server_privileges.php:1717 -#: server_privileges.php:2330 +#: server_privileges.php:1460 server_privileges.php:1715 +#: server_privileges.php:2328 msgid "Any" msgstr "任意" -#: server_privileges.php:1557 +#: server_privileges.php:1555 msgid "User overview" msgstr "查看使用者" -#: server_privileges.php:1698 server_privileges.php:1890 -#: server_privileges.php:2240 +#: server_privileges.php:1696 server_privileges.php:1888 +#: server_privileges.php:2238 msgid "Grant" msgstr "授權" -#: server_privileges.php:1771 +#: server_privileges.php:1769 msgid "Remove selected users" msgstr "刪除選中的使用者" -#: server_privileges.php:1774 +#: server_privileges.php:1772 msgid "Revoke all active privileges from the users and delete them afterwards." msgstr "移除使用者所有權限,然後刪除使用者" -#: server_privileges.php:1775 server_privileges.php:1776 -#: server_privileges.php:1777 +#: server_privileges.php:1773 server_privileges.php:1774 +#: server_privileges.php:1775 msgid "Drop the databases that have the same names as the users." msgstr "刪除與使用者同名的資料庫" -#: server_privileges.php:1798 +#: server_privileges.php:1796 #, php-format msgid "" "Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege " @@ -8851,93 +8978,93 @@ msgstr "" "內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入" "權限%s" -#: server_privileges.php:1851 +#: server_privileges.php:1849 msgid "The selected user was not found in the privilege table." msgstr "在權限表內找不到選中的使用者" -#: server_privileges.php:1891 +#: server_privileges.php:1889 msgid "Column-specific privileges" msgstr "按欄位指定權限" -#: server_privileges.php:2092 +#: server_privileges.php:2090 msgid "Add privileges on the following database" msgstr "在下列資料庫新增權限" -#: server_privileges.php:2110 +#: server_privileges.php:2108 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "要使用萬用字元 _ 和 % 本身,應使用用 \\ 轉義" -#: server_privileges.php:2113 +#: server_privileges.php:2111 msgid "Add privileges on the following table" msgstr "在下列資料表新增權限" -#: server_privileges.php:2170 +#: server_privileges.php:2168 msgid "Change Login Information / Copy User" msgstr "修改登錄資訊/複製使用者" -#: server_privileges.php:2173 +#: server_privileges.php:2171 msgid "Create a new user with the same privileges and ..." msgstr "建立具有相同權限的新使用者然後 ..." -#: server_privileges.php:2175 +#: server_privileges.php:2173 msgid "... keep the old one." msgstr "... 保留舊使用者" -#: server_privileges.php:2176 +#: server_privileges.php:2174 msgid "... delete the old one from the user tables." msgstr "... 從使用者資料表中刪除舊使用者" -#: server_privileges.php:2177 +#: server_privileges.php:2175 msgid "" "... revoke all active privileges from the old one and delete it afterwards." msgstr "... 移除舊使用者的所有權限,然後刪除舊使用者" -#: server_privileges.php:2178 +#: server_privileges.php:2176 msgid "" "... delete the old one from the user tables and reload the privileges " "afterwards." msgstr "... 從使用者資料表中刪除舊使用者,然後重新載入權限" -#: server_privileges.php:2201 +#: server_privileges.php:2199 msgid "Database for user" msgstr "使用者資料庫" -#: server_privileges.php:2205 +#: server_privileges.php:2203 msgctxt "Create none database for user" msgid "None" msgstr "無" -#: server_privileges.php:2206 +#: server_privileges.php:2204 msgid "Create database with same name and grant all privileges" msgstr "建立與使用者同名的資料庫並授予所有權限" -#: server_privileges.php:2207 +#: server_privileges.php:2205 msgid "Grant all privileges on wildcard name (username\\_%)" msgstr "給以 帳號_ 開頭的資料庫 (username\\_%) 授予所有權限" -#: server_privileges.php:2210 +#: server_privileges.php:2208 #, php-format msgid "Grant all privileges on database "%s"" msgstr "授予資料庫“%s”的所有權限" -#: server_privileges.php:2233 +#: server_privileges.php:2231 #, php-format msgid "Users having access to "%s"" msgstr "使用者可以訪問“%s”" -#: server_privileges.php:2341 +#: server_privileges.php:2339 msgid "global" msgstr "全域" -#: server_privileges.php:2343 +#: server_privileges.php:2341 msgid "database-specific" msgstr "按資料庫指定" -#: server_privileges.php:2345 +#: server_privileges.php:2343 msgid "wildcard" msgstr "萬用字元" -#: server_privileges.php:2382 +#: server_privileges.php:2380 #, fuzzy #| msgid "View %s has been dropped" msgid "User has been added." @@ -10187,111 +10314,111 @@ msgid "%d minute" msgid_plural "%d minutes" msgstr[0] "分" -#: server_synchronize.php:92 +#: server_synchronize.php:99 msgid "Could not connect to the source" msgstr "無法連線到來源資料庫" -#: server_synchronize.php:95 +#: server_synchronize.php:102 msgid "Could not connect to the target" msgstr "無法連線到目標資料庫" -#: server_synchronize.php:120 server_synchronize.php:123 tbl_create.php:50 +#: server_synchronize.php:128 server_synchronize.php:131 tbl_create.php:50 #: tbl_get_field.php:19 #, php-format msgid "'%s' database does not exist." msgstr "資料庫 '%s' 不存在" -#: server_synchronize.php:262 +#: server_synchronize.php:280 msgid "Structure Synchronization" msgstr "結構同步" -#: server_synchronize.php:266 +#: server_synchronize.php:284 msgid "Data Synchronization" msgstr "資料同步" -#: server_synchronize.php:366 server_synchronize.php:772 +#: server_synchronize.php:399 server_synchronize.php:850 msgid "not present" msgstr "未找到" -#: server_synchronize.php:400 server_synchronize.php:827 +#: server_synchronize.php:435 server_synchronize.php:907 msgid "Structure Difference" msgstr "結構差異" -#: server_synchronize.php:401 server_synchronize.php:828 +#: server_synchronize.php:436 server_synchronize.php:908 msgid "Data Difference" msgstr "資料差異" -#: server_synchronize.php:406 server_synchronize.php:833 +#: server_synchronize.php:441 server_synchronize.php:913 msgid "Add column(s)" msgstr "新增欄位" -#: server_synchronize.php:407 server_synchronize.php:834 +#: server_synchronize.php:442 server_synchronize.php:914 msgid "Remove column(s)" msgstr "刪除欄位" -#: server_synchronize.php:408 server_synchronize.php:835 +#: server_synchronize.php:443 server_synchronize.php:915 msgid "Alter column(s)" msgstr "修改欄位" -#: server_synchronize.php:409 server_synchronize.php:836 +#: server_synchronize.php:444 server_synchronize.php:916 msgid "Remove index(s)" msgstr "刪除索引" -#: server_synchronize.php:410 server_synchronize.php:837 +#: server_synchronize.php:445 server_synchronize.php:917 msgid "Apply index(s)" msgstr "增加索引" -#: server_synchronize.php:411 server_synchronize.php:838 +#: server_synchronize.php:446 server_synchronize.php:918 msgid "Update row(s)" msgstr "更新行" -#: server_synchronize.php:412 server_synchronize.php:839 +#: server_synchronize.php:447 server_synchronize.php:919 msgid "Insert row(s)" msgstr "增加行" -#: server_synchronize.php:422 server_synchronize.php:850 +#: server_synchronize.php:458 server_synchronize.php:931 msgid "Would you like to delete all the previous rows from target tables?" msgstr "您希望刪除目前目標資料表中的所有資料嗎?" -#: server_synchronize.php:425 server_synchronize.php:854 +#: server_synchronize.php:463 server_synchronize.php:936 msgid "Apply Selected Changes" msgstr "套用選中的修改" -#: server_synchronize.php:427 server_synchronize.php:856 +#: server_synchronize.php:467 server_synchronize.php:939 msgid "Synchronize Databases" msgstr "同步資料庫" -#: server_synchronize.php:440 +#: server_synchronize.php:481 msgid "Selected target tables have been synchronized with source tables." msgstr "選中的資料表已根據來源資料表同步" -#: server_synchronize.php:902 +#: server_synchronize.php:986 msgid "Target database has been synchronized with source database" msgstr "已根據來源資料庫同步目標資料庫" -#: server_synchronize.php:951 +#: server_synchronize.php:1038 #, fuzzy msgid "Executed queries" msgstr "SQL 查詢" -#: server_synchronize.php:1076 +#: server_synchronize.php:1184 msgid "Enter manually" msgstr "手動輸入" -#: server_synchronize.php:1084 +#: server_synchronize.php:1192 msgid "Current connection" msgstr "目前連線" -#: server_synchronize.php:1113 +#: server_synchronize.php:1221 #, php-format msgid "Configuration: %s" msgstr "設定: %s" -#: server_synchronize.php:1128 +#: server_synchronize.php:1236 msgid "Socket" msgstr "連線埠" -#: server_synchronize.php:1174 +#: server_synchronize.php:1282 msgid "" "Target database will be completely synchronized with source database. Source " "database will remain unchanged." @@ -10605,34 +10732,34 @@ msgstr "短語密碼太短,至少應有 8 個字元" msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元" -#: sql.php:203 +#: sql.php:213 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用書籤 \"%s\" 作爲預設的查詢" -#: sql.php:675 tbl_replace.php:369 +#: sql.php:685 tbl_replace.php:400 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" -#: sql.php:692 +#: sql.php:702 msgid "Showing as PHP code" msgstr "顯示爲 PHP 程式碼" -#: sql.php:695 tbl_replace.php:343 +#: sql.php:705 tbl_replace.php:374 msgid "Showing SQL query" msgstr "顯示 SQL 查詢" -#: sql.php:697 +#: sql.php:707 msgid "Validated SQL" msgstr "已校驗的 SQL" -#: sql.php:918 +#: sql.php:928 #, php-format msgid "Problems with indexes of table `%s`" msgstr "資料表 `%s` 的索引存在問題" -#: sql.php:949 +#: sql.php:959 msgid "Label" msgstr "標籤" @@ -10641,60 +10768,60 @@ msgstr "標籤" msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s " -#: tbl_change.php:683 +#: tbl_change.php:700 msgid "Because of its length,
this column might not be editable" msgstr "因長度問題,
該欄位可能無法編輯 " -#: tbl_change.php:800 +#: tbl_change.php:819 msgid "Remove BLOB Repository Reference" msgstr "刪除 BLOB 容器功能" -#: tbl_change.php:806 +#: tbl_change.php:823 msgid "Binary - do not edit" msgstr "二進制 - 無法編輯" -#: tbl_change.php:854 +#: tbl_change.php:873 msgid "Upload to BLOB repository" msgstr "上傳到 BLOB 容器" -#: tbl_change.php:983 +#: tbl_change.php:1023 msgid "Insert as new row" msgstr "以新行插入" -#: tbl_change.php:984 +#: tbl_change.php:1024 msgid "Insert as new row and ignore errors" msgstr "以新行插入 (忽略錯誤)" -#: tbl_change.php:985 +#: tbl_change.php:1025 msgid "Show insert query" msgstr "顯示插入指令" -#: tbl_change.php:996 +#: tbl_change.php:1036 msgid "and then" msgstr "然後" -#: tbl_change.php:1000 +#: tbl_change.php:1040 msgid "Go back to previous page" msgstr "返回上一頁" -#: tbl_change.php:1001 +#: tbl_change.php:1041 msgid "Insert another new row" msgstr "插入新資料" -#: tbl_change.php:1005 +#: tbl_change.php:1045 msgid "Go back to this page" msgstr "返回到本頁" -#: tbl_change.php:1013 +#: tbl_change.php:1053 msgid "Edit next row" msgstr "編輯下一行" -#: tbl_change.php:1024 +#: tbl_change.php:1064 msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" -#: tbl_change.php:1062 +#: tbl_change.php:1102 #, php-format msgid "Continue insertion with %s rows" msgstr "繼續插入 %s 行" @@ -10781,53 +10908,49 @@ msgstr "建立資料表 %1$s 成功" msgid "View dump (schema) of table" msgstr "查看資料表的轉存(大綱)" -#: tbl_gis_visualization.php:111 +#: tbl_gis_visualization.php:112 #, fuzzy #| msgid "Display servers selection" msgid "Display GIS Visualization" msgstr "顯示伺服器選擇" -#: tbl_gis_visualization.php:157 +#: tbl_gis_visualization.php:128 msgid "Width" msgstr "寬" -#: tbl_gis_visualization.php:161 +#: tbl_gis_visualization.php:132 msgid "Height" msgstr "高" -#: tbl_gis_visualization.php:165 +#: tbl_gis_visualization.php:136 #, fuzzy #| msgid "Textarea columns" msgid "Label column" msgstr "文本框列" -#: tbl_gis_visualization.php:167 +#: tbl_gis_visualization.php:138 #, fuzzy #| msgid "- none -" msgid "-- None --" msgstr "- 無 -" -#: tbl_gis_visualization.php:180 +#: tbl_gis_visualization.php:151 #, fuzzy #| msgid "Total count" msgid "Spatial column" msgstr "總數量" -#: tbl_gis_visualization.php:201 -msgid "Use OpenStreetMaps as Base Layer" -msgstr "" - -#: tbl_gis_visualization.php:204 +#: tbl_gis_visualization.php:175 msgid "Redraw" msgstr "重繪" -#: tbl_gis_visualization.php:206 +#: tbl_gis_visualization.php:177 #, fuzzy #| msgid "Save as file" msgid "Save to file" msgstr "另存檔案" -#: tbl_gis_visualization.php:207 +#: tbl_gis_visualization.php:178 #, fuzzy #| msgid "Table name" msgid "File name" @@ -11050,23 +11173,23 @@ msgstr "不需要一個和外部鍵關聯一致的行內部關聯" msgid "Foreign key constraint" msgstr "外部鍵約束" -#: tbl_select.php:83 +#: tbl_select.php:92 msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "執行“依例查詢”(萬用字元:“%”)" -#: tbl_select.php:155 +#: tbl_select.php:186 msgid "Select columns (at least one):" msgstr "選擇欄位 (至少一個):" -#: tbl_select.php:173 +#: tbl_select.php:204 msgid "Add search conditions (body of the \"where\" clause):" msgstr "新增搜尋條件 (“where”指令的主體):" -#: tbl_select.php:180 +#: tbl_select.php:211 msgid "Number of rows per page" msgstr "每頁行數" -#: tbl_select.php:186 +#: tbl_select.php:217 msgid "Display order:" msgstr "顯示順序:" @@ -12740,9 +12863,6 @@ msgstr "" #~ msgid "Create User" #~ msgstr "建立使用者" -#~ msgid "Add a new User" -#~ msgstr "新增新使用者" - #~ msgid "Show table row links on left side" #~ msgstr "在資料左側顯示操作連結" From 20ff8f2ee08eede3ad80b2f2bd0cc6019377974f Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 17 Aug 2011 20:45:16 +0530 Subject: [PATCH 345/442] These types are now supported in PMA --- .../libraries/common/PMA_unsupportedDatatypes_test.php | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/test/libraries/common/PMA_unsupportedDatatypes_test.php b/test/libraries/common/PMA_unsupportedDatatypes_test.php index 686e4ee851..57c8c87f27 100644 --- a/test/libraries/common/PMA_unsupportedDatatypes_test.php +++ b/test/libraries/common/PMA_unsupportedDatatypes_test.php @@ -18,15 +18,7 @@ class PMA_unsupportedDatatypes_test extends PHPUnit_Framework_TestCase function testNotSupportedDataTypes() { - $no_support_types = array('geometry', - 'point', - 'linestring', - 'polygon', - 'multipoint', - 'multilinestring', - 'multipolygon', - 'geometrycollection' - ); + $no_support_types = array(); $this->assertEquals($no_support_types, PMA_unsupportedDatatypes()); } } \ No newline at end of file From 69672d854d4264330b3b331f725531c9e406c90e Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Wed, 17 Aug 2011 17:51:21 +0200 Subject: [PATCH 346/442] Fix More icon position --- themes/original/css/theme_right.css.php | 3 +++ themes/pmahomme/css/theme_right.css.php | 2 ++ 2 files changed, 5 insertions(+) diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 6cb423363f..b8ac623a59 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -284,6 +284,9 @@ th.headerSortUp img.sortableIcon { background-position: 0 -1445px; width: 11px; /* Same as s_desc */ th.headerSortDown img.sortableIcon { background-position: 0 -1528px; width: 11px; height: 9px; } +/* Fix position */ +.ic_more { vertical-align: middle; } + /******************************************************************************/ /* classes */ .clearfloat { diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 1103bfa770..ee2edea8a7 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -468,6 +468,8 @@ th.headerSortUp img.sortableIcon { background-position: -1516px 0; } /* Same as s_desc */ th.headerSortDown img.sortableIcon { background-position: 0 0; } +/* Fix position */ +.ic_more { vertical-align: middle; } /******************************************************************************/ /* classes */ From 18c65bbbba63d6f504d9589d7fc99f22312c97fd Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Wed, 17 Aug 2011 18:04:22 +0200 Subject: [PATCH 347/442] relative position doesn't work correctly on elements in this case it broke position of "More" menus --- themes/original/css/theme_right.css.php | 4 ---- themes/pmahomme/css/theme_right.css.php | 1 - 2 files changed, 5 deletions(-) diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index b8ac623a59..3a7eeb598f 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -2410,10 +2410,6 @@ span.cm-number { padding: 1px 3px !important; } -.data { - position: relative; -} - .cHide { background: #D3DCE3 url(getImgPath(); ?>col_hide.png); color: #CCC; diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index ee2edea8a7..6da96cfd23 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -72,7 +72,6 @@ h2 a img{display:inline;} .data{ margin: 0 0 12px 0; - position: relative; } h3 { From 2fdfc4fc1e19971767368061694a76499ca97463 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Wed, 17 Aug 2011 18:25:56 +0200 Subject: [PATCH 348/442] "position: relative" on tables was required for grid, add it dynamically in PMA_makegrid --- js/makegrid.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/js/makegrid.js b/js/makegrid.js index 1a51eb90ee..aabe9b59cd 100644 --- a/js/makegrid.js +++ b/js/makegrid.js @@ -1614,6 +1614,9 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi * Initialize grid ******************/ + // add relative position to table so that resize handlers are correctly positioned + $(t).css('position', 'relative'); + // wrap all data cells, except actions cell, with span $(t).find('th, td:not(:has(span))') .wrapInner(''); From b3d627f3f67a75a27de0016f522ea04aaa44d91c Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 17 Aug 2011 23:23:34 +0530 Subject: [PATCH 349/442] Missing default function for Spatial types --- test/libraries/rte/PMA_RTN_getExecuteForm_test.php | 1 + 1 file changed, 1 insertion(+) diff --git a/test/libraries/rte/PMA_RTN_getExecuteForm_test.php b/test/libraries/rte/PMA_RTN_getExecuteForm_test.php index f74f5a3b44..f8db88c319 100644 --- a/test/libraries/rte/PMA_RTN_getExecuteForm_test.php +++ b/test/libraries/rte/PMA_RTN_getExecuteForm_test.php @@ -51,6 +51,7 @@ class PMA_RTN_getExecuteForm_test extends PHPUnit_Framework_TestCase if (! isset($GLOBALS['cfg']['DefaultFunctions'])) { $cfg['DefaultFunctions']['FUNC_NUMBER'] = ''; $cfg['DefaultFunctions']['FUNC_DATE'] = ''; + $cfg['DefaultFunctions']['FUNC_SPATIAL'] = 'GeomFromText'; $GLOBALS['tear_down']['default'] = true; } require 'libraries/data_mysql.inc.php'; From d67165f7bcc7abe654d98085b7c44f48c5e451ba Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 17 Aug 2011 23:42:43 +0530 Subject: [PATCH 350/442] Fix code style --- gis_data_editor.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gis_data_editor.php b/gis_data_editor.php index 7614aba536..23ce037bb0 100644 --- a/gis_data_editor.php +++ b/gis_data_editor.php @@ -33,7 +33,7 @@ if (! isset($gis_data['gis_type'])) { $start = (substr($_REQUEST['value'], 0, 1) == "'") ? 1 : 0; $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]; } } @@ -59,7 +59,7 @@ $visualization = PMA_GIS_visualizationResults($data, $visualizationSettings, $fo $open_layers = PMA_GIS_visualizationResults($data, $visualizationSettings, 'ol'); // If the call is to update the WKT and visualization make an AJAX response -if(isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) { +if (isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) { $extra_data = array( 'result' => $result, 'visualization' => $visualization, @@ -69,7 +69,7 @@ if(isset($_REQUEST['generate']) && $_REQUEST['generate'] == true) { } // If the call is to get the whole content, start buffering, skipping and tags -if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { +if (isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { ob_start(); } else { ?> @@ -319,9 +319,9 @@ if(isset($_REQUEST['get_gis_editor']) && $_REQUEST['get_gis_editor'] == true) { From 1a1833662fa4128c5d399e9813b1635ce88b21f7 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 17 Aug 2011 23:48:19 +0530 Subject: [PATCH 351/442] Wrap long lines --- libraries/import/shp.php | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index 7ee62fdce3..c685941e2b 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -116,8 +116,8 @@ if (isset($plugin_list)) { * 2) To use PMA_importGetNextChunk() functionality to read data, rather than reading directly from a file. * Using readFromBuffer() in place of fread(). This makes it possible to use compressions. */ - class PMA_ShapeRecord extends ShapeRecord { - + class PMA_ShapeRecord extends ShapeRecord + { function loadFromFile(&$SHPFile, &$DBFFile) { $this->DBFFile = $DBFFile; @@ -211,7 +211,8 @@ if (isset($plugin_list)) { } $shp = new PMA_ShapeFile(1); - // If the zip archive has more than one file, get the correct content to the buffer from .shp file. + // If the zip archive has more than one file, + // get the correct content to the buffer from .shp file. if ($compression == 'application/zip' && PMA_getNoOfFilesInZip($import_file) > 1) { $zip_content = PMA_getZipContents($import_file, '/^.*\.shp$/i'); $GLOBALS['import_text'] = $zip_content['data']; @@ -220,7 +221,8 @@ if (isset($plugin_list)) { $temp_dbf_file = false; // We need dbase extension to handle .dbf file if (extension_loaded('dbase')) { - // If we can extract the zip archive to 'TempDir' and use the files in it for import + // If we can extract the zip archive to 'TempDir' + // and use the files in it for import if ($compression == 'application/zip' && ! empty($cfg['TempDir']) && is_writable($cfg['TempDir']) @@ -229,9 +231,14 @@ if (isset($plugin_list)) { // If the corresponding .dbf file is in the zip archive if ($dbf_file_name) { // Extract the .dbf file and point to it. - $extracted = PMA_zipExtract($import_file, realpath($cfg['TempDir']), array($dbf_file_name)); + $extracted = PMA_zipExtract( + $import_file, + realpath($cfg['TempDir']), + array($dbf_file_name) + ); if ($extracted) { - $dbf_file_path = realpath($cfg['TempDir']) . (PMA_IS_WINDOWS ? '\\' : '/') . $dbf_file_name; + $dbf_file_path = realpath($cfg['TempDir']) + . (PMA_IS_WINDOWS ? '\\' : '/') . $dbf_file_name; $temp_dbf_file = true; // Replace the .dbf with .*, as required by the bsShapeFiles library. $file_name = substr($dbf_file_path, 0, strlen($dbf_file_path) - 4) . '.*'; From 18f567a3f13ab78015521e46e3fa2b9873d44610 Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 17 Aug 2011 23:52:36 +0530 Subject: [PATCH 352/442] Correcting indentation for switch statements --- libraries/import/shp.php | 102 +++++++++++++++++++-------------------- 1 file changed, 51 insertions(+), 51 deletions(-) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index c685941e2b..6252ff9ecf 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -124,24 +124,24 @@ if (isset($plugin_list)) { $this->_loadHeaders(); switch ($this->shapeType) { - case 0: - $this->_loadNullRecord(); - break; - case 1: - $this->_loadPointRecord(); - break; - case 3: - $this->_loadPolyLineRecord(); - break; - case 5: - $this->_loadPolygonRecord(); - break; - case 8: - $this->_loadMultiPointRecord(); - break; - default: - $this->setError(sprintf("The Shape Type '%s' is not supported.", $this->shapeType)); - break; + case 0: + $this->_loadNullRecord(); + break; + case 1: + $this->_loadPointRecord(); + break; + case 3: + $this->_loadPolyLineRecord(); + break; + case 5: + $this->_loadPolygonRecord(); + break; + case 8: + $this->_loadMultiPointRecord(); + break; + default: + $this->setError(sprintf("The Shape Type '%s' is not supported.", $this->shapeType)); + break; } if (extension_loaded('dbase') && isset($this->DBFFile)) { $this->_loadDBFData(); @@ -287,39 +287,39 @@ if (isset($plugin_list)) { require_once './libraries/gis/pma_gis_geometry.php'; switch ($shp->shapeType) { - // ESRI Null Shape - case 0: - $gis_obj = null; - break; - // ESRI Point - case 1: - require_once './libraries/gis/pma_gis_point.php'; - $gis_obj = PMA_GIS_Point::singleton(); - break; - // ESRI PolyLine - case 3: - require_once './libraries/gis/pma_gis_multilinestring.php'; - $gis_obj = PMA_GIS_Multilinestring::singleton(); - break; - // ESRI Polygon - case 5: - require_once './libraries/gis/pma_gis_multipolygon.php'; - $gis_obj = PMA_GIS_Multipolygon::singleton(); - break; - // ESRI MultiPoint - case 8: - require_once './libraries/gis/pma_gis_multipoint.php'; - $gis_obj = PMA_GIS_Multipoint::singleton(); - break; - default: - $error = true; - if (! isset($esri_types[$shp->shapeType])) { - $message = PMA_Message::error(__('You tried to import an invalid file or the imported file contains invalid data')); - } else { - $message = PMA_Message::error(__('MySQL Spatial Extension does not support ESRI type "%s".')); - $message->addParam($param); - } - return; + // ESRI Null Shape + case 0: + $gis_obj = null; + break; + // ESRI Point + case 1: + require_once './libraries/gis/pma_gis_point.php'; + $gis_obj = PMA_GIS_Point::singleton(); + break; + // ESRI PolyLine + case 3: + require_once './libraries/gis/pma_gis_multilinestring.php'; + $gis_obj = PMA_GIS_Multilinestring::singleton(); + break; + // ESRI Polygon + case 5: + require_once './libraries/gis/pma_gis_multipolygon.php'; + $gis_obj = PMA_GIS_Multipolygon::singleton(); + break; + // ESRI MultiPoint + case 8: + require_once './libraries/gis/pma_gis_multipoint.php'; + $gis_obj = PMA_GIS_Multipoint::singleton(); + break; + default: + $error = true; + if (! isset($esri_types[$shp->shapeType])) { + $message = PMA_Message::error(__('You tried to import an invalid file or the imported file contains invalid data')); + } else { + $message = PMA_Message::error(__('MySQL Spatial Extension does not support ESRI type "%s".')); + $message->addParam($param); + } + return; } $num_rows = count($shp->records); From 5f2a52153bd3f6b5f96e813180ec0a8875b0aa5e Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Wed, 17 Aug 2011 23:54:14 +0530 Subject: [PATCH 353/442] Use include_once when included conditionally --- libraries/import/shp.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index 6252ff9ecf..278c9f57ed 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -26,7 +26,7 @@ if (isset($plugin_list)) { // Append the bfShapeFiles directory to the include path variable set_include_path(get_include_path() . PATH_SEPARATOR . getcwd() . '/libraries/bfShapeFiles/'); - require_once './libraries/bfShapeFiles/ShapeFile.lib.php'; + include_once './libraries/bfShapeFiles/ShapeFile.lib.php'; $GLOBALS['finished'] = false; $buffer = ''; @@ -285,7 +285,7 @@ if (isset($plugin_list)) { 31 => 'MultiPatch', ); - require_once './libraries/gis/pma_gis_geometry.php'; + include_once './libraries/gis/pma_gis_geometry.php'; switch ($shp->shapeType) { // ESRI Null Shape case 0: @@ -293,22 +293,22 @@ if (isset($plugin_list)) { break; // ESRI Point case 1: - require_once './libraries/gis/pma_gis_point.php'; + include_once './libraries/gis/pma_gis_point.php'; $gis_obj = PMA_GIS_Point::singleton(); break; // ESRI PolyLine case 3: - require_once './libraries/gis/pma_gis_multilinestring.php'; + include_once './libraries/gis/pma_gis_multilinestring.php'; $gis_obj = PMA_GIS_Multilinestring::singleton(); break; // ESRI Polygon case 5: - require_once './libraries/gis/pma_gis_multipolygon.php'; + include_once './libraries/gis/pma_gis_multipolygon.php'; $gis_obj = PMA_GIS_Multipolygon::singleton(); break; // ESRI MultiPoint case 8: - require_once './libraries/gis/pma_gis_multipoint.php'; + include_once './libraries/gis/pma_gis_multipoint.php'; $gis_obj = PMA_GIS_Multipoint::singleton(); break; default: From 683a512c41a5474cb60f0e22cea4326aa359bb7a Mon Sep 17 00:00:00 2001 From: Madhura Jayaratne Date: Thu, 18 Aug 2011 00:04:40 +0530 Subject: [PATCH 354/442] Wrap long lines. --- libraries/import/shp.php | 45 ++++++++++++++++++++++++++-------------- 1 file changed, 30 insertions(+), 15 deletions(-) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index 278c9f57ed..b674f59979 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -51,10 +51,12 @@ if (isset($plugin_list)) { } /** - * This class extends ShapeFile class to cater following phpMyAdmin specific requirements. + * This class extends ShapeFile class to cater the following phpMyAdmin + * specific requirements. * 1) To load data from .dbf file only when the dBase extension is available. - * 2) To use PMA_importGetNextChunk() functionality to read data, rather than reading directly from a file. - * Using readFromBuffer() in place of fread(). This makes it possible to use compressions. + * 2) To use PMA_importGetNextChunk() functionality to read data, rather than + * reading directly from a file. Using readFromBuffer() in place of fread(). + * This makes it possible to use compressions. */ class PMA_ShapeFile extends ShapeFile { @@ -111,10 +113,12 @@ if (isset($plugin_list)) { } /** - * This class extends ShapeRecord class to cater following phpMyAdmin specific requirements. + * This class extends ShapeRecord class to cater the following phpMyAdmin + * specific requirements. * 1) To load data from .dbf file only when the dBase extension is available. - * 2) To use PMA_importGetNextChunk() functionality to read data, rather than reading directly from a file. - * Using readFromBuffer() in place of fread(). This makes it possible to use compressions. + * 2) To use PMA_importGetNextChunk() functionality to read data, rather than + * reading directly from a file. Using readFromBuffer() in place of fread(). + * This makes it possible to use compressions. */ class PMA_ShapeRecord extends ShapeRecord { @@ -151,7 +155,8 @@ if (isset($plugin_list)) { function _loadHeaders() { $this->recordNumber = loadData("N", readFromBuffer(4)); - $tmp = loadData("N", readFromBuffer(4)); //We read the length of the record + //We read the length of the record + $tmp = loadData("N", readFromBuffer(4)); $this->shapeType = loadData("V", readFromBuffer(4)); } @@ -198,11 +203,15 @@ if (isset($plugin_list)) { $readPoints = 0; reset($this->SHPData["parts"]); while (list($partIndex, $partData) = each($this->SHPData["parts"])) { - if (!isset($this->SHPData["parts"][$partIndex]["points"]) || !is_array($this->SHPData["parts"][$partIndex]["points"])) { + if (! isset($this->SHPData["parts"][$partIndex]["points"]) + || !is_array($this->SHPData["parts"][$partIndex]["points"]) + ) { $this->SHPData["parts"][$partIndex] = array(); $this->SHPData["parts"][$partIndex]["points"] = array(); } - while (!in_array($readPoints, $this->SHPData["parts"]) && ($readPoints < ($this->SHPData["numpoints"]))) { + while (! in_array($readPoints, $this->SHPData["parts"]) + && ($readPoints < ($this->SHPData["numpoints"])) + ) { $this->SHPData["parts"][$partIndex]["points"][] = $this->_loadPoint(); $readPoints++; } @@ -246,9 +255,14 @@ if (isset($plugin_list)) { } } } - // If file is in UploadDir, use .dbf file in the same UploadDir to load extra data. - elseif (! empty($local_import_file) && ! empty($cfg['UploadDir']) && $compression == 'none') { - // Replace the .shp with .*, so the bsShapeFiles library correctly locates .dbf file. + // If file is in UploadDir, use .dbf file in the same UploadDir + // to load extra data. + elseif (! empty($local_import_file) + && ! empty($cfg['UploadDir']) + && $compression == 'none' + ) { + // Replace the .shp with .*, + // so the bsShapeFiles library correctly locates .dbf file. $file_name = substr($import_file, 0, strlen($import_file) - 4) . '.*'; $shp->FileName = $file_name; } @@ -329,7 +343,7 @@ if (isset($plugin_list)) { $rows = array(); $col_names = array(); if ($num_rows != 0) { - foreach($shp->records as $record){ + foreach ($shp->records as $record) { $tempRow = array(); if ($gis_obj == null) { $tempRow[] = null; @@ -352,13 +366,14 @@ if (isset($plugin_list)) { } } - if(count($rows) == 0) { + if (count($rows) == 0) { $error = true; $message = PMA_Message::error(__('The imported file does not contain any data')); return; } - // Column names for spatial column and the rest of the columns, if they are available + // Column names for spatial column and the rest of the columns, + // if they are available $col_names[] = 'SPATIAL'; for ($n = 0; $n < $num_data_cols; $n++) { $col_names[] = $shp->DBFHeader[$n][0]; From 746f3566bb1f520c2a3698686bb1d9bb74a928a9 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Wed, 17 Aug 2011 22:22:39 +0200 Subject: [PATCH 355/442] set_time_limit may fail, make it do so silently --- libraries/import/shp.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/import/shp.php b/libraries/import/shp.php index b674f59979..72ff7a7c7e 100644 --- a/libraries/import/shp.php +++ b/libraries/import/shp.php @@ -19,9 +19,9 @@ if (isset($plugin_list)) { } else { if ((int) ini_get('memory_limit') < 512) { - ini_set('memory_limit', '512M'); + @ini_set('memory_limit', '512M'); } - set_time_limit(300); + @set_time_limit(300); // Append the bfShapeFiles directory to the include path variable From e10ee28831df6423d70ccd84d2fa28d18164d3c2 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Wed, 17 Aug 2011 22:38:22 +0200 Subject: [PATCH 356/442] Better layout for wrapped database names in nav frame --- themes/pmahomme/css/theme_left.css.php | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/themes/pmahomme/css/theme_left.css.php b/themes/pmahomme/css/theme_left.css.php index 8ed6707553..d862015417 100644 --- a/themes/pmahomme/css/theme_left.css.php +++ b/themes/pmahomme/css/theme_left.css.php @@ -142,9 +142,10 @@ ul#databaseList span { ul#databaseList a { color: #333; - background: url(./themes/pmahomme/img/database.png) no-repeat 0% 50% transparent; + background: url(./themes/pmahomme/img/database.png) no-repeat 0 5px transparent; display: block; - padding: 5px; + text-indent: 0; + padding: 5px 5px 5px 25px; font-style: normal; } @@ -163,11 +164,16 @@ ul#databaseList ul { margin:0px; padding:0px; } -ul#databaseList li{ list-style:none;text-indent:20px; margin:0px; - padding:0px;} + +ul#databaseList li { + list-style: none; + text-indent: 20px; + margin: 0px; + padding: 0px; +} ul#databaseList a:hover { - background:url(./themes/pmahomme/img/database.png) no-repeat 0% 50% #e4e4e4; + background-color: #e4e4e4; } ul#databaseList li.selected a { From 07f3f59e22ad0c67eb24f91c58a88898e771fb04 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Wed, 17 Aug 2011 22:41:54 +0200 Subject: [PATCH 357/442] In CSS '0' is the same as '0px' --- themes/original/css/theme_left.css.php | 6 +-- themes/original/css/theme_right.css.php | 22 ++++---- themes/pmahomme/css/theme_left.css.php | 10 ++-- themes/pmahomme/css/theme_right.css.php | 72 ++++++++++++------------- 4 files changed, 55 insertions(+), 55 deletions(-) diff --git a/themes/original/css/theme_left.css.php b/themes/original/css/theme_left.css.php index 5cd64b0456..fc13337247 100644 --- a/themes/original/css/theme_left.css.php +++ b/themes/original/css/theme_left.css.php @@ -271,7 +271,7 @@ div#left_tableList ul ul { #fast_filter { width: 100%; - padding:2px 0px; - margin:0; - border:0; + padding: 2px 0; + margin: 0; + border: 0; } diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 3a7eeb598f..6ab3b1f802 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -1196,7 +1196,7 @@ div.liveChart { } #addChartDialog input[type="text"] { - margin:0px; + margin: 0; padding:3px; } @@ -1592,7 +1592,7 @@ div.upload_progress_bar_outer div.upload_progress_bar_inner { background-color: ; - width: 0px; + width: 0; height: 12px; margin: 1px; } @@ -1613,7 +1613,7 @@ table#serverconnection_trg_local { * Ajax notification styling */ .ajax_notification { - top: 0px; /** The notification needs to be shown on the top of the page */ + top: 0; /** The notification needs to be shown on the top of the page */ position: fixed; margin-top: 0; margin-right: auto; @@ -1684,13 +1684,13 @@ table#serverconnection_trg_local { } .format_specific_options h3 { - margin: 10px 0px 0px 10px; - border: 0px; + margin: 10px 0 0 10px; + border: 0; } .format_specific_options { border: 1px solid #999999; - margin: 7px 0px; + margin: 7px 0; padding: 3px; } @@ -1706,7 +1706,7 @@ select#db_select, select#table_select { } .export_sub_options { - margin: 20px 0px 0px 30px; + margin: 20px 0 0 30px; } .export_sub_options h4 { @@ -1730,7 +1730,7 @@ select#db_select, select#table_select { */ .importoptions #import_notification { - margin: 10px 0px; + margin: 10px 0; font-style: italic; } @@ -1739,7 +1739,7 @@ input#input_import_file { } .formelementrow { - margin: 5px 0px 5px 0px; + margin: 5px 0 5px 0; } /** @@ -1824,12 +1824,12 @@ a.close_enum_editor { } #enum_editor #values, #enum_editor_no_js #values { - margin: 15px 0px; + margin: 15px 0; width: 100%; } #enum_editor #values input, #enum_editor_no_js #values input { - margin: 5px 0px; + margin: 5px 0; float: top; width: 100%; } diff --git a/themes/pmahomme/css/theme_left.css.php b/themes/pmahomme/css/theme_left.css.php index d862015417..e6b586c08b 100644 --- a/themes/pmahomme/css/theme_left.css.php +++ b/themes/pmahomme/css/theme_left.css.php @@ -161,15 +161,15 @@ div#navidbpageselector select{ } ul#databaseList ul { - margin:0px; - padding:0px; + margin: 0; + padding: 0; } ul#databaseList li { list-style: none; text-indent: 20px; - margin: 0px; - padding: 0px; + margin: 0; + padding: 0; } ul#databaseList a:hover { @@ -190,7 +190,7 @@ div#reloadlink a img, div#leftframelinks a img.icon { margin: 0.3em; margin-top: 0.7em; - border: 0px; + border: 0; } div#leftframelinks a:hover img { diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 6da96cfd23..589fa54c68 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -60,7 +60,7 @@ h1 { h2 { font-size: 2em; font-weight: normal; - text-shadow: 0px 1px 0px #fff; + text-shadow: 0 1px 0 #fff; padding: 10px 0 10px 3px; color: #777; } @@ -204,7 +204,7 @@ input[type=submit]{ -webkit-border-radius: 12px; -moz-border-radius: 12px; - text-shadow: 0px 1px 0px #fff; + text-shadow: 0 1px 0 #fff; background-image: url(./themes/svg_gradient.php?from=ffffff&to=cccccc); background-size: 100% 100%; @@ -966,11 +966,11 @@ form.login label { /* topmenu */ #topmenu a { - text-shadow:0px 1px 0px #fff; + text-shadow: 0 1px 0 #fff; } #topmenu .error { - background:#eee;border:0px !important;color:#aaa; + background:#eee;border: 0 !important;color:#aaa; } ul#topmenu, ul#topmenu2, ul.tabs { @@ -1010,8 +1010,8 @@ ul#topmenu li, ul#topmenu2 li { ul#topmenu a, ul#topmenu span { display: block; - margin: 0px; - padding: 0px; + margin: 0; + padding: 0; white-space: nowrap; } @@ -1056,7 +1056,7 @@ ul#topmenu ul li { ul#topmenu2 a { display: block; - margin: 7px 6px 7px 0px; + margin: 7px 6px 7px 0; padding: 4px 10px; white-space: nowrap; border:1px solid #ddd; @@ -1150,7 +1150,7 @@ ul#topmenu2 a.tabactive { /* to be able to cancel the bottom border, use
  • */ ul#topmenu > li.active { /* border-bottom: 0pt solid ; */ - border-right:0px; + border-right: 0; } /* disabled tabs */ @@ -1412,8 +1412,8 @@ div.liveChart { } #addChartDialog input[type="text"] { - margin:0px; - padding:3px; + margin: 0; + padding: 3px; } div#chartVariableSettings { @@ -1517,7 +1517,7 @@ table#serverVariables td { p.notice { - margin: 1.5em 0px; + margin: 1.5em 0; border: 1px solid #000; background-repeat: no-repeat; @@ -1534,9 +1534,9 @@ p.notice { -moz-border-radius:5px; -webkit-border-radius:5px; border-radius:5px; - -moz-box-shadow: 0px 1px 2px #fff inset; - -webkit-box-shadow: 0px 1px 2px #fff inset; - box-shadow:0px 1px 2px #fff; inset; + -moz-box-shadow: 0 1px 2px #fff inset; + -webkit-box-shadow: 0 1px 2px #fff inset; + box-shadow: 0 1px 2px #fff; inset; background:#555; color:#d4fb6a; } @@ -1604,14 +1604,14 @@ div#profilingchart { border-radius:5px; -webkit-border-radius:5px; -moz-border-radius:5px; - box-shadow:0px 1px 1px #fff inset; - -webkit-box-shadow:0px 1px 1px #fff inset; - -moz-box-shadow:0px 1px 1px #fff inset; + box-shadow: 0 1px 1px #fff inset; + -webkit-box-shadow: 0 1px 1px #fff inset; + -moz-box-shadow: 0 1px 1px #fff inset; } #sectionlinks a, .buttonlinks a, a.button { font-size:0.88em; font-weight:bold; - text-shadow: 0px 1px 0px #fff; + text-shadow: 0 1px 0 #fff; line-height:35px; margin-left:7px; border: 1px solid #aaa; @@ -1627,7 +1627,7 @@ div#profilingchart { /* -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.5); -moz-box-shadow: 1px 1px 2px rgba(0,0,0,.5); - text-shadow: #fff 0px 1px 0px; + text-shadow: #fff 0 1px 0; */ background-image: url(./themes/svg_gradient.php?from=ffffff&to=cccccc); background-size: 100% 100%; @@ -1954,7 +1954,7 @@ div.upload_progress_bar_outer div.upload_progress_bar_inner { background-color: ; - width: 0px; + width: 0; height: 12px; margin: 1px; } @@ -1977,7 +1977,7 @@ input[type=text].invalid_value, * Ajax notification styling */ .ajax_notification { - top: 0px; /** The notification needs to be shown on the top of the page */ + top: 0; /** The notification needs to be shown on the top of the page */ position: fixed; margin-top: 0; margin-right: auto; @@ -2003,9 +2003,9 @@ input[type=text].invalid_value, border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; - box-shadow: 0px 5px 90px #888; - -moz-box-shadow: 0px 5px 90px #888; - -webkit-box-shadow: 0px 5px 90px #888; + box-shadow: 0 5px 90px #888; + -moz-box-shadow: 0 5px 90px #888; + -webkit-box-shadow: 0 5px 90px #888; } #loading_parent { @@ -2057,7 +2057,7 @@ input[type=text].invalid_value, -webkit-border-radius: 12px; -moz-border-radius: 12px; - text-shadow: 0px 1px 0px #fff; + text-shadow: 0 1px 0 #fff; background-image: url(./themes/svg_gradient.php?from=ffffff&to=cccccc); background-size: 100% 100%; @@ -2077,13 +2077,13 @@ input[type=text].invalid_value, } .format_specific_options h3 { - margin: 10px 0px 0px 10px; - border: 0px; + margin: 10px 0 0 10px; + border: 0; } .format_specific_options { border: 1px solid #999999; - margin: 7px 0px; + margin: 7px 0; padding: 3px; } @@ -2099,7 +2099,7 @@ select#db_select, select#table_select { } .export_sub_options { - margin: 20px 0px 0px 30px; + margin: 20px 0 0 30px; } .export_sub_options h4 { @@ -2123,7 +2123,7 @@ select#db_select, select#table_select { */ .importoptions #import_notification { - margin: 10px 0px; + margin: 10px 0; font-style: italic; } @@ -2132,7 +2132,7 @@ input#input_import_file { } .formelementrow { - margin: 5px 0px 5px 0px; + margin: 5px 0 5px 0; } /** @@ -2217,12 +2217,12 @@ a.close_enum_editor { } #enum_editor #values, #enum_editor_no_js #values { - margin: 15px 0px; + margin: 15px 0; width: 100%; } #enum_editor #values input, #enum_editor_no_js #values input { - margin: 5px 0px; + margin: 5px 0; float: top; width: 100%; } @@ -2244,7 +2244,7 @@ a.close_enum_editor { background:#fff; line-height:24px; border:1px solid #aaa; - -moz-box-shadow:0px 3px 3px #ddd; + -moz-box-shadow: 0 3px 3px #ddd; } .structure_actions_dropdown span{display:block;} .structure_actions_dropdown span:hover{background:#ddd;} @@ -2319,7 +2319,7 @@ iframe.IE_hack { margin: 0; padding: 0.5em; background: #fff; - border-top:0px; + border-top: 0; } .config-form fieldset .errors { /* form error list */ @@ -2552,7 +2552,7 @@ fieldset .disabled-field td { .toggleButton .toggleOn { color: white; padding: 0 1em; - text-shadow: 0px 0px 0.2em #000; + text-shadow: 0 0 0.2em #000; } .toggleButton .toggleOff { padding: 0 1em; From 331208d33aaad13996f74c989e443fbbb976a433 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:25:36 +0200 Subject: [PATCH 358/442] Translation update done using Pootle. --- po/sl.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/po/sl.po b/po/sl.po index 877790d8fb..f29b94f42c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,15 +4,15 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-16 22:58+0200\n" +"PO-Revision-Date: 2011-08-18 00:25+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" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3);\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || " +"n%100==4 ? 2 : 3);\n" "X-Generator: Pootle 2.0.5\n" #: browse_foreigners.php:35 browse_foreigners.php:53 js/messages.php:316 @@ -855,10 +855,10 @@ msgid "Dump has been saved to file %s." msgstr "Dump je shranjen v datoteko %s." #: gis_data_editor.php:84 -#, fuzzy, php-format +#, php-format #| msgid "Values for the column \"%s\"" msgid "Value for the column \"%s\"" -msgstr "Vrednosti za stolpec \"%s\"" +msgstr "Vrednost za stolpec \"%s\"" #: gis_data_editor.php:113 tbl_gis_visualization.php:172 msgid "Use OpenStreetMaps as Base Layer" From 918dbee07fd66c617cd60b15bcce42c6f8597895 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:26:18 +0200 Subject: [PATCH 359/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index f29b94f42c..a13e1ed27f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:25+0200\n" +"PO-Revision-Date: 2011-08-18 00:26+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -866,7 +866,7 @@ msgstr "Uporabi OpenStreetMaps kot osnovni sloj" #: gis_data_editor.php:134 msgid "SRID" -msgstr "" +msgstr "SRID" #: gis_data_editor.php:151 js/messages.php:289 #: libraries/display_tbl.lib.php:663 From b9e6a67c9d7597796fbb315eccf9d484e9becdf8 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:26:22 +0200 Subject: [PATCH 360/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index a13e1ed27f..51be725300 100644 --- a/po/sl.po +++ b/po/sl.po @@ -876,7 +876,7 @@ msgstr "Geometrija" #: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 #: gis_data_editor.php:290 js/messages.php:286 msgid "Point" -msgstr "" +msgstr "Točka" #: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 #: gis_data_editor.php:291 js/messages.php:284 From f701fd26e9ad5931d6f216f987f8c61c095f8c5d Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:26:26 +0200 Subject: [PATCH 361/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 51be725300..6e6179ceb1 100644 --- a/po/sl.po +++ b/po/sl.po @@ -881,7 +881,7 @@ msgstr "Točka" #: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 #: gis_data_editor.php:291 js/messages.php:284 msgid "X" -msgstr "" +msgstr "X" #: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 #: gis_data_editor.php:293 js/messages.php:285 From 02afc390116150ca6d600b7306e37f1e20ea5a26 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:26:28 +0200 Subject: [PATCH 362/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 6e6179ceb1..1691a3de73 100644 --- a/po/sl.po +++ b/po/sl.po @@ -886,7 +886,7 @@ msgstr "X" #: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 #: gis_data_editor.php:293 js/messages.php:285 msgid "Y" -msgstr "" +msgstr "Y" #: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 #: js/messages.php:292 From ce93f7a920e5134e358e3546c51f823a457e8e62 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:26:32 +0200 Subject: [PATCH 363/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 1691a3de73..bb3d87850c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -890,10 +890,9 @@ msgstr "Y" #: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 #: js/messages.php:292 -#, fuzzy #| msgid "Add routine" msgid "Add a point" -msgstr "Dodaj rutino" +msgstr "Dodaj točko" #: gis_data_editor.php:218 js/messages.php:287 #, fuzzy From 6189e5b84f986f916a3b081604ad310eb3c3aa67 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:26:50 +0200 Subject: [PATCH 364/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index bb3d87850c..a6dc086fa7 100644 --- a/po/sl.po +++ b/po/sl.po @@ -902,7 +902,7 @@ msgstr "Vrstice zaključene z" #: gis_data_editor.php:221 gis_data_editor.php:275 msgid "Outer Ring:" -msgstr "" +msgstr "Zunanji obroč:" #: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 msgid "Inner Ring" From 9a7c14698e02067e7bde8c63673a02e15030ff74 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:26:56 +0200 Subject: [PATCH 365/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index a6dc086fa7..613df8a641 100644 --- a/po/sl.po +++ b/po/sl.po @@ -906,7 +906,7 @@ msgstr "Zunanji obroč:" #: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 msgid "Inner Ring" -msgstr "" +msgstr "Notranji obroč" #: gis_data_editor.php:248 #, fuzzy From c27f650c30edf76496c1c2e826a337857964b297 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:27:36 +0200 Subject: [PATCH 366/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 613df8a641..7f0eb263d0 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:26+0200\n" +"PO-Revision-Date: 2011-08-18 00:27+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -909,10 +909,9 @@ msgid "Inner Ring" msgstr "Notranji obroč" #: gis_data_editor.php:248 -#, fuzzy #| msgid "Add a new User" msgid "Add a linestring" -msgstr "Dodaj novega uporabnika" +msgstr "Dodaj daljico" #: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 #, fuzzy From 5f6775931a0721f425ca5306420dbb8d33397844 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:27:40 +0200 Subject: [PATCH 367/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 7f0eb263d0..e98feae0df 100644 --- a/po/sl.po +++ b/po/sl.po @@ -895,10 +895,9 @@ msgid "Add a point" msgstr "Dodaj točko" #: gis_data_editor.php:218 js/messages.php:287 -#, fuzzy #| msgid "Lines terminated by" msgid "Linestring" -msgstr "Vrstice zaključene z" +msgstr "Daljica" #: gis_data_editor.php:221 gis_data_editor.php:275 msgid "Outer Ring:" From 57f12c4a04194feb31cf8f5f6e050238cb870c6f Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:27:46 +0200 Subject: [PATCH 368/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index e98feae0df..2f42dc85e5 100644 --- a/po/sl.po +++ b/po/sl.po @@ -913,10 +913,9 @@ msgid "Add a linestring" msgstr "Dodaj daljico" #: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 -#, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" -msgstr "Dodaj novega uporabnika" +msgstr "Dodaj notranji obroč" #: gis_data_editor.php:262 js/messages.php:288 msgid "Polygon" From 046f79ee40f76a948336c0ebe537897c458ef59d Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:27:50 +0200 Subject: [PATCH 369/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 2f42dc85e5..4be96317c9 100644 --- a/po/sl.po +++ b/po/sl.po @@ -919,7 +919,7 @@ msgstr "Dodaj notranji obroč" #: gis_data_editor.php:262 js/messages.php:288 msgid "Polygon" -msgstr "" +msgstr "Večkotnik" #: gis_data_editor.php:300 js/messages.php:294 #, fuzzy From c815b1ef5053ee9761769a29eeaaf9c2c65adfbb Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:27:54 +0200 Subject: [PATCH 370/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 4be96317c9..9ae723c0a9 100644 --- a/po/sl.po +++ b/po/sl.po @@ -922,10 +922,9 @@ msgid "Polygon" msgstr "Večkotnik" #: gis_data_editor.php:300 js/messages.php:294 -#, fuzzy #| msgid "Add column" msgid "Add a polygon" -msgstr "Dodaj stolpec" +msgstr "Dodaj večkotnik" #: gis_data_editor.php:304 #, fuzzy From fdd5b081339c242e687cd4b800f13723d8807633 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:28:16 +0200 Subject: [PATCH 371/442] Translation update done using Pootle. --- po/sl.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/sl.po b/po/sl.po index 9ae723c0a9..300ded56e6 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:27+0200\n" +"PO-Revision-Date: 2011-08-18 00:28+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -927,10 +927,9 @@ msgid "Add a polygon" msgstr "Dodaj večkotnik" #: gis_data_editor.php:304 -#, fuzzy #| msgid "Geometry" msgid "Add geometry" -msgstr "Geometrija" +msgstr "Dodaj geometrijo" #: gis_data_editor.php:312 msgid "" From 98b26a9b2053ad1eae67517ee57e17787850a450 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:31:17 +0200 Subject: [PATCH 372/442] Translation update done using Pootle. --- po/sl.po | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 300ded56e6..facb0a3e92 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:28+0200\n" +"PO-Revision-Date: 2011-08-18 00:31+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1223,6 +1223,10 @@ msgid "" "likely that your current configuration will not work anymore. Please reset " "your configuration to default in the Settings menu." msgstr "" +"Konfiguracija razvrstitve grafikonov v lokalni shrambi brskalnika ni več " +"združljiva z novejšo različico pogovornega okna nadziranja. Zelo verjetno " +"je, da vaša trenutna konfiguracija ne bo več delovala. Prosimo, ponastavite " +"svojo konfiguracijo na privzeto v meniju Nastavitve." #: js/messages.php:96 msgid "Query cache efficiency" From 18841f8078ba99e2d8f557012a1fb26fe4bd488e Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:33:08 +0200 Subject: [PATCH 373/442] Translation update done using Pootle. --- po/sl.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index facb0a3e92..c60fdb9306 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:31+0200\n" +"PO-Revision-Date: 2011-08-18 00:33+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1547,6 +1547,9 @@ msgid "" "This is most likely because your session expired. Reloading the page and " "reentering your credentials should help." msgstr "" +"Med zahtevo podatkov novega grafikona je strežnik vrnil neveljavni odziv. To " +"se je najverjetneje zgodilo, ker je vaša seja potekla. Ponovno nalaganje " +"strani in ponovni vnos poveril bi morala pomagati." #: js/messages.php:184 msgid "Reload page" From dac9192a3862104d09c4330a73ed43d5f0343b64 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:33:29 +0200 Subject: [PATCH 374/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index c60fdb9306..3caf933d30 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1765,7 +1765,7 @@ msgstr "Vsaka točka predstavlja podatkovno vrstico." #: js/messages.php:266 msgid "Hovering over a point will show its label." -msgstr "" +msgstr "Prehod z miško čez točko bo pokazalo njeno oznako." #: js/messages.php:268 msgid "Drag and select an area in the plot to zoom into it." From 84f45312af223da9b6c272413708cfc790211506 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:34:06 +0200 Subject: [PATCH 375/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 3caf933d30..0a8e37e09e 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:33+0200\n" +"PO-Revision-Date: 2011-08-18 00:34+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1769,7 +1769,7 @@ msgstr "Prehod z miško čez točko bo pokazalo njeno oznako." #: js/messages.php:268 msgid "Drag and select an area in the plot to zoom into it." -msgstr "" +msgstr "Povlecite in izberite območje na izrisu, ki ga želite povečati." #: js/messages.php:270 msgid "Click reset zoom link to come back to original state." From 9d1b774e840f6d64f24805bd6746f688d4c2551a Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:34:14 +0200 Subject: [PATCH 376/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 0a8e37e09e..7b3ff0f7b6 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1754,10 +1754,9 @@ msgid "Show search criteria" msgstr "Prikaži iskalne pogoje" #: js/messages.php:262 libraries/tbl_select.lib.php:150 -#, fuzzy #| msgid "Search" msgid "Zoom Search" -msgstr "Iskanje" +msgstr "Iskanje s povečevanjem" #: js/messages.php:264 msgid "Each point represents a data row." From 79782e517d95c0e227798c986cca30f3a0bd2fd6 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:35:08 +0200 Subject: [PATCH 377/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 7b3ff0f7b6..941a7d8a9a 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:34+0200\n" +"PO-Revision-Date: 2011-08-18 00:35+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -1782,7 +1782,7 @@ msgstr "" #: js/messages.php:274 msgid "The plot can be resized by dragging it along the bottom right corner." -msgstr "" +msgstr "Izris lahko povečate tako, da ga vlečete ob spodnjem desnem kotu." #: js/messages.php:276 msgid "Strings are converted into integer for plotting" From b7a29702abdeb8d1b78044b325ec8b69a6d7be77 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:35:22 +0200 Subject: [PATCH 378/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 941a7d8a9a..f1724f457b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1786,7 +1786,7 @@ msgstr "Izris lahko povečate tako, da ga vlečete ob spodnjem desnem kotu." #: js/messages.php:276 msgid "Strings are converted into integer for plotting" -msgstr "" +msgstr "Nizi so pri izrisovanju pretvorjeni v cela števila" #: js/messages.php:278 msgid "Select two columns" From fa88ee25febf6e812355d6aae2b53edb878f8762 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:35:28 +0200 Subject: [PATCH 379/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index f1724f457b..caf2dbe34b 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1807,7 +1807,7 @@ msgstr "Kopiraj" #: js/messages.php:291 msgid "Outer Ring" -msgstr "" +msgstr "Zunanji obroč" #: js/messages.php:297 msgid "Add columns" From 3514ec156ba63df22c69409f59c6bbe6fda87eca Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:36:04 +0200 Subject: [PATCH 380/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index caf2dbe34b..9dabdb409f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:35+0200\n" +"PO-Revision-Date: 2011-08-18 00:36+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -2167,6 +2167,8 @@ msgstr "Sekunda" #, php-format msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" msgstr "" +"Oblikovanje niza za pravilo '%s' je spodletelo. PHP je vrnil naslednjo " +"napako: %s" #: libraries/Config.class.php:1159 msgid "Font size" From 7a30d433f5f7de5fd6a4e7c92639acaa25cb3385 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:36:25 +0200 Subject: [PATCH 381/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 9dabdb409f..aa92cada75 100644 --- a/po/sl.po +++ b/po/sl.po @@ -6697,7 +6697,7 @@ msgstr "Uvozi denarne enote (npr. $5.00 v 5.00)" #: libraries/import/shp.php:14 msgid "ESRI Shape File" -msgstr "" +msgstr "Datoteka oblik ESRI" #: libraries/import/shp.php:254 #, php-format From 5a2a434aa25d25ff6f0ec1099b7e7cc32de371e0 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:36:40 +0200 Subject: [PATCH 382/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index aa92cada75..5d3a387cdc 100644 --- a/po/sl.po +++ b/po/sl.po @@ -6702,7 +6702,7 @@ msgstr "Datoteka oblik ESRI" #: libraries/import/shp.php:254 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." -msgstr "" +msgstr "Med uvažanjem datoteke oblik ESRI je prišlo do napake: \"%s\"." #: libraries/import/shp.php:310 msgid "" From 87f13c365c783f8d36fed448cc931f09551fadd5 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:37:06 +0200 Subject: [PATCH 383/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 5d3a387cdc..2a5814fa53 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:36+0200\n" +"PO-Revision-Date: 2011-08-18 00:37+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -6709,6 +6709,8 @@ msgid "" "You tried to import an invalid file or the imported file contains invalid " "data" msgstr "" +"Poskušali ste uvoziti neveljavno datoteko ali pa uvožena datoteka vsebuje " +"neveljavne podatke" #: libraries/import/shp.php:312 #, php-format From 19cbe0ed94eb3c7f7c535d3d999800e8e2ebf7a6 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:37:29 +0200 Subject: [PATCH 384/442] Translation update done using Pootle. --- po/sl.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 2a5814fa53..9b703681d0 100644 --- a/po/sl.po +++ b/po/sl.po @@ -6715,7 +6715,7 @@ msgstr "" #: libraries/import/shp.php:312 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." -msgstr "" +msgstr "Prostorska razširitev MySQL ne podpira ESRI vrste \"%s\"." #: libraries/import/shp.php:350 #, fuzzy From fbdbe889e5d5fbca1d7f7af2384ac4865d25ab33 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:37:40 +0200 Subject: [PATCH 385/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 9b703681d0..5e1d1102fa 100644 --- a/po/sl.po +++ b/po/sl.po @@ -6718,10 +6718,9 @@ msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "Prostorska razširitev MySQL ne podpira ESRI vrste \"%s\"." #: libraries/import/shp.php:350 -#, fuzzy #| msgid "This page does not contain any tables!" msgid "The imported file does not contain any data" -msgstr "Ta stran ne vsebuje nobenih tabel!" +msgstr "Uvožena datoteka ne vsebuje nobenih podatkov" #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" From ac0b3d4221e93eaf2262b453b6ce9181cce0e25f Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:37:46 +0200 Subject: [PATCH 386/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 5e1d1102fa..cfe65fdca6 100644 --- a/po/sl.po +++ b/po/sl.po @@ -8045,10 +8045,9 @@ msgid "Table Search" msgstr "Iskanje po tabeli" #: libraries/tbl_select.lib.php:229 tbl_change.php:994 -#, fuzzy #| msgid "Insert" msgid "Edit/Insert" -msgstr "Vstavi" +msgstr "Uredi/Vstavi" #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" From c74e97e597e4929392e0e50d25a256714bf9252f Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:40:21 +0200 Subject: [PATCH 387/442] Translation update done using Pootle. --- po/sl.po | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index cfe65fdca6..12eac1ad2f 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:37+0200\n" +"PO-Revision-Date: 2011-08-18 00:40+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -10341,6 +10341,10 @@ msgid "" "table is supported by MySQL 5.1.6 and onwards. You may still use the server " "charting features however." msgstr "" +"Žal vaš strežnik zbirk podatkov ne podpira beleženja v tabelo, ki je " +"zahtevano za analiziranje dnevnikov zbirk podatov s phpMyAdmin. Beleženje v " +"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:1508 msgid "Using the monitor:" From 547ea92d175171fd2279dd4f1f4c72d57bb899e6 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:41:18 +0200 Subject: [PATCH 388/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 12eac1ad2f..63e12cc472 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:40+0200\n" +"PO-Revision-Date: 2011-08-18 00:41+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11678,6 +11678,8 @@ msgstr "Neprekinjeno delovanje krajše od enega dneva" #: po/advisory_rules.php:6 msgid "Uptime is less than 1 day, performance tuning may not be accurate." msgstr "" +"Neprekinjeno delovanje je krajše od enega dneva; nastavitev zmogljivosti " +"morda ni točna." #: po/advisory_rules.php:7 msgid "" From e8a8107ed9993cef2e66b868e805737f5fd83c57 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:41:56 +0200 Subject: [PATCH 389/442] Translation update done using Pootle. --- po/sl.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/sl.po b/po/sl.po index 63e12cc472..ae2f6928b1 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11701,6 +11701,8 @@ msgid "" "Fewer than 1,000 questions have been run against this server. The " "recommendations may not be accurate." msgstr "" +"Na tem strežniku je bilo zagnanih manj kot 1.000 vprašanj. Priporočila morda " +"niso točna." #: po/advisory_rules.php:12 msgid "" From 93b78c3c3f5c508ed0f4d2e2050bef69886daae5 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:43:06 +0200 Subject: [PATCH 390/442] Translation update done using Pootle. --- po/sl.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index ae2f6928b1..b9e6a1c6b3 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:41+0200\n" +"PO-Revision-Date: 2011-08-18 00:43+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -11763,6 +11763,8 @@ msgid "" "long_query_time is set to 10 seconds or more, thus only slow queries that " "take above 10 seconds are logged." msgstr "" +"long_query_time je nastavljen na 10 sekund ali več, zato so zabeležene samo " +"počasne poizvedbe, ki trajajo več kot 10 sekund." #: po/advisory_rules.php:27 msgid "" From 13ba9ce44af7b9c58f445e4163ee15d8f29e81ee Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:43:31 +0200 Subject: [PATCH 391/442] Translation update done using Pootle. --- po/sl.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index b9e6a1c6b3..3280c367c5 100644 --- a/po/sl.po +++ b/po/sl.po @@ -11796,10 +11796,9 @@ msgid "log_slow_queries is set to 'OFF'" msgstr "log_slow_queries je nastavljen na 'OFF'" #: po/advisory_rules.php:35 -#, fuzzy #| msgid "Clear series" msgid "Release Series" -msgstr "Počisti serije" +msgstr "Serije izdaj" #: po/advisory_rules.php:36 msgid "The MySQL server version less then 5.1." From 8cd8081761285f83471bddeef51c64252be17f4d Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:44:57 +0200 Subject: [PATCH 392/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 3280c367c5..606af1be20 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:43+0200\n" +"PO-Revision-Date: 2011-08-18 00:44+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12349,7 +12349,7 @@ msgstr "" #: po/advisory_rules.php:172 msgid "You may need to increase {key_buffer_size}." -msgstr "" +msgstr "Mord boste morali povečati {key_buffer_size}." #: po/advisory_rules.php:173 #, php-format From 4406805cd81e5749030ca7589fd64385691cecbe Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:45:26 +0200 Subject: [PATCH 393/442] Translation update done using Pootle. --- po/sl.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 606af1be20..9b3371bf57 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:44+0200\n" +"PO-Revision-Date: 2011-08-18 00:45+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12355,6 +12355,7 @@ msgstr "Mord boste morali povečati {key_buffer_size}." #, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" msgstr "" +"Branj indeksov iz pomnilnika: %s %%; ta vrednost bi morala biti nad 95 %%" #: po/advisory_rules.php:175 msgid "Rate of table open" From 1bcbc0a9b24abf1d19101459ec087f428cdd4d66 Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:47:55 +0200 Subject: [PATCH 394/442] Translation update done using Pootle. --- po/sl.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/sl.po b/po/sl.po index 9b3371bf57..5c33df9f83 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:45+0200\n" +"PO-Revision-Date: 2011-08-18 00:47+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12590,6 +12590,9 @@ msgid "" "MySQL properly. This can be due to network issues or code not closing a " "database handler properly. Check your network and code." msgstr "" +"Odjemalci so ponavadi prekinjeni, ker niso pravilno zaprli svoje povezave z " +"MySQL. To je lahko zaradi omrežnih težav ali pa koda ne zapira pravilno " +"upravljavca zbirk podatkov. Preverite svoje omrežje in kodo." #: po/advisory_rules.php:238 #, php-format From 95b7783b64ce6b242a4c66816dbe0289276b542a Mon Sep 17 00:00:00 2001 From: Domen Date: Thu, 18 Aug 2011 00:48:20 +0200 Subject: [PATCH 395/442] Translation update done using Pootle. --- po/sl.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/sl.po b/po/sl.po index 5c33df9f83..5911f224f2 100644 --- a/po/sl.po +++ b/po/sl.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 00:47+0200\n" +"PO-Revision-Date: 2011-08-18 00:48+0200\n" "Last-Translator: Domen \n" "Language-Team: slovenian \n" "Language: sl\n" @@ -12741,7 +12741,7 @@ msgstr "" #: po/advisory_rules.php:268 msgid "concurrent_insert is set to 0" -msgstr "" +msgstr "concurrent_insert je nastavljeno na 0" #, fuzzy #~ msgid "memcached usage" From 9984c2ffaa408cf252fbbf488c0a8373a0d8b028 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 06:52:25 +0200 Subject: [PATCH 396/442] Translation update done using Pootle. --- po/tr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 72536dfbf2..97fd939487 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-16 16:49+0200\n" +"PO-Revision-Date: 2011-08-18 06:52+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -847,10 +847,10 @@ msgid "Dump has been saved to file %s." msgstr "Döküm, %s dosyasına kaydedildi." #: gis_data_editor.php:84 -#, fuzzy, php-format +#, php-format #| msgid "Values for the column \"%s\"" msgid "Value for the column \"%s\"" -msgstr "\"%s\" sütunu için değerler" +msgstr "\"%s\" sütunu için değer" #: gis_data_editor.php:113 tbl_gis_visualization.php:172 msgid "Use OpenStreetMaps as Base Layer" From df7604a7e7026d1e168e3fd65e010e67a855d487 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 06:53:35 +0200 Subject: [PATCH 397/442] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 97fd939487..9e5ba4093f 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 06:52+0200\n" +"PO-Revision-Date: 2011-08-18 06:53+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -882,10 +882,9 @@ msgstr "" #: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 #: js/messages.php:292 -#, fuzzy #| msgid "Add routine" msgid "Add a point" -msgstr "Yordam ekle" +msgstr "Nokta ekle" #: gis_data_editor.php:218 js/messages.php:287 #, fuzzy From 2513900ba9a9bcdb346a7d93b49c0bbc0b7a0be9 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 06:54:24 +0200 Subject: [PATCH 398/442] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 9e5ba4093f..3cd7158d6c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 06:53+0200\n" +"PO-Revision-Date: 2011-08-18 06:54+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -887,10 +887,9 @@ msgid "Add a point" msgstr "Nokta ekle" #: gis_data_editor.php:218 js/messages.php:287 -#, fuzzy #| msgid "Lines terminated by" msgid "Linestring" -msgstr "Satırı sonlandıran:" +msgstr "Satır dizgisi" #: gis_data_editor.php:221 gis_data_editor.php:275 msgid "Outer Ring:" From 77007091b7543deecf05a6281c21f567997434b0 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 06:54:55 +0200 Subject: [PATCH 399/442] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 3cd7158d6c..b0ccb11123 100644 --- a/po/tr.po +++ b/po/tr.po @@ -900,10 +900,9 @@ msgid "Inner Ring" msgstr "" #: gis_data_editor.php:248 -#, fuzzy #| msgid "Add a new User" msgid "Add a linestring" -msgstr "Yeni Kullanıcı ekle" +msgstr "Satır dizgisi ekle" #: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 #, fuzzy From 196e5a07ff8dd8c9aa3d7f2de866151d10f9ee60 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 06:55:38 +0200 Subject: [PATCH 400/442] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index b0ccb11123..2307d6e9ef 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 06:54+0200\n" +"PO-Revision-Date: 2011-08-18 06:55+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -905,10 +905,9 @@ msgid "Add a linestring" msgstr "Satır dizgisi ekle" #: gis_data_editor.php:248 gis_data_editor.php:298 js/messages.php:293 -#, fuzzy #| msgid "Add a new User" msgid "Add an inner ring" -msgstr "Yeni Kullanıcı ekle" +msgstr "İç halka ekle" #: gis_data_editor.php:262 js/messages.php:288 msgid "Polygon" From 40d64616194f9e36fd341c4f84cdba34b531b58d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 06:56:38 +0200 Subject: [PATCH 401/442] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 2307d6e9ef..0ef61f5bc1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 06:55+0200\n" +"PO-Revision-Date: 2011-08-18 06:56+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -914,10 +914,9 @@ msgid "Polygon" msgstr "" #: gis_data_editor.php:300 js/messages.php:294 -#, fuzzy #| msgid "Add column" msgid "Add a polygon" -msgstr "Sütun ekle" +msgstr "Poligon ekle" #: gis_data_editor.php:304 #, fuzzy From 224e0b6ddf2362c3536f23a14ecdefa8ecc387d7 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 06:56:51 +0200 Subject: [PATCH 402/442] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 0ef61f5bc1..d76a1a66dd 100644 --- a/po/tr.po +++ b/po/tr.po @@ -919,10 +919,9 @@ msgid "Add a polygon" msgstr "Poligon ekle" #: gis_data_editor.php:304 -#, fuzzy #| msgid "Geometry" msgid "Add geometry" -msgstr "Geometri" +msgstr "Geometri ekle" #: gis_data_editor.php:312 msgid "" From ffbdac704da17bf03f6e7abe0adf49d9835252d7 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 06:57:10 +0200 Subject: [PATCH 403/442] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index d76a1a66dd..5824b7e461 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 06:56+0200\n" +"PO-Revision-Date: 2011-08-18 06:57+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1205,7 +1205,6 @@ msgid "Query statistics" msgstr "Sorgu istatistikleri" #: js/messages.php:93 -#, fuzzy #| msgid "Local monitor configuration icompatible" msgid "Local monitor configuration incompatible" msgstr "Yerel izleme yapılandırması uyumsuz" From e21f330170cffbb993cea2c9cd721c540b752f20 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 06:58:44 +0200 Subject: [PATCH 404/442] Translation update done using Pootle. --- po/tr.po | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 5824b7e461..4e84016b58 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 06:57+0200\n" +"PO-Revision-Date: 2011-08-18 06:58+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6730,10 +6730,9 @@ msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." msgstr "" #: libraries/import/shp.php:350 -#, fuzzy #| msgid "This page does not contain any tables!" msgid "The imported file does not contain any data" -msgstr "Bu sayfa herhangi bir tablo içermiyor!" +msgstr "İçe aktarılan dosya herhangi bir veri içermiyor" #: libraries/import/sql.php:33 msgid "SQL compatibility mode:" From 61fd30e902808fdb69c5947502e0beff739c2e0b Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 06:58:53 +0200 Subject: [PATCH 405/442] Translation update done using Pootle. --- po/tr.po | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 4e84016b58..f571a09a89 100644 --- a/po/tr.po +++ b/po/tr.po @@ -8057,10 +8057,9 @@ msgid "Table Search" msgstr "Tablo Arama" #: libraries/tbl_select.lib.php:229 tbl_change.php:994 -#, fuzzy #| msgid "Insert" msgid "Edit/Insert" -msgstr "Ekle" +msgstr "Düzenle/Ekle" #: libraries/transformations/application_octetstream__download.inc.php:10 msgid "" From 3261e5e1741c2e84666321b94b430ea30d69978c Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:00:55 +0200 Subject: [PATCH 406/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index f571a09a89..f1924c3adb 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 06:58+0200\n" +"PO-Revision-Date: 2011-08-18 07:00+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -858,7 +858,7 @@ msgstr "Taban Katman olarak OpenStreetMaps kullan" #: gis_data_editor.php:134 msgid "SRID" -msgstr "" +msgstr "SRID" #: gis_data_editor.php:151 js/messages.php:289 #: libraries/display_tbl.lib.php:663 From f884e8e1cbe12497d31cba7a84d3f9fb7d693aa9 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:01:05 +0200 Subject: [PATCH 407/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index f1924c3adb..acfaabc9e8 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 07:00+0200\n" +"PO-Revision-Date: 2011-08-18 07:01+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -868,7 +868,7 @@ msgstr "Geometri" #: gis_data_editor.php:172 gis_data_editor.php:194 gis_data_editor.php:240 #: gis_data_editor.php:290 js/messages.php:286 msgid "Point" -msgstr "" +msgstr "Nokta" #: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 #: gis_data_editor.php:291 js/messages.php:284 From c6dc72c20baeaab63f98c63cb604c78ad45753f2 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:01:08 +0200 Subject: [PATCH 408/442] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index acfaabc9e8..907c98d0ec 100644 --- a/po/tr.po +++ b/po/tr.po @@ -873,7 +873,7 @@ msgstr "Nokta" #: gis_data_editor.php:173 gis_data_editor.php:195 gis_data_editor.php:241 #: gis_data_editor.php:291 js/messages.php:284 msgid "X" -msgstr "" +msgstr "X" #: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 #: gis_data_editor.php:293 js/messages.php:285 From 7139201d6ba2acaa034cf786aae9ff3a66c92570 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:01:10 +0200 Subject: [PATCH 409/442] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 907c98d0ec..d19ae2ba7e 100644 --- a/po/tr.po +++ b/po/tr.po @@ -878,7 +878,7 @@ msgstr "X" #: gis_data_editor.php:175 gis_data_editor.php:197 gis_data_editor.php:243 #: gis_data_editor.php:293 js/messages.php:285 msgid "Y" -msgstr "" +msgstr "Y" #: gis_data_editor.php:202 gis_data_editor.php:246 gis_data_editor.php:296 #: js/messages.php:292 From 3a37005ab0245dd8206985bcd49db9ccd76166ec Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:01:21 +0200 Subject: [PATCH 410/442] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index d19ae2ba7e..6ae10fa743 100644 --- a/po/tr.po +++ b/po/tr.po @@ -893,7 +893,7 @@ msgstr "Satır dizgisi" #: gis_data_editor.php:221 gis_data_editor.php:275 msgid "Outer Ring:" -msgstr "" +msgstr "Dış Halka:" #: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 msgid "Inner Ring" From 494c178d8349a4dc3a4fbd33a617c65e7b5a7689 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:01:30 +0200 Subject: [PATCH 411/442] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 6ae10fa743..4fdfac1b38 100644 --- a/po/tr.po +++ b/po/tr.po @@ -897,7 +897,7 @@ msgstr "Dış Halka:" #: gis_data_editor.php:223 gis_data_editor.php:277 js/messages.php:290 msgid "Inner Ring" -msgstr "" +msgstr "İç Halka" #: gis_data_editor.php:248 #| msgid "Add a new User" From 69b51155d9b7747924f3c3be8fd20ed46ad2ffa7 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:02:39 +0200 Subject: [PATCH 412/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 4fdfac1b38..995e56c8fb 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 07:01+0200\n" +"PO-Revision-Date: 2011-08-18 07:02+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -911,7 +911,7 @@ msgstr "İç halka ekle" #: gis_data_editor.php:262 js/messages.php:288 msgid "Polygon" -msgstr "" +msgstr "Poligon" #: gis_data_editor.php:300 js/messages.php:294 #| msgid "Add column" From 972aaed554199cd626eea14bd7eebea06159758b Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:04:37 +0200 Subject: [PATCH 413/442] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 995e56c8fb..3cfff0c3e5 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 07:02+0200\n" +"PO-Revision-Date: 2011-08-18 07:04+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -928,6 +928,8 @@ msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" +"\"Function\" sütunundan \"GeomFromText\" seçin ve \"Value\" alanı içine alttaki " +"dizgiyi yapıştırın" #: import.php:57 #, php-format From 0868fbf3511300ca9cd1a7e38c8d7f073f04e28d Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:04:48 +0200 Subject: [PATCH 414/442] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 3cfff0c3e5..8fb0e75e9a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1805,7 +1805,7 @@ msgstr "Kopyala" #: js/messages.php:291 msgid "Outer Ring" -msgstr "" +msgstr "Dış Halka" #: js/messages.php:297 msgid "Add columns" From 54280fb1fd6af6eb306b0ebbf6d26428ba3c096a Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:07:02 +0200 Subject: [PATCH 415/442] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 8fb0e75e9a..12510d1d10 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 07:04+0200\n" +"PO-Revision-Date: 2011-08-18 07:07+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -2170,6 +2170,8 @@ msgstr "Saniye" #, php-format msgid "Failed formatting string for rule '%s'. PHP threw following error: %s" msgstr "" +"'%s' kuralı için dizgi biçimlendirme başarısız. PHP aşağıdaki hatayı " +"yöneltti: %s" #: libraries/Config.class.php:1159 msgid "Font size" From 42e908d64a9d4f4f3947f717a66772fc73b2dccc Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:08:01 +0200 Subject: [PATCH 416/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 12510d1d10..05d06e8156 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 07:07+0200\n" +"PO-Revision-Date: 2011-08-18 07:08+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6715,7 +6715,7 @@ msgstr "Parasalları içe aktar (örn. $5.00'ı 5.00'a)" #: libraries/import/shp.php:14 msgid "ESRI Shape File" -msgstr "" +msgstr "ESRI Şekil Dosyası" #: libraries/import/shp.php:254 #, php-format From a5a9b06bc40f5eb39a3a19853f6522cd9b22af97 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:11:01 +0200 Subject: [PATCH 417/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 05d06e8156..ff182fe460 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 07:08+0200\n" +"PO-Revision-Date: 2011-08-18 07:11+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6720,7 +6720,7 @@ msgstr "ESRI Şekil Dosyası" #: libraries/import/shp.php:254 #, php-format msgid "There was an error importing the ESRI shape file: \"%s\"." -msgstr "" +msgstr "ESRI şekil dosyasının içe aktarılmasında hata var: \"%s\"." #: libraries/import/shp.php:310 msgid "" From b29f3c3d01d0a90079e258afd828792e1febaf30 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:11:56 +0200 Subject: [PATCH 418/442] Translation update done using Pootle. --- po/tr.po | 2 ++ 1 file changed, 2 insertions(+) diff --git a/po/tr.po b/po/tr.po index ff182fe460..9d3e687cf3 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6727,6 +6727,8 @@ msgid "" "You tried to import an invalid file or the imported file contains invalid " "data" msgstr "" +"Geçersiz bir dosyayı içe aktarmayı deniyorsunuz ya da içe aktarılan dosya " +"geçersiz veri içeriyor" #: libraries/import/shp.php:312 #, php-format From 9102eabc99c23e1632126646a2118607babf046e Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:13:16 +0200 Subject: [PATCH 419/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 9d3e687cf3..4243f776c3 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 07:11+0200\n" +"PO-Revision-Date: 2011-08-18 07:13+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -6733,7 +6733,7 @@ msgstr "" #: libraries/import/shp.php:312 #, php-format msgid "MySQL Spatial Extension does not support ESRI type \"%s\"." -msgstr "" +msgstr "MySQL Uzaysal Uzantısı ESRI türü \"%s\" desteklemiyor." #: libraries/import/shp.php:350 #| msgid "This page does not contain any tables!" From d44c8ddbf221da96d5ae45214882dab72734ebfd Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:14:06 +0200 Subject: [PATCH 420/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 4243f776c3..df6e3224cd 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 07:13+0200\n" +"PO-Revision-Date: 2011-08-18 07:14+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -11141,7 +11141,7 @@ msgstr "-- Yok --" #: tbl_gis_visualization.php:151 msgid "Spatial column" -msgstr "Uzamsal sütun" +msgstr "Uzaysal sütun" #: tbl_gis_visualization.php:175 msgid "Redraw" From b3f92a21f9cfb464c130c997eaab165e8f690844 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:18:17 +0200 Subject: [PATCH 421/442] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index df6e3224cd..d8d036c011 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 07:14+0200\n" +"PO-Revision-Date: 2011-08-18 07:18+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12029,6 +12029,8 @@ msgid "" "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ğinden toplam sorgu önbelleği boyutuna şu anki oranı " +"%%%s. %%80'in üzerinde olmalıdır" #: po/advisory_rules.php:85 msgid "Query cache fragmentation" From 0005c2cbeced9fb2e6a4fda171d0689a0a21e5e2 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 07:19:22 +0200 Subject: [PATCH 422/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index d8d036c011..4a03bac4b5 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 07:18+0200\n" +"PO-Revision-Date: 2011-08-18 07:19+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12038,7 +12038,7 @@ msgstr "Sorgu önbelleği parçalama" #: po/advisory_rules.php:86 msgid "The query cache is considerably fragmented." -msgstr "" +msgstr "Sorgu önbelleği oldukça parçalanmış." #: po/advisory_rules.php:87 msgid "" From 91ff2e25ba6573b4498e239561661c5a7a5c81f7 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 08:58:14 +0200 Subject: [PATCH 423/442] Translation update done using Pootle. --- po/tr.po | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 4a03bac4b5..0fb5c8e484 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 07:19+0200\n" +"PO-Revision-Date: 2011-08-18 08:58+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12051,6 +12051,15 @@ msgid "" "using this formula: (query_cache_size - qcache_free_memory) / " "qcache_queries_in_cache" msgstr "" +"Şiddetli parçalanma Qcache_lowmem_prunes değerini muhtemelen (daha fazla) " +"arttırır. Buna {query_cache_size} çok küçük olmasından dolayı çoğu düşük " +"Sorgu önbellek belleği azalması sebep oluyor olabilir. Hemen ama kısa süreli " +"onarım için sorgu önbelleğini (uzun bir süreliğine sorgu önbelleğini " +"kilitleyebilir) temizleyebilirsiniz. {query_cache_min_res_unit} değerini " +"daha düşük bir değere dikkatlice ayarlamak da yardımcı olabilir, örn. " +"önbellekteki sorgularınızın ortalama boyutunu bu formülü kullanarak " +"ayarlayabilirsiniz: (query_cache_size - qcache_free_memory) / " +"qcache_queries_in_cache" #: po/advisory_rules.php:88 #, php-format From db28d8b1f727a8db8892b40cd053c163efce57ee Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 08:58:34 +0200 Subject: [PATCH 424/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 0fb5c8e484..25ca142a55 100644 --- a/po/tr.po +++ b/po/tr.po @@ -12055,8 +12055,8 @@ msgstr "" "arttırır. Buna {query_cache_size} çok küçük olmasından dolayı çoğu düşük " "Sorgu önbellek belleği azalması sebep oluyor olabilir. Hemen ama kısa süreli " "onarım için sorgu önbelleğini (uzun bir süreliğine sorgu önbelleğini " -"kilitleyebilir) temizleyebilirsiniz. {query_cache_min_res_unit} değerini " -"daha düşük bir değere dikkatlice ayarlamak da yardımcı olabilir, örn. " +"kilitleyebilir) temizleyebilirsiniz. {query_cache_min_res_unit}değerini daha " +"düşük bir değere dikkatlice ayarlamak da yardımcı olabilir, örn. " "önbellekteki sorgularınızın ortalama boyutunu bu formülü kullanarak " "ayarlayabilirsiniz: (query_cache_size - qcache_free_memory) / " "qcache_queries_in_cache" From 866a104db6c9978bf95e35488651093677e13d88 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 09:14:19 +0200 Subject: [PATCH 425/442] Translation update done using Pootle. --- po/tr.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 25ca142a55..f121359179 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 08:58+0200\n" +"PO-Revision-Date: 2011-08-18 09:14+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12068,6 +12068,9 @@ msgid "" "that the query cache is an alternating pattern of free and used blocks. This " "value should be below 20%%." msgstr "" +"Önbellek şu an %%%s olarak parçalanmış, %%100 parçalanma, sorgu önbelleğinin " +"boş ve kullanılan bloklarının alternatif bir kalıp olduğu anlamına gelir. " +"Bu değer %%20'nin altında olmalıdır." #: po/advisory_rules.php:90 msgid "Query cache low memory prunes" From 00548376b7aed29eec560ab1a4f14dc60440b540 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 09:16:51 +0200 Subject: [PATCH 426/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index f121359179..7e6b2faa65 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 09:14+0200\n" +"PO-Revision-Date: 2011-08-18 09:16+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12074,7 +12074,7 @@ msgstr "" #: po/advisory_rules.php:90 msgid "Query cache low memory prunes" -msgstr "" +msgstr "Düşük sorgu önbellek belleği azalması" #: po/advisory_rules.php:91 msgid "" From 161710e01983b30a6ddf298114966ca9541737a0 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 09:36:28 +0200 Subject: [PATCH 427/442] Translation update done using Pootle. --- po/tr.po | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 7e6b2faa65..bd99fa779c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 09:16+0200\n" +"PO-Revision-Date: 2011-08-18 09:36+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12090,6 +12090,9 @@ msgid "" "overhead of maintaining the cache is likely to increase with its size, so do " "this in small increments and monitor the results." msgstr "" +"Ancak aklınızdan çıkarmayın, baştan başa önbellek koruması muhtemelen " +"boyutunu arttırır bu yüzden bunu küçük artışlarla yapın ve sonuçlarını " +"izleyin." #: po/advisory_rules.php:93 msgid "" From a59f4af3f9cb7a32c934edcc57c015e531f33057 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 09:55:20 +0200 Subject: [PATCH 428/442] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index bd99fa779c..478dcae887 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 09:36+0200\n" +"PO-Revision-Date: 2011-08-18 09:55+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12099,6 +12099,8 @@ 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 "" +"Kaldırılan sorguların eklenen sorgulara oranı %%%s. En düşük bu değer en " +"iyisidir (Bu kuralları atan sınır: %0.1)" #: po/advisory_rules.php:95 msgid "Query cache max size" From d2961028822d0f606dfabf26326d0de4d2f0464e Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 09:57:17 +0200 Subject: [PATCH 429/442] Translation update done using Pootle. --- po/tr.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/po/tr.po b/po/tr.po index 478dcae887..1c71a15727 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 09:55+0200\n" +"PO-Revision-Date: 2011-08-18 09:57+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12029,8 +12029,8 @@ msgid "" "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ğinden toplam sorgu önbelleği boyutuna şu anki oranı " -"%%%s. %%80'in üzerinde olmalıdır" +"Boş sorgu önbellek belleğinin, toplam sorgu önbelleği boyutuna şu anki oranı " +"%%%s. Bu %%80'in üzerinde olmalıdır" #: po/advisory_rules.php:85 msgid "Query cache fragmentation" From 29efa19261f5f6ba45bf6c77a989006e28b067ae Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 10:11:06 +0200 Subject: [PATCH 430/442] Translation update done using Pootle. --- po/tr.po | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 1c71a15727..c873fe1a89 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 09:57+0200\n" +"PO-Revision-Date: 2011-08-18 10:11+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12111,6 +12111,8 @@ msgid "" "The query cache size is above 128 MiB. Big query caches may cause " "significant overhead that is required to maintain the cache." msgstr "" +"Sorgu önbelleği boyutu 128MiB'ın üzerinde. Büyük sorgu önbellekleri, " +"önbelleği korumak için gereken önemli ölçüde ek yüke sebep olabilir." #: po/advisory_rules.php:97 msgid "" From e270c8df8abf3c57f2257e3dceb4863941b3b4a0 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 10:12:22 +0200 Subject: [PATCH 431/442] Translation update done using Pootle. --- po/tr.po | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/po/tr.po b/po/tr.po index c873fe1a89..8158e1d10b 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 10:11+0200\n" +"PO-Revision-Date: 2011-08-18 10:12+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12090,9 +12090,8 @@ msgid "" "overhead of maintaining the cache is likely to increase with its size, so do " "this in small increments and monitor the results." msgstr "" -"Ancak aklınızdan çıkarmayın, baştan başa önbellek koruması muhtemelen " -"boyutunu arttırır bu yüzden bunu küçük artışlarla yapın ve sonuçlarını " -"izleyin." +"Ancak aklınızdan çıkarmayın, önbellek koruması ek yükü muhtemelen boyutunu " +"arttırır bu yüzden bunu küçük artışlarla yapın ve sonuçlarını izleyin." #: po/advisory_rules.php:93 msgid "" From 9db34b87298111f1292b16b3440a9d2e67f7e1e8 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 10:33:09 +0200 Subject: [PATCH 432/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 8158e1d10b..0f071bfd0a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 10:12+0200\n" +"PO-Revision-Date: 2011-08-18 10:33+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12117,7 +12117,7 @@ msgstr "" msgid "" "Depending on your environment, it might be performance increasing to reduce " "this value." -msgstr "" +msgstr "Ortamınıza bağlıdır, bu değeri düşürmek performansı arttırabilir." #: po/advisory_rules.php:98 #, php-format From e9da8d747273129fc72e9e691466d6f44b808289 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 10:35:34 +0200 Subject: [PATCH 433/442] Translation update done using Pootle. --- po/tr.po | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 0f071bfd0a..88062daf6c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 10:33+0200\n" +"PO-Revision-Date: 2011-08-18 10:35+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -12132,6 +12132,7 @@ msgstr "Sorgu önbelleği en az sonuç boyutu" msgid "" "The max size of the result set in the query cache is the default of 1 MiB." msgstr "" +"Sorgu önbelleğinde sonuç grubunun en fazla boyutu varsayılanı 1 MiB'tır." #: po/advisory_rules.php:102 msgid "" From 701c10ff751d59a52ae6b89e1393f09395769783 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 10:35:41 +0200 Subject: [PATCH 434/442] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 88062daf6c..568dfdedc5 100644 --- a/po/tr.po +++ b/po/tr.po @@ -12110,7 +12110,7 @@ msgid "" "The query cache size is above 128 MiB. Big query caches may cause " "significant overhead that is required to maintain the cache." msgstr "" -"Sorgu önbelleği boyutu 128MiB'ın üzerinde. Büyük sorgu önbellekleri, " +"Sorgu önbelleği boyutu 128 MiB'ın üzerinde. Büyük sorgu önbellekleri, " "önbelleği korumak için gereken önemli ölçüde ek yüke sebep olabilir." #: po/advisory_rules.php:97 From 610c4098e981c483712ce303050b15ef420dad82 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 10:36:39 +0200 Subject: [PATCH 435/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 568dfdedc5..56e6ef2d92 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 10:35+0200\n" +"PO-Revision-Date: 2011-08-18 10:36+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -928,7 +928,7 @@ msgid "" "Chose \"GeomFromText\" from the \"Function\" column and paste the below " "string into the \"Value\" field" msgstr "" -"\"Function\" sütunundan \"GeomFromText\" seçin ve \"Value\" alanı içine alttaki " +"\"Function\" sütunundan \"GeomFromText\" seçin ve \"Value\" alanı içine alttaki " "dizgiyi yapıştırın" #: import.php:57 From c2f52e26e2e36c651028872e8b9931421e1344e5 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 10:37:12 +0200 Subject: [PATCH 436/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 56e6ef2d92..fefa9f141c 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 10:36+0200\n" +"PO-Revision-Date: 2011-08-18 10:37+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -1557,7 +1557,7 @@ msgstr "Etkilenen satırlar:" msgid "Failed parsing config file. It doesn't seem to be valid JSON code" msgstr "" "Yapılandırma dosyasının ayrıştırılması başarısız. Bu geçerli JSON kodu " -"görünmüyor." +"görünmüyor" #: js/messages.php:189 msgid "" From fc65172c63038bc2047524ebd04fb6bc3ff49a86 Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 10:37:40 +0200 Subject: [PATCH 437/442] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index fefa9f141c..6f8b8c7b93 100644 --- a/po/tr.po +++ b/po/tr.po @@ -7905,7 +7905,7 @@ msgstr "END RAW" #: libraries/sqlparser.lib.php:382 msgid "Automatically appended backtick to the end of query!" -msgstr "Otomatik olarak sorgunun sonuna ters işaret ekle" +msgstr "Otomatik olarak sorgunun sonuna ters işaret ekle!" #: libraries/sqlparser.lib.php:385 msgid "Unclosed quote" From 922a5ca45b80bead07a5192d9d05f57560ce758e Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 10:37:45 +0200 Subject: [PATCH 438/442] Translation update done using Pootle. --- po/tr.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/po/tr.po b/po/tr.po index 6f8b8c7b93..49eedd0b33 100644 --- a/po/tr.po +++ b/po/tr.po @@ -10951,7 +10951,7 @@ msgstr "Sunucuya parolasız bağlanmaya izin verdiniz." #: setup/lib/index.lib.php:389 msgid "Key is too short, it should have at least 8 characters." -msgstr "Anahtar çok kısa, en az 8 karakter olmalıdır" +msgstr "Anahtar çok kısa, en az 8 karakter olmalıdır." #: setup/lib/index.lib.php:396 msgid "Key should contain letters, numbers [em]and[/em] special characters." From 3217f24df0d6891e3783ed8295bbc98dfebe909a Mon Sep 17 00:00:00 2001 From: Burak Yavuz Date: Thu, 18 Aug 2011 10:40:21 +0200 Subject: [PATCH 439/442] Translation update done using Pootle. --- po/tr.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/po/tr.po b/po/tr.po index 49eedd0b33..40c0dd229a 100644 --- a/po/tr.po +++ b/po/tr.po @@ -4,7 +4,7 @@ msgstr "" "Project-Id-Version: phpMyAdmin 3.5.0-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" "POT-Creation-Date: 2011-08-17 16:58+0200\n" -"PO-Revision-Date: 2011-08-18 10:37+0200\n" +"PO-Revision-Date: 2011-08-18 10:40+0200\n" "Last-Translator: Burak Yavuz \n" "Language-Team: turkish \n" "Language: tr\n" @@ -9596,7 +9596,7 @@ msgid "" "the replication section." msgstr "" "Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen kopya etme bölümünü ziyaret edin." +"href=\"#replication\">kopya etme bölümünü ziyaret edin." #: server_status.php:979 msgid "Replication status" From 24ffd3e1d30bb5ccb08cfcf7bce118fc11bbd65f Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 18 Aug 2011 13:17:23 +0200 Subject: [PATCH 440/442] Change sprites for .headerSortUp and .headerSortDown to match original phpMyAdmin behavior --- themes/original/css/theme_right.css.php | 4 ++-- themes/pmahomme/css/theme_right.css.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/themes/original/css/theme_right.css.php b/themes/original/css/theme_right.css.php index 6ab3b1f802..e97b1e9c9d 100644 --- a/themes/original/css/theme_right.css.php +++ b/themes/original/css/theme_right.css.php @@ -279,10 +279,10 @@ button { img.sortableIcon { background-position: -1727px 0; } /* Same as s_asc */ -th.headerSortUp img.sortableIcon { background-position: 0 -1445px; width: 11px; height: 9px; } +th.headerSortUp img.sortableIcon { background-position: 0 -1528px; width: 11px; height: 9px; } /* Same as s_desc */ -th.headerSortDown img.sortableIcon { background-position: 0 -1528px; width: 11px; height: 9px; } +th.headerSortDown img.sortableIcon { background-position: 0 -1445px; width: 11px; height: 9px; } /* Fix position */ .ic_more { vertical-align: middle; } diff --git a/themes/pmahomme/css/theme_right.css.php b/themes/pmahomme/css/theme_right.css.php index 589fa54c68..914ef0bf09 100644 --- a/themes/pmahomme/css/theme_right.css.php +++ b/themes/pmahomme/css/theme_right.css.php @@ -462,10 +462,10 @@ select[multiple] { img.sortableIcon { background-position: -1812px 0; } /* Same as s_asc */ -th.headerSortUp img.sortableIcon { background-position: -1516px 0; } +th.headerSortUp img.sortableIcon { background-position: 0 0; } /* Same as s_desc */ -th.headerSortDown img.sortableIcon { background-position: 0 0; } +th.headerSortDown img.sortableIcon { background-position: -1516px 0; } /* Fix position */ .ic_more { vertical-align: middle; } From 84cc7837f5da69c588f7503da0acc9512ff29619 Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 18 Aug 2011 13:39:06 +0200 Subject: [PATCH 441/442] Use PMA_addDatepicker only when $.datetimepicker is defined, prevents JS error on server status page where timepicker.js is loaded on demand --- js/functions.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/js/functions.js b/js/functions.js index 11e264e71a..54a08d5371 100644 --- a/js/functions.js +++ b/js/functions.js @@ -685,10 +685,12 @@ $(document).ready(function() { /** * Add a date/time picker to each element that needs it */ - $('.datefield, .datetimefield').each(function() { - PMA_addDatepicker($(this)); - }); -}) + if ($.datetimepicker != undefined) { + $('.datefield, .datetimefield').each(function() { + PMA_addDatepicker($(this)); + }); + } +}); /** * True if last click is to check a row. From 9f476c85a819af1cda160256a443d31c35f9951d Mon Sep 17 00:00:00 2001 From: Piotr Przybylski Date: Thu, 18 Aug 2011 14:19:51 +0200 Subject: [PATCH 442/442] Server status: faster perceived page loading Tab initialization is moved to the moment when tab is selected. All other tabs are initialized after tabs are displayed --- js/server_status.js | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/js/server_status.js b/js/server_status.js index bcb25b8f90..1d892e20e4 100644 --- a/js/server_status.js +++ b/js/server_status.js @@ -110,7 +110,13 @@ $(function() { cookie: { name: 'pma_serverStatusTabs', expires: 1 }, show: function(event, ui) { // Fixes line break in the menu bar when the page overflows and scrollbar appears - menuResize(); + menuResize(); + + // Initialize selected tab + if (!$(ui.tab.hash).data('init-done')) { + initTab($(ui.tab.hash), null); + } + // Load Server status monitor if (ui.tab.hash == '#statustabs_charting' && ! monitorLoaded) { $('div#statustabs_charting').append( //PMA_messages['strLoadingMonitor'] + ' ' + @@ -143,8 +149,12 @@ $(function() { // Initialize each tab $('div.ui-tabs-panel').each(function() { - initTab($(this), null); - tabStatus[$(this).attr('id')] = 'static'; + var $tab = $(this); + tabStatus[$tab.attr('id')] = 'static'; + // Initialize tabs after browser catches up with previous changes and displays tabs + setTimeout(function() { + initTab($tab, null); + }, 0.5); }); // Handles refresh rate changing @@ -362,7 +372,7 @@ $(function() { }); $('#filterText').keyup(function(e) { - word = $(this).val().replace(/_/g, ' '); + var word = $(this).val().replace(/_/g, ' '); if (word.length == 0) { textFilter = null; @@ -389,6 +399,10 @@ $(function() { /* Adjust DOM / Add handlers to the tabs */ function initTab(tab, data) { + if ($(tab).data('init-done') && !data) { + return; + } + $(tab).data('init-done', true); switch(tab.attr('id')) { case 'statustabs_traffic': if (data != null) {